Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Dec 30, 2018
1 parent 347133e commit 390f475
Show file tree
Hide file tree
Showing 4 changed files with 2,238 additions and 1,335 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"no-spaced-func": 2,
"no-use-before-define": [2, "nofunc"],
"quotes": [2, "single"],
"space-after-keywords": [2, "always"],
"keyword-spacing": [2, { "before": true, "after": true }],
"space-before-blocks": [2, "always"],
"space-in-parens": [2, "never"],
"space-unary-ops": 2,
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
"license": "MIT",
"devDependencies": {
"clean-publish": "^1.1.0",
"eslint": "1.3.1",
"less": "2.7.1",
"eslint": "5.11.1",
"less": "3.9.0",
"source-map": "0.5.6",
"strip-color": "^0.1.0",
"stylelint": "6.8.0",
"stylelint": "9.9.0",
"tape": "^4.7.0"
},
"dependencies": {
"chalk": "^2.0.1",
"lodash": "^4.17.4",
"log-symbols": "^2.0.0",
"postcss": "^7.0.2"
"chalk": "^2.4.1",
"lodash": "^4.17.11",
"log-symbols": "^2.2.0",
"postcss": "^7.0.7"
},
"engines": {
"node": ">=6"
Expand Down
8 changes: 4 additions & 4 deletions test/visual.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ fs.readFile('test/fixtures/forVisual.css', { encoding: 'utf8' }, function(err, d
postcss()
.use(stylelint({
rules: {
'block-opening-brace-newline-after': [2, 'always'],
'declaration-colon-space-after': [2, 'always'],
'number-zero-length-no-unit': [2],
'indentation': [2, 'tlab'],
'block-opening-brace-newline-after': 'always',
'declaration-colon-space-after': 'always',
'length-zero-no-unit': true,
'indentation': 'tab',
},
}))
.use(reporter(reporterOptions))
Expand Down
Loading

0 comments on commit 390f475

Please sign in to comment.