docs(webpack): use rimraf to clean dist

closes #1393
This commit is contained in:
Foxandxss 2016-05-14 19:35:30 +02:00 committed by Ward Bell
parent 0c49b50cbe
commit a3400d035c
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@
"webdriver:update": "webdriver-manager update", "webdriver:update": "webdriver-manager update",
"start:webpack": "webpack-dev-server --inline --progress --port 8080", "start:webpack": "webpack-dev-server --inline --progress --port 8080",
"test:webpack": "karma start karma.webpack.conf.js", "test:webpack": "karma start karma.webpack.conf.js",
"build:webpack": "rm -rf dist && webpack --config config/webpack.prod.js --progress --profile --bail" "build:webpack": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",

View File

@ -5,7 +5,7 @@
"scripts": { "scripts": {
"start": "webpack-dev-server --inline --progress --port 8080", "start": "webpack-dev-server --inline --progress --port 8080",
"test": "karma start", "test": "karma start",
"build": "rm -rf dist && webpack --config config/webpack.prod.js --progress --profile --bail", "build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail",
"postinstall": "typings install" "postinstall": "typings install"
}, },
"license": "MIT", "license": "MIT",
@ -37,6 +37,7 @@
"null-loader": "^0.1.1", "null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7", "phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1", "raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1", "style-loader": "^0.13.1",
"ts-loader": "^0.8.1", "ts-loader": "^0.8.1",
"typescript": "^1.8.9", "typescript": "^1.8.9",