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

Commit 01faf31

Browse files
author
Kent C. Dodds
committed
chore(build): Don't use cross-env for ci
It appears that cross-env may be causing issues...
1 parent a12063b commit 01faf31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ before_install:
1717
before_script:
1818
- npm prune
1919
script:
20-
- npm run test:ci -- --log-level debug
20+
- npm run test:ci
2121
- npm run check-coverage
2222
after_success:
2323
- npm run report-coverage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"build:prod": "cross-env NODE_ENV=production webpack --progress --colors",
2929
"build": "npm run build:dist & npm run build:prod",
3030
"test": "cross-env COVERAGE=true NODE_ENV=test karma start --single-run",
31-
"test:ci": "cross-env CI=true COVERAGE=true NODE_ENV=test karma start --single-run",
31+
"test:ci": "CI=true COVERAGE=true NODE_ENV=test karma start --single-run",
3232
"test:watch": "cross-env COVERAGE=true NODE_ENV=test karma start",
3333
"test:debug": "cross-env NODE_ENV=test karma start --browsers Chrome",
3434
"start:mac": "npm run test:mac",

0 commit comments

Comments
 (0)