Skip to content

Commit 0c214ca

Browse files
committed
deps: add dependency-check and standard to test, add missing deps
1 parent 392d8f5 commit 0c214ca

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

example/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ const prefix = css`
66
background: color(red a(90%))
77
}
88
`
9+
10+
console.log('prefix', prefix)

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
"description": "postcss transform for sheetify, use all the plugins!",
55
"main": "index.js",
66
"scripts": {
7-
"test": "pull-test test/*.js",
7+
"test:unit": "pull-test test/*.js",
8+
"test:deps": "dependency-check . && dependency-check . --extra --no-dev",
9+
"test:lint": "standard",
10+
"test": "npm-run-all -p test:*",
811
"example": "browserify example"
912
},
1013
"repository": {
@@ -20,12 +23,18 @@
2023
"homepage": "https://github.com/ahdinosaur/sheetify-postcss#readme",
2124
"devDependencies": {
2225
"browserify": "^13.1.0",
26+
"dependency-check": "^2.6.0",
27+
"npm-run-all": "^3.0.0",
2328
"postcss-color-function": "^2.0.1",
2429
"pull-test": "^1.2.3",
2530
"sheetify": "^5.1.0",
31+
"standard": "^8.0.0",
2632
"tape": "^4.5.1"
2733
},
2834
"dependencies": {
29-
"postcss": "^5.1.2"
35+
"defined": "^1.0.0",
36+
"postcss": "^5.1.2",
37+
"resolve": "^1.1.7",
38+
"xtend": "^4.0.1"
3039
}
3140
}

0 commit comments

Comments
 (0)