Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Sep 27, 2020
1 parent 3e04ba0 commit b620559
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 103 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ yarn.lock

test/
coverage/
.github/
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@
},
"dependencies": {
"camelcase-css": "^2.0.1",
"postcss": "^8.0.2"
"postcss": "^8.1.0"
},
"devDependencies": {
"@logux/eslint-config": "^40.0.4",
"@logux/eslint-config": "^40.0.5",
"clean-publish": "^1.1.8",
"eslint": "^7.9.0",
"eslint": "^7.10.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettierx": "^0.14.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^21.0.0",
"eslint-plugin-unicorn": "^22.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-ci": "^0.1.1",
"jest-cli": "^26.4.2",
"lint-staged": "^10.3.0",
"postcss-sharec-config": "^0.1.6"
"lint-staged": "^10.4.0",
"postcss-sharec-config": "^0.1.8"
},
"husky": {
"hooks": {
Expand All @@ -77,6 +77,6 @@
},
"sharec": {
"config": "postcss-sharec-config",
"version": "0.1.6"
"version": "0.1.8"
}
}
4 changes: 2 additions & 2 deletions test/processor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ let postcssJS = require('../')

let doubler = () => ({
postcssPlugin: 'test-doubler',
Root (root) {
Once (root) {
root.each(node => root.insertBefore(node, node.clone()))
}
})
doubler.postcss = true

let warner = () => ({
postcssPlugin: 'test-warner',
Root (root, { result }) {
Once (root, { result }) {
return root.first.warn(result, 'Test')
}
})
Expand Down
Loading

0 comments on commit b620559

Please sign in to comment.