Skip to content
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
2 changes: 1 addition & 1 deletion packages/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
],
"scripts": {
"build": "echo 'no build needed'",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && echo 'no tests needed'",
"test:ci": "biome check --error-on-warnings && echo 'no tests needed'",
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 @@ -28,7 +28,7 @@
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm run build"
"prepublishOnly": "pnpm 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 @@ -19,7 +19,7 @@
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
"prepublish": "pnpm run build",
"prepublishOnly": "pnpm build",
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
"clean": "rimraf node_modules ./coverage ./test/testdb.sqlite ./dist"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/cacheable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cacheable",
"version": "2.3.3",
"version": "2.3.4",
"description": "High Performance Layer 1 / Layer 2 Caching with Keyv Storage",
"type": "module",
"main": "./dist/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
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 @@ -36,7 +36,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
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 @@ -59,7 +59,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/memory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/net/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && TEST_URL=http://localhost:3737 vitest run --coverage",
"test:ci": "biome check --error-on-warnings && TEST_URL=http://localhost:3737 vitest run --coverage",
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 @@ -41,7 +41,7 @@
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"prepublishOnly": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
Expand Down
Loading