Skip to content

Commit

Permalink
Replace concurrently dev dep with pnpm run (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis committed Mar 5, 2024
1 parent 0215bb4 commit 83b73b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 38 deletions.
9 changes: 4 additions & 5 deletions package.json
Expand Up @@ -20,11 +20,11 @@
"start:typescript": "./bin/cli.cjs start --config cypress/projects/typescript/playroom.config.js",
"build:typescript": "./bin/cli.cjs build --config cypress/projects/typescript/playroom.config.js",
"serve:typescript": "PORT=9002 serve --no-request-logging cypress/projects/typescript/dist",
"start:all": "concurrently 'npm:start:*(!all)'",
"build:all": "concurrently 'npm:build:*(!all)'",
"serve:all": "concurrently 'npm:serve:*(!all)'",
"start:all": "pnpm run '/^start:(?!all)/'",
"build:all": "pnpm run '/^build:(?!all)/'",
"serve:all": "pnpm run '/^serve:(?!all)/'",
"build-and-serve:all": "pnpm build:all && pnpm serve:all",
"lint": "concurrently 'npm:lint:*'",
"lint": "pnpm run '/^lint:.*/'",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --list-different '**/*.{js,md,ts,tsx}'",
"lint:tsc": "tsc --noEmit",
Expand Down Expand Up @@ -115,7 +115,6 @@
"@octokit/rest": "^19.0.5",
"@types/jest": "^29.2.4",
"@types/react-helmet": "^6.1.6",
"concurrently": "^7.6.0",
"cypress": "^13.6.6",
"eslint": "^8.44.0",
"eslint-config-seek": "^11.3.1",
Expand Down
34 changes: 1 addition & 33 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 83b73b3

Please sign in to comment.