File tree Expand file tree Collapse file tree 9 files changed +16
-16
lines changed
Expand file tree Collapse file tree 9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
2- gulp build
1+ #! /bin/bash
2+ gulp build
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- production}
44fi
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- development}
44fi
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
2- if [[ $NODE_ENV = " production" ] ]; then
1+ #! /bin/bash
2+ if [ $NODE_ENV = " production" ]; then
33 gulp build
4- fi
4+ fi
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- production}
44fi
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- test}
44fi
@@ -7,4 +7,4 @@ if [ -z "${PORT}" ]; then
77 export PORT=${2:- 3001}
88fi
99
10- istanbul cover ./node_modules/.bin/_mocha -- --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
10+ istanbul cover ./node_modules/.bin/_mocha -- --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
2- esw -w ' app/**/*-test.js' ' tests/**/*.js'
1+ #! /bin/bash
2+ esw -w ' app/**/*-test.js' ' tests/**/*.js'
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- test}
44fi
@@ -7,4 +7,4 @@ if [ -z "${PORT}" ]; then
77 export PORT=${2:- 3001}
88fi
99
10- mocha --watch --reporter progress --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
10+ mocha --watch --reporter progress --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/bash
22if [ -z " ${NODE_ENV} " ]; then
33 export NODE_ENV=${1:- test}
44fi
@@ -7,4 +7,4 @@ if [ -z "${PORT}" ]; then
77 export PORT=${2:- 3001}
88fi
99
10- mocha --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
10+ mocha --compilers js:./compiler ' ./app/**/*-test.js' ' ./tests/**/*.js'
You can’t perform that action at this time.
0 commit comments