Skip to content

Commit

Permalink
clean up package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathon Kelly committed Mar 31, 2016
1 parent 6a00627 commit ae9ee48
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
],
"scripts": {
"start": "webpack-dev-server",
"clean-build": "rimraf dist",
"clean-dist": "rimraf dist",
"minify-css": "postcss -u cssnano -o dist/css/react-markdown-editor.min.css dist/css/react-markdown-editor.css",
"build-css": "mkdirp dist/css && stylus src -o dist/css && postcss -u autoprefixer -o dist/css/react-markdown-editor.css dist/css/react-markdown-editor.css && npm run minify-css",
"build": "npm run clean-build && babel src --out-dir dist && npm run build-css",
"build-pages": "npm run clean-build && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"prefix-css": "postcss -u autoprefixer -o dist/css/react-markdown-editor.css dist/css/react-markdown-editor.css",
"build-css": "mkdirp dist/css && stylus src -o dist/css && npm run prefix-css && npm run minify-css",
"build": "npm run clean-dist && babel src --out-dir dist && npm run build-css",
"build-pages": "npm run clean-dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint",
"prepublish": "npm run build && npm test",
Expand Down

0 comments on commit ae9ee48

Please sign in to comment.