Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a73f3f4

Browse files
committed
chore(*): Use yarn grunt instead of yarn run grunt
The former form is shorter.
1 parent 61fe2c5 commit a73f3f4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

scripts/jenkins/build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ rm -f angular.js.size
2121

2222

2323
# BUILD #
24-
yarn run grunt ci-checks package --no-color
24+
yarn grunt ci-checks package --no-color
2525

2626
mkdir -p test_out
2727

2828
# UNIT TESTS #
29-
yarn run grunt test:unit --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
29+
yarn grunt test:unit --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
3030

3131
# END TO END TESTS #
32-
yarn run grunt test:ci-protractor
32+
yarn grunt test:ci-protractor
3333

3434
# DOCS APP TESTS #
35-
yarn run grunt test:docs --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
35+
yarn grunt test:docs --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
3636

3737
# Promises/A+ TESTS #
38-
yarn run grunt test:promises-aplus --no-color
38+
yarn grunt test:promises-aplus --no-color
3939

4040

4141
# CHECK SIZE #

scripts/jenkins/init-node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export PATH="$HOME/.yarn/bin:$PATH"
1515
yarn install
1616

1717
echo testing grunt version
18-
yarn run grunt --version
18+
yarn grunt --version

scripts/jenkins/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function init {
3737
function build {
3838
cd ../..
3939
source scripts/jenkins/init-node.sh
40-
yarn run grunt ci-checks package --no-color
40+
yarn grunt ci-checks package --no-color
4141

4242
cd $SCRIPT_DIR
4343
}

0 commit comments

Comments
 (0)