Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ node_js:
- '6'
- '4'

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.0.2
- export PATH=$HOME/.yarn/bin:$PATH

before_script:
- yarn run bootstrap && yarn run build

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "gulp build",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"coverage": "jest --coverage",
"coverage": "jest --coverage --maxWorkers=4",
"coverage-ci": "codecov -f coverage/coverage-final.json",
"eslint": "eslint packages/*/src/ packages/*/__tests__/ utils/*.js scripts/*.js",
"eslint-fix": "eslint --fix packages/*/src/ packages/*/__tests__/ utils/*.js scripts/*.js",
Expand All @@ -16,7 +16,7 @@
"lint": "npm run format-check && npm run eslint",
"publish": "git pull origin master --rebase && npm run build && npm test && lerna publish",
"publish-internal": "git pull origin master --rebase && npm run build && NPM_DIST_TAG=internal ./node_modules/.bin/lerna publish --skip-git",
"test": "jest",
"test": "jest --maxWorkers=4",
"test-ci": "npm run bootstrap && npm run build && npm run coverage",
"updated": "lerna updated",
"watch": "gulp watch"
Expand Down
1 change: 1 addition & 0 deletions packages/babel-minify/__tests__/cli-tests.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
jest.autoMockOff();
jest.setTimeout(25000);

const { spawn } = require("child_process");
const path = require("path");
Expand Down