Skip to content

Commit

Permalink
changed pipeline scripts to no longer be recursive to prevent node_mo…
Browse files Browse the repository at this point in the history
…dules being scanned

Signed-off-by: Justin Santer <[email protected]>
  • Loading branch information
Justin Santer committed Feb 19, 2022
1 parent 4692f19 commit 9e5d04c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "Top-level package for ZEBRA packages",
"main": "index.js",
"scripts": {
"prebuild": "npm install --include=dev && foreach -g \"./packages/**/package.json\" -x \"npm install --prefix #{dir} --include=dev\"",
"build": "foreach -g \"./packages/**/package.json\" -x \"npm run --prefix #{dir} build\"",
"test": "foreach -g \"./packages/**/package.json\" -x \"npm test --prefix #{dir}\"",
"prebuild": "npm install --include=dev && foreach -g \"./packages/*/package.json\" -x \"npm install --prefix #{dir} --include=dev\"",
"build": "foreach -g \"./packages/*/package.json\" -x \"npm run --prefix #{dir} build\"",
"test": "foreach -g \"./packages/*/package.json\" -x \"npm test --prefix #{dir}\"",
"prepare": "husky install",
"lint": "pretty-quick --staged && lint-staged"
},
Expand Down

0 comments on commit 9e5d04c

Please sign in to comment.