Skip to content

Commit

Permalink
Merge pull request #73 from postcss/fix-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
MoOx committed Aug 13, 2015
2 parents 2466a53 + 514a414 commit 5db759d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
5 changes: 3 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ rules:
comma-dangle: [2, "always-multiline"]
comma-style: [2, "last"]
computed-property-spacing: [2, "never"]
object-curly-spacing: [2, "never"]
array-bracket-spacing: [2, "never"]
dot-location: [2, "property"]

one-var: [2, "never"]
Expand All @@ -26,9 +28,8 @@ rules:
space-after-keywords: [2, "always"]
space-before-blocks: [2, "always"]
space-before-function-paren: [2, "never"]
space-in-brackets: [2, "never"]
space-in-parens: [2, "never"]
spaced-line-comment: [2, "always"]
spaced-comment: [2, "always"]

# this plugin need a refactoring...
no-use-before-define: 0
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
"index.js"
],
"dependencies": {
"clone": "^0.1.17",
"es6-promise": "^2.3.0",
"glob": "^5.0.1",
"clone": "^1.0.2",
"es6-promise": "^3.0.2",
"glob": "^5.0.14",
"object-assign": "^3.0.0",
"postcss": "^4.1.4",
"postcss": "^4.1.16",
"postcss-message-helpers": "^2.0.0",
"resolve": "^1.0.0"
"resolve": "^1.1.6"
},
"devDependencies": {
"css-whitespace": "^1.1.0",
"eslint": "^0.23.0",
"tape": "^3.0.0"
"css-whitespace": "^1.1.1",
"eslint": "^1.1.0",
"tape": "^4.0.3"
},
"scripts": {
"test": "eslint . && tape test"
Expand Down
10 changes: 4 additions & 6 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,10 @@ test("@import", function(t) {
glob: true,
})

compareFixtures(
t,
"glob-alt",
"should handle a glob pattern with single quote and/or url(...)", {
glob: true,
})
compareFixtures(t, "glob-alt",
"should handle a glob pattern with single quote and/or url(...)", {
glob: true,
})

compareFixtures(t, "recursive", "should import stylsheets recursively")

Expand Down

0 comments on commit 5db759d

Please sign in to comment.