From ebcc11fea3a9a605058558776a5a92a6784eb888 Mon Sep 17 00:00:00 2001 From: Ryan Florence Date: Tue, 11 Nov 2014 09:07:43 -0700 Subject: [PATCH] s/script/scripts/ --- CONTRIBUTING.md | 4 ++-- package.json | 4 ++-- {script => scripts}/build | 0 {script => scripts}/dev-examples | 0 {script => scripts}/preview-release | 0 {script => scripts}/release | 0 {script => scripts}/test | 0 7 files changed, 4 insertions(+), 4 deletions(-) rename {script => scripts}/build (100%) rename {script => scripts}/dev-examples (100%) rename {script => scripts}/preview-release (100%) rename {script => scripts}/release (100%) rename {script => scripts}/test (100%) 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