Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mono - moving to prepublish instead of prepare #929

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Test
run: pnpm test:ci

Expand Down
2 changes: 1 addition & 1 deletion packages/cache-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm run build"
"prepublish": "pnpm run build"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/cacheable-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"scripts": {
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"prepare": "pnpm run build",
"prepublish": "pnpm run build",
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf node_modules ./coverage ./test/testdb.sqlite ./dist"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cacheable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm build",
"prepublish": "pnpm build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"clean": "rimraf ./dist ./coverage ./node_modules"
Expand Down
2 changes: 1 addition & 1 deletion packages/file-entry-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm build",
"prepublish": "pnpm build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"clean": "rimraf ./dist ./coverage ./node_modules"
Expand Down
2 changes: 1 addition & 1 deletion packages/flat-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm build",
"prepublish": "pnpm build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"clean": "rimraf ./dist ./coverage ./node_modules"
Expand Down
2 changes: 1 addition & 1 deletion packages/node-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm build",
"prepublish": "pnpm build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"clean": "rimraf ./dist ./coverage ./node_modules"
Expand Down
Loading