update rogue 6to5 occurences to babel

This commit is contained in:
Sebastian McKenzie 2015-02-15 20:39:46 +11:00
parent 010ff3ec31
commit c5e01146fd
5 changed files with 7 additions and 8 deletions

View File

@ -13,7 +13,7 @@ pollutes the git tree.
#### Workflow #### Workflow
* Fork the repository * 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`) * Install the project dependencies (`make bootstrap`)
* Link your forked clone (`npm link`) * Link your forked clone (`npm link`)
* Develop your changes ensuring you're fetching updates from upstream often * Develop your changes ensuring you're fetching updates from upstream often

View File

@ -49,17 +49,16 @@ test: lint
test-simple: test-simple:
# excludes test262 # excludes test262
export SIMPLE_6TO5_TESTS=1; \ export SIMPLE_BABEL_TESTS=1; \
make test make test
test-all: test-all:
# includes traceur, esnext, regenerator export ALL_BABEL_TESTS=1; \
export ALL_6TO5_TESTS=1; \
make test make test
test-cov: test-cov:
rm -rf coverage rm -rf coverage
export SIMPLE_6TO5_TESTS=1; \ export SIMPLE_BABEL_TESTS=1; \
node $(ISTANBUL_CMD) $(MOCHA_CMD) -- node $(ISTANBUL_CMD) $(MOCHA_CMD) --
test-travis: build-core bootstrap test-travis: build-core bootstrap

View File

@ -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).

View File

@ -1,4 +1,4 @@
if (!process.env.ALL_6TO5_TESTS) return; if (!process.env.ALL_BABEL_TESTS) return;
require("./_helper").assertVendor("regenerator"); require("./_helper").assertVendor("regenerator");

View File

@ -1,4 +1,4 @@
if (process.env.SIMPLE_6TO5_TESTS) return; if (process.env.SIMPLE_BABEL_TESTS) return;
require("./_helper").assertVendor("test262"); require("./_helper").assertVendor("test262");