From 7d87c3d7e313fec6488e2b68616435f6c0c6d17a Mon Sep 17 00:00:00 2001 From: Peter Sorensen Date: Tue, 10 Jan 2017 12:04:33 -0800 Subject: [PATCH 1/3] rename clean task #1797 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9ba29f5..9b5ebd7 100644 --- a/package.json +++ b/package.json @@ -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" }, From faf77d791ff602ed1a10e338d4ea1a33645db3ab Mon Sep 17 00:00:00 2001 From: Peter Sorensen Date: Tue, 10 Jan 2017 12:05:37 -0800 Subject: [PATCH 2/3] Update README to include new task name #1797 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88fa54f..71d2f24 100644 --- a/README.md +++ b/README.md @@ -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` From eff6644bc8c4e76003d15b3e7edc4e1e5c7ffbb7 Mon Sep 17 00:00:00 2001 From: Peter Sorensen Date: Tue, 10 Jan 2017 13:32:27 -0800 Subject: [PATCH 3/3] Update travis #1797 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ef0c7a4..63ede20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,6 +36,6 @@ install: script: - yarn run test - yarn run build - - yarn run clean + - yarn run rmdist - yarn run "build:production" - composer test