Skip to content

Commit

Permalink
Always happy exit
Browse files Browse the repository at this point in the history
  • Loading branch information
simison authored and blowery committed Jun 11, 2019
1 parent 6ebcd33 commit 8870ae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@
"start-build-evergreen": "cross-env-shell BROWSERSLIST_ENV=evergreen NODE_PATH=$NODE_PATH:server:client:. node $NODE_ARGS --max_old_space_size=8192 build/bundle.js",
"start-build-if-desktop": "node -e \"(process.env.CALYPSO_ENV === 'desktop' || process.env.CALYPSO_ENV === 'desktop-development') && process.exit(1)\" || npm run start-build-fallback",
"start-build-if-web": "node -e \"(process.env.CALYPSO_ENV !== 'desktop' && process.env.CALYPSO_ENV !== 'desktop-development') && process.exit(1)\" || npm run start-build-evergreen",
"reformat-files": "run-s reformat-files:*",
"reformat-files": "run-p -c reformat-files:*",
"reformat-files:js": "./node_modules/.bin/prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,json,ts,tsx}\"",
"reformat-files:css": "npm run -s lint:css -- --fix",
"reformat-files:css": "npm run -s lint:css -- --fix || exit 0",
"pretest": "npm run -s install-if-deps-outdated",
"test": "run-s -s test-client test-packages test-server",
"pretest-client": "npm run -s pretest",
Expand Down

0 comments on commit 8870ae1

Please sign in to comment.