Merge pull request #1800 from psorensen/issue/1797
Update clean task name
This commit is contained in:
@@ -36,6 +36,6 @@ install:
|
|||||||
script:
|
script:
|
||||||
- yarn run test
|
- yarn run test
|
||||||
- yarn run build
|
- yarn run build
|
||||||
- yarn run clean
|
- yarn run rmdist
|
||||||
- yarn run "build:production"
|
- yarn run "build:production"
|
||||||
- composer test
|
- composer test
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ You now have all the necessary dependencies to run the build process.
|
|||||||
|
|
||||||
#### Additional commands
|
#### 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
|
* `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`
|
* `composer test` — Check your PHP for code smells with `phpmd` and PSR-2 compliance with `phpcs`
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
"build:production": "webpack --progress -p --config assets/build/webpack.config.js",
|
"build:production": "webpack --progress -p --config assets/build/webpack.config.js",
|
||||||
"build:profile": "webpack --progress --profile --json --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",
|
"start": "webpack --hide-modules --watch --config assets/build/webpack.config.js",
|
||||||
"clean": "rimraf dist",
|
"rmdist": "rimraf dist",
|
||||||
"lint": "eslint assets/scripts assets/build",
|
"lint": "eslint assets/scripts assets/build",
|
||||||
"test": "yarn run lint"
|
"test": "yarn run lint"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user