From dc209417e7cc575793443e3bd84e34becd6b7408 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 23 Jan 2015 09:39:22 +1100 Subject: [PATCH] move internal tools from bin to tools --- Makefile | 10 +++++----- {bin => tools}/cache-templates | 0 {bin => tools}/cache-tests | 0 {bin => tools}/generate-core-package-json | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename {bin => tools}/cache-templates (100%) rename {bin => tools}/cache-tests (100%) mode change 100644 => 100755 rename {bin => tools}/generate-core-package-json (100%) diff --git a/Makefile b/Makefile index d6f3526cd0..c588acd91c 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ export NODE_ENV = test build: mkdir -p dist - node bin/cache-templates + node tools/cache-templates node $(BROWSERIFY_CMD) -e lib/6to5/polyfill.js >dist/polyfill.js node $(UGLIFY_CMD) dist/polyfill.js >dist/polyfill.min.js @@ -59,8 +59,8 @@ test-travis: bootstrap test-browser: mkdir -p dist - node bin/cache-templates - node bin/cache-tests + node tools/cache-templates + node tools/cache-tests node $(BROWSERIFY_CMD) -e test/_browser.js >dist/6to5-test.js rm -rf templates.json tests.json @@ -81,7 +81,7 @@ publish: cp dist/6to5.min.js browser.js cp dist/polyfill.min.js browser-polyfill.js - node bin/cache-templates + node tools/cache-templates test -f templates.json npm publish @@ -99,7 +99,7 @@ publish-runtime: npm publish publish-core: - bin/generate-core-package-json >package2.json + tools/generate-core-package-json >package2.json mv package.json .package.json mv package2.json package.json diff --git a/bin/cache-templates b/tools/cache-templates similarity index 100% rename from bin/cache-templates rename to tools/cache-templates diff --git a/bin/cache-tests b/tools/cache-tests old mode 100644 new mode 100755 similarity index 100% rename from bin/cache-tests rename to tools/cache-tests diff --git a/bin/generate-core-package-json b/tools/generate-core-package-json similarity index 100% rename from bin/generate-core-package-json rename to tools/generate-core-package-json