From c5e01146fd5f841906c910384d69a3c83d96cc8f Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Sun, 15 Feb 2015 20:39:46 +1100 Subject: [PATCH] update rogue 6to5 occurences to babel --- CONTRIBUTING.md | 2 +- Makefile | 7 +++---- doc/index.md | 2 +- test/regenerator.js | 2 +- test/test262.js | 2 +- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d113233c2a..838cf89be8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,7 +13,7 @@ pollutes the git tree. #### Workflow * Fork the repository -* Clone your fork and change directory to it (`git clone git@github.com:yourUserName/babel.git && cd 6to5`) +* Clone your fork and change directory to it (`git clone git@github.com:yourUserName/babel.git && cd babel`) * Install the project dependencies (`make bootstrap`) * Link your forked clone (`npm link`) * Develop your changes ensuring you're fetching updates from upstream often diff --git a/Makefile b/Makefile index 7ebdd18b2d..9019e76da5 100644 --- a/Makefile +++ b/Makefile @@ -49,17 +49,16 @@ test: lint test-simple: # excludes test262 - export SIMPLE_6TO5_TESTS=1; \ + export SIMPLE_BABEL_TESTS=1; \ make test test-all: - # includes traceur, esnext, regenerator - export ALL_6TO5_TESTS=1; \ + export ALL_BABEL_TESTS=1; \ make test test-cov: rm -rf coverage - export SIMPLE_6TO5_TESTS=1; \ + export SIMPLE_BABEL_TESTS=1; \ node $(ISTANBUL_CMD) $(MOCHA_CMD) -- test-travis: build-core bootstrap diff --git a/doc/index.md b/doc/index.md index 160f97e74d..577a894eb8 100644 --- a/doc/index.md +++ b/doc/index.md @@ -1 +1 @@ -See [6to5.github.io/docs](https://github.com/6to5/6to5.github.io/tree/master/docs). +See [babel.github.io/docs](https://github.com/babel/babel.github.io/tree/master/docs). diff --git a/test/regenerator.js b/test/regenerator.js index f41125c70f..54aba708ae 100644 --- a/test/regenerator.js +++ b/test/regenerator.js @@ -1,4 +1,4 @@ -if (!process.env.ALL_6TO5_TESTS) return; +if (!process.env.ALL_BABEL_TESTS) return; require("./_helper").assertVendor("regenerator"); diff --git a/test/test262.js b/test/test262.js index c084c71ac5..ca6c0a8c8c 100644 --- a/test/test262.js +++ b/test/test262.js @@ -1,4 +1,4 @@ -if (process.env.SIMPLE_6TO5_TESTS) return; +if (process.env.SIMPLE_BABEL_TESTS) return; require("./_helper").assertVendor("test262");