Skip to content

Commit d74cc44

Browse files
committed
fix: packages versioning
1 parent 2b42c62 commit d74cc44

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test:unit": " bun --filter './packages/**' test:unit",
1515
"test": " bun --filter './packages/**' test",
1616
"build": " bun --filter './packages/**' build",
17-
"version": " bun --filter './packages/**' version",
17+
"version": " changeset version && bun --filter './packages/**' version",
1818
"publish": " bun --filter './packages/**' publish",
1919
"clean": " bun --filter '*' clean",
2020
"lint": "biome check"
File renamed without changes.

packages/try-catch-tuple/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"test": "bun run test:unit && bun run test:types",
2626
"build": "tsup index.ts --format esm,cjs --dts --sourcemap",
2727
"clean": "rm -rf dist && echo done",
28-
"version": "changeset version && biome format --fix package.json",
28+
"version": "biome format --fix package.json",
2929
"prepublishOnly": "cp ../../{LICENSE,CHANGELOG.md} dist/",
3030
"publish": "bun publish",
3131
"lint": "biome check"
@@ -34,7 +34,7 @@
3434
"module": "dist/index.js",
3535
"main": "dist/index.cjs",
3636
"types": "dist/index.d.ts",
37-
"files": ["dist", "package.json", "README.md"],
37+
"files": ["dist", "package.json", "README.md", "CHANGELOG.md"],
3838
"exports": {
3939
".": {
4040
"types": "./dist/index.d.ts",

packages/ts-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"test": "bun run test:unit",
1515
"build": "tsup index.ts transformer.ts --format esm,cjs --dts --dts-resolve --sourcemap --splitting false",
1616
"clean": "rm -rf dist && echo done",
17-
"version": "changeset version && biome format --fix package.json",
17+
"version": "biome format --fix package.json",
1818
"prepublishOnly": "cp ../../{LICENSE,CHANGELOG.md} dist/",
1919
"publish": "bun publish",
2020
"lint": "biome check"
2121
},
2222
"module": "dist/index.mjs",
2323
"main": "dist/index.js",
2424
"types": "dist/index.d.ts",
25-
"files": ["dist", "package.json", "README.md"],
25+
"files": ["dist", "package.json", "README.md", "CHANGELOG.md"],
2626
"exports": {
2727
".": {
2828
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)