Revert "Revert "feat(router): add angular 1.x router""

This reverts commit 298f1fb6a6.
This commit is contained in:
Brian Ford
2015-08-20 13:19:34 -07:00
parent 964884e761
commit 06487237e5
19 changed files with 1977 additions and 4 deletions

11
scripts/ci/build_router.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
set -e
echo =============================================================================
# go to project dir
SCRIPT_DIR=$(dirname $0)
# this is needed because we're running JS tests in Dartium too
source $SCRIPT_DIR/env_dart.sh
cd $SCRIPT_DIR/../..
./node_modules/.bin/gulp buildRouter.dev

10
scripts/ci/test_router.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
set -e
echo =============================================================================
# go to project dir
SCRIPT_DIR=$(dirname $0)
source $SCRIPT_DIR/env_dart.sh
cd $SCRIPT_DIR/../..
./node_modules/.bin/gulp test.unit.router/ci --browsers=${KARMA_BROWSERS:-ChromeCanary}