Merge pull request #1800 from psorensen/issue/1797

Update clean task name
This commit is contained in:
Ben Word
2017-01-11 16:01:36 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -36,6 +36,6 @@ install:
script:
- yarn run test
- yarn run build
- yarn run clean
- yarn run rmdist
- yarn run "build:production"
- composer test

View File

@@ -95,7 +95,7 @@ You now have all the necessary dependencies to run the build process.
#### Additional commands
* `yarn run clean` — Remove your `dist/` folder
* `yarn run rmdist` — Remove your `dist/` folder
* `yarn run lint` — Run eslint against your assets and build scripts
* `composer test` — Check your PHP for code smells with `phpmd` and PSR-2 compliance with `phpcs`

View File

@@ -22,7 +22,7 @@
"build:production": "webpack --progress -p --config assets/build/webpack.config.js",
"build:profile": "webpack --progress --profile --json --config assets/build/webpack.config.js",
"start": "webpack --hide-modules --watch --config assets/build/webpack.config.js",
"clean": "rimraf dist",
"rmdist": "rimraf dist",
"lint": "eslint assets/scripts assets/build",
"test": "yarn run lint"
},