bunchee 6.9.4 → 6.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.js +1 -1
- package/package.json +9 -5
package/dist/bin/cli.js
CHANGED
|
@@ -856,7 +856,7 @@ async function lint$1(cwd) {
|
|
|
856
856
|
}
|
|
857
857
|
}
|
|
858
858
|
|
|
859
|
-
var version = "6.
|
|
859
|
+
var version = "6.10.0";
|
|
860
860
|
|
|
861
861
|
async function writeDefaultTsconfig(tsConfigPath) {
|
|
862
862
|
await fs.promises.writeFile(tsConfigPath, JSON.stringify(DEFAULT_TS_CONFIG, null, 2), 'utf-8');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunchee",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"description": "zero config bundler for js/ts/jsx libraries",
|
|
5
5
|
"bin": "./dist/bin/cli.js",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
"docs:build": "next build docs",
|
|
14
14
|
"clean": "rm -rf ./dist",
|
|
15
15
|
"new-test": "node ./scripts/new-test.js",
|
|
16
|
+
"test:ts-matrix": "node ./scripts/test-ts-matrix.js all",
|
|
17
|
+
"test:ts5": "node ./scripts/test-ts-matrix.js ts5",
|
|
18
|
+
"test:ts6": "node ./scripts/test-ts-matrix.js ts6",
|
|
16
19
|
"typecheck": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
|
|
17
20
|
"prepare-release": "pnpm clean && pnpm build",
|
|
18
21
|
"publish-local": "pnpm prepare-release && pnpm test && pnpm publish",
|
|
@@ -70,7 +73,7 @@
|
|
|
70
73
|
"picomatch": "^4.0.2",
|
|
71
74
|
"pretty-bytes": "^5.6.0",
|
|
72
75
|
"rollup": "^4.52.4",
|
|
73
|
-
"rollup-plugin-dts": "^6.
|
|
76
|
+
"rollup-plugin-dts": "^6.4.1",
|
|
74
77
|
"rollup-plugin-swc3": "^0.11.1",
|
|
75
78
|
"rollup-preserve-directives": "^1.1.3",
|
|
76
79
|
"tinyglobby": "^0.2.14",
|
|
@@ -78,7 +81,7 @@
|
|
|
78
81
|
"yargs": "^17.7.2"
|
|
79
82
|
},
|
|
80
83
|
"peerDependencies": {
|
|
81
|
-
"typescript": "^4.1 || ^5.0"
|
|
84
|
+
"typescript": "^4.1 || ^5.0 || ^6.0"
|
|
82
85
|
},
|
|
83
86
|
"peerDependenciesMeta": {
|
|
84
87
|
"typescript": {
|
|
@@ -96,7 +99,8 @@
|
|
|
96
99
|
"@types/clean-css": "^4.2.11",
|
|
97
100
|
"@types/node": "^22.9.3",
|
|
98
101
|
"@types/picomatch": "^3.0.1",
|
|
99
|
-
"@types/react": "^19.
|
|
102
|
+
"@types/react": "^19.2.14",
|
|
103
|
+
"@types/react-dom": "^19.2.3",
|
|
100
104
|
"@types/yargs": "^17.0.33",
|
|
101
105
|
"@typescript/native-preview": "*",
|
|
102
106
|
"bunchee": "link:./",
|
|
@@ -110,7 +114,7 @@
|
|
|
110
114
|
"react": "^19.2.1",
|
|
111
115
|
"react-dom": "^19.2.1",
|
|
112
116
|
"tailwindcss": "^4.1.8",
|
|
113
|
-
"typescript": "^
|
|
117
|
+
"typescript": "^6.0.2",
|
|
114
118
|
"vitest": "^3.0.4"
|
|
115
119
|
},
|
|
116
120
|
"lint-staged": {
|