feat(router): add angular 1.x router

This commit is contained in:
Brian Ford
2015-04-29 15:46:42 -07:00
parent 78a8ba2307
commit fde026a9e4
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}