Skip to content

Commit

Permalink
build: run concurrently using npx
Browse files Browse the repository at this point in the history
* fixes github workflow errors
  • Loading branch information
ahochsteger committed Jul 22, 2024
1 parent 2f23fc1 commit 4440e27
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"act:ci": "act push",
"act:pr": "act pull_request",
"build": "concurrently 'npm:build:*(!build:docs)'",
"build": "npx concurrently 'npm:build:*(!build:docs)'",
"build:docs": "scripts/build-docs.sh",
"build:examples": "scripts/clasp.sh examples build",
"build:lib": "scripts/clasp.sh lib build",
Expand All @@ -17,7 +17,7 @@
"clean:docs": "rm -rf docs/build",
"clean:examples": "scripts/clasp.sh examples clean",
"clean:lib": "scripts/clasp.sh lib clean",
"deploy": "concurrently 'npm:deploy:*'",
"deploy": "npx concurrently 'npm:deploy:*'",
"deploy:examples": "scripts/clasp.sh examples deploy",
"deploy:lib": "scripts/clasp.sh lib deploy",
"devbox:update": "devbox generate devcontainer --force && docker build -t gmail-processor-devbox .",
Expand All @@ -29,7 +29,7 @@
"e2e:init-all": "scripts/clasp.sh examples run-with-logs initAllTests 120",
"e2e:init-run-all": "scripts/clasp.sh examples run-with-logs initAndRunAllTests 120",
"e2e:run-all": "scripts/clasp.sh examples run-with-logs runAllTests 120",
"lint": "concurrently 'npm:lint:*(!lint:fix)'",
"lint": "npx concurrently 'npm:lint:*(!lint:fix)'",
"lint:code": "scripts/lint-code.sh",
"lint:cpd": "jscpd src/lib",
"lint:fix": "prettier -w .",
Expand All @@ -38,14 +38,14 @@
"packages:update": "npm update --save",
"pre-commit": "npm run clean && npm run update && npm run build && npm run lint:fix && npm run lint && npm run test && npm run clean:docs && npm run build:docs",
"pre-push": "npm run pre-commit && npm run push && npm run e2e:init-run-all",
"push": "concurrently 'npm:push:*'",
"push": "npx concurrently 'npm:push:*'",
"push:examples": "scripts/clasp.sh examples push",
"push:lib": "scripts/clasp.sh lib push",
"rebuild": "npm run clean && npm run build",
"rebuild:docs": "npm run clean:docs && cd docs && npm run build",
"rebuild:examples": "npm run clean:examples && npm run update:examples && npm run build:examples",
"rebuild:lib": "npm run clean:lib && npm run build:lib",
"redeploy": "concurrently 'npm:redeploy:*'",
"redeploy": "npx concurrently 'npm:redeploy:*'",
"redeploy:examples": "npm run repush:examples && npm run deploy:examples",
"redeploy:lib": "npm run repush:lib && npm run deploy:lib",
"release:dry-run": "npx semantic-release --dry-run",
Expand All @@ -55,7 +55,7 @@
"release:releaseVersion": "git tag --points-at | awk '/.+/ {print \"releaseVersion=\"$0}'",
"release:update": "scripts/clasp.sh lib update-github-release",
"renovate:dry-run": "scripts/renovate.sh test",
"repush": "concurrently 'npm:repush:*'",
"repush": "npx concurrently 'npm:repush:*'",
"repush:examples": "npm run rebuild:examples && npm run push:examples",
"repush:lib": "npm run rebuild:lib && npm run push:lib",
"secrets:check": "scripts/github-secrets.sh check all",
Expand Down

0 comments on commit 4440e27

Please sign in to comment.