Skip to content

Commit

Permalink
revert: prepare script rename [gh-0]
Browse files Browse the repository at this point in the history
  • Loading branch information
Nahuel Alejandro Ramos committed Aug 1, 2023
1 parent 54495ec commit 016b121
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"lint": "eslint . --ext .ts,.js,.mjs",
"lint:fix": "eslint . --ext .ts,.js,.mjs --fix",
"prepack": "npm run prepack --workspaces",
"prepare": "npx simple-git-hooks",
"prepare": "npx simple-git-hooks && npm run prepare --workspaces",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e --workspaces"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"scripts": {
"clean": "rimraf ./dist",
"prepack": "npx oclif manifest",
"build": "npm run clean && tsc --build",
"prepare": "npm run clean && tsc --build",
"test": "jest --selectProjects unit",
"test:e2e": "npm run build && cross-env NODE_CONFIG_DIR=./e2e/config jest --selectProjects E2E",
"test:e2e": "npm run prepare && cross-env NODE_CONFIG_DIR=./e2e/config jest --selectProjects E2E",
"test:e2e:local": "cross-env CHECKLY_ENV=local npm run test:e2e",
"watch": "tsc --watch"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/create-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"scripts": {
"clean": "rimraf ./dist",
"prepack": "echo \"Warning: no oclif manifest configured\"",
"build": "npm run clean && tsc --build",
"prepare": "npm run clean && tsc --build",
"test": "jest --selectProjects unit",
"test:e2e": "npm run build && jest --selectProjects E2E",
"test:e2e": "npm run prepare && jest --selectProjects E2E",
"start": "node ./index.mjs",
"watch": "tsc --watch"
},
Expand Down

0 comments on commit 016b121

Please sign in to comment.