diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 94995bd7..4faf145d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,12 +30,12 @@ always be in sync. - `npm start` runs the dev server to run/develop examples - `npm test` will run the test. -- `script/test` same as `npm test` but keeps karma running and watches +- `scripts/test` same as `npm test` but keeps karma running and watches for changes ### Build -Please do not include the output of `script/build` in your commits, we +Please do not include the output of `scripts/build` in your commits, we only do this when we release. (Also, you probably don't need to build anyway unless you are fixing something around our global build.) diff --git a/package.json b/package.json index 71cfabe9..5a761c91 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ "example": "examples" }, "scripts": { - "test": "script/test --browsers Firefox --single-run", - "start": "script/dev-examples" + "test": "scripts/test --browsers Firefox --single-run", + "start": "scripts/dev-examples" }, "authors": [ "Ryan Florence" diff --git a/script/build b/scripts/build similarity index 100% rename from script/build rename to scripts/build diff --git a/script/dev-examples b/scripts/dev-examples similarity index 100% rename from script/dev-examples rename to scripts/dev-examples diff --git a/script/preview-release b/scripts/preview-release similarity index 100% rename from script/preview-release rename to scripts/preview-release diff --git a/script/release b/scripts/release similarity index 100% rename from script/release rename to scripts/release diff --git a/script/test b/scripts/test similarity index 100% rename from script/test rename to scripts/test