Skip to content

Commit ca019ed

Browse files
committed
Remove stylus from build scripts
1 parent 01a2870 commit ca019ed

File tree

2 files changed

+2
-81
lines changed

2 files changed

+2
-81
lines changed

examples/app.styl

Lines changed: 0 additions & 77 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,15 @@
44
"description": "The infinite-tree library for React.",
55
"main": "lib/index.js",
66
"scripts": {
7-
"prepublish": "npm run lint && npm test && npm run build && npm run dist && npm run stylus && npm run build-examples && npm run release",
7+
"prepublish": "npm run lint && npm test && npm run build && npm run dist && npm run build-examples && npm run release",
88
"build": "babel --out-dir ./lib ./src",
99
"build-examples": "cd examples; webpack",
1010
"test": "tap test/*.js --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill",
1111
"dist": "webpack; BUILD_ENV=dist webpack",
1212
"release": "mkdir -p releases; cp -f dist/react-infinite-tree.css releases/react-infinite-tree-${npm_package_version}.css; cp -f dist/react-infinite-tree.js releases/react-infinite-tree-${npm_package_version}.js; cp -f dist/react-infinite-tree.min.js releases/react-infinite-tree-${npm_package_version}.min.js",
13-
"lint": "npm run eslint && npm run stylint",
13+
"lint": "npm run eslint",
1414
"eslint": "eslint ./src",
1515
"eslint:fix": "eslint --fix ./src",
16-
"stylint": "stylint src/*.styl",
17-
"stylus": "stylus -u nib < src/index.styl > dist/react-infinite-tree.css",
1816
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov --nyc-arg=--require --nyc-arg=babel-register --nyc-arg=--require --nyc-arg=babel-polyfill | coveralls",
1917
"dev": "cd examples; webpack-dev-server --hot --inline --host 0.0.0.0 --port 8000 --content-base ../docs"
2018
},

0 commit comments

Comments
 (0)