Skip to content

Commit

Permalink
chore: ensure yarn scripts use cross-env
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramon Souza committed Apr 18, 2022
1 parent 5e126f4 commit d39824c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions apps/meteor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"stylelint": "stylelint \"app/**/*.css\" \"client/**/*.css\" \"app/**/*.less\" \"client/**/*.less\" \"ee/**/*.less\"",
"stylelint:fix": "stylelint --fix \"app/**/*.css\" \"client/**/*.css\" \"app/**/*.less\" \"client/**/*.less\" \"ee/**/*.less\"",
"typecheck": "NODE_OPTIONS=\"--max-old-space-size=4092\" tsc --noEmit --skipLibCheck",
"typecheck": "cross-env NODE_OPTIONS=\"--max-old-space-size=4092\" tsc --noEmit --skipLibCheck",
"deploy": "npm run build && pm2 startOrRestart pm2.json",
"coverage": "nyc -r html mocha --config ./.mocharc.js",
"testci": "node .scripts/start.js",
"test:playwright": "playwright test",
"test:playwright:ee": "ENTERPRISE=true playwright test",
"test:playwright:ee": "cross-env ENTERPRISE=true yarn test:playwright",
"testui": "cypress run",
"testui-pass": "cypress run --spec ./tests/cypress/integration/01-pass/**/*.spec.js",
"testui-intermittent": "cypress run --spec ./tests/cypress/integration/02-intermittent/**/*.spec.js",
Expand All @@ -49,7 +49,8 @@
"version": "node .scripts/version.js",
"set-version": "node .scripts/set-version.js",
"release": "meteor npm run set-version --silent",
"storybook": "cross-env NODE_OPTIONS=--max-old-space-size=8192 start-storybook -p 6006"
"storybook": "cross-env NODE_OPTIONS=--max-old-space-size=8192 start-storybook -p 6006",
"docker:start": "docker-compose up"
},
"license": "MIT",
"repository": {
Expand Down

0 comments on commit d39824c

Please sign in to comment.