bunchee 4.4.7 → 5.0.0-beta.1
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/README.md +0 -55
- package/dist/bin/cli.js +320 -317
- package/dist/index.js +442 -496
- package/package.json +14 -16
package/package.json
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunchee",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-beta.1",
|
|
4
4
|
"description": "zero config bundler for js/ts/jsx libraries",
|
|
5
5
|
"bin": "./dist/bin/cli.js",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "jest --env node",
|
|
10
|
-
"test:update": "TEST_UPDATE_SNAPSHOT=1 pnpm test",
|
|
11
|
-
"test:post": "POST_BUILD=1 pnpm jest test/compile.test.ts test/integration.test.ts",
|
|
12
|
-
"clean": "rm -rf ./dist",
|
|
13
|
-
"typecheck": "tsc --noEmit",
|
|
14
|
-
"prepublishOnly": "pnpm clean && pnpm build && chmod +x ./dist/bin/cli.js && pnpm test",
|
|
15
|
-
"build": "tsx ./src/bin/index.ts --runtime node",
|
|
16
|
-
"format": "prettier --write .",
|
|
17
|
-
"prepare": "husky install"
|
|
18
|
-
},
|
|
19
8
|
"type": "commonjs",
|
|
20
9
|
"keywords": [
|
|
21
10
|
"bundler",
|
|
@@ -60,7 +49,7 @@
|
|
|
60
49
|
"magic-string": "^0.30.6",
|
|
61
50
|
"pretty-bytes": "^5.6.0",
|
|
62
51
|
"rimraf": "^5.0.5",
|
|
63
|
-
"rollup": "^4.
|
|
52
|
+
"rollup": "^4.12.0",
|
|
64
53
|
"rollup-plugin-dts": "^6.1.0",
|
|
65
54
|
"rollup-plugin-swc3": "^0.11.0",
|
|
66
55
|
"rollup-preserve-directives": "^1.1.1",
|
|
@@ -113,7 +102,16 @@
|
|
|
113
102
|
"/node_modules/",
|
|
114
103
|
"<rootDir>/test/integration/.*/*src"
|
|
115
104
|
],
|
|
116
|
-
"testTimeout":
|
|
105
|
+
"testTimeout": 60000
|
|
117
106
|
},
|
|
118
|
-
"packageManager": "pnpm@8.8.0"
|
|
119
|
-
|
|
107
|
+
"packageManager": "pnpm@8.8.0",
|
|
108
|
+
"scripts": {
|
|
109
|
+
"test": "jest --env node",
|
|
110
|
+
"test:update": "TEST_UPDATE_SNAPSHOT=1 pnpm test",
|
|
111
|
+
"test:post": "POST_BUILD=1 pnpm jest test/compile.test.ts test/integration.test.ts",
|
|
112
|
+
"clean": "rm -rf ./dist",
|
|
113
|
+
"typecheck": "tsc --noEmit",
|
|
114
|
+
"build": "tsx ./src/bin/index.ts --runtime node",
|
|
115
|
+
"format": "prettier --write ."
|
|
116
|
+
}
|
|
117
|
+
}
|