This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1616 "scripts" : {
1717 "commit" : " git-cz" ,
1818 "test-i18n" : " jasmine-node i18n/spec" ,
19- "test-i18n-ucd" : " jasmine-node i18n/ucd/spec"
19+ "test-i18n-ucd" : " jasmine-node i18n/ucd/spec" ,
20+ "grunt" : " grunt"
2021 },
2122 "devDependencies" : {
2223 "angular-benchpress" : " 0.x.x" ,
Original file line number Diff line number Diff line change @@ -21,21 +21,21 @@ rm -f angular.js.size
2121
2222
2323# BUILD #
24- grunt ci-checks package --no-color
24+ yarn run grunt -- ci-checks package --no-color
2525
2626mkdir -p test_out
2727
2828# UNIT TESTS #
29- grunt test:unit --browsers=" $BROWSERS " --reporters=dots,junit --no-colors --no-color
29+ yarn run grunt -- test:unit --browsers=" $BROWSERS " --reporters=dots,junit --no-colors --no-color
3030
3131# END TO END TESTS #
32- grunt test:ci-protractor
32+ yarn run grunt -- test:ci-protractor
3333
3434# DOCS APP TESTS #
35- grunt test:docs --browsers=" $BROWSERS " --reporters=dots,junit --no-colors --no-color
35+ yarn run grunt -- test:docs --browsers=" $BROWSERS " --reporters=dots,junit --no-colors --no-color
3636
3737# Promises/A+ TESTS #
38- grunt test:promises-aplus --no-color
38+ yarn run grunt -- test:promises-aplus --no-color
3939
4040
4141# CHECK SIZE #
Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ nvm install
99# clean out and install yarn
1010rm -rf ~ /.yarn
1111curl -o- -L https://raw.githubusercontent.com/yarnpkg/yarn/2a0afc73210c7a82082585283e518eeb88ca19ae/scripts/install-latest.sh | bash -s -- --version 0.17.9
12+ export PATH=" $HOME /.yarn/bin:$PATH "
1213
13- # Ensure we have the correct global grunt installed
14- yarn global add grunt-cli@1.2.0 --exact
14+ echo testing grunt version
15+ yarn run grunt -- --version
1516
1617# Ensure that we have the local dependencies installed
1718yarn install
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function build {
3838 source ./init-node.sh
3939 cd ../..
4040
41- grunt ci-checks package --no-color
41+ yarn run grunt -- ci-checks package --no-color
4242
4343 cd $SCRIPT_DIR
4444}
You can’t perform that action at this time.
0 commit comments