bunchee 5.0.0-beta.6 → 5.0.0-beta.7
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 +13 -15
package/dist/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,22 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunchee",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.7",
|
|
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 && tsc -p test/tsconfig.json --noEmit",
|
|
14
|
-
"prepublishOnly": "pnpm clean && pnpm build && chmod +x ./dist/bin/cli.js && pnpm test",
|
|
15
|
-
"tsx": "node -r @swc-node/register",
|
|
16
|
-
"build": "node -r @swc-node/register ./src/bin/index.ts --runtime node",
|
|
17
|
-
"format": "prettier --write .",
|
|
18
|
-
"prepare": "husky install"
|
|
19
|
-
},
|
|
20
8
|
"type": "commonjs",
|
|
21
9
|
"keywords": [
|
|
22
10
|
"bundler",
|
|
@@ -116,5 +104,15 @@
|
|
|
116
104
|
],
|
|
117
105
|
"testTimeout": 60000
|
|
118
106
|
},
|
|
119
|
-
"packageManager": "pnpm@8.8.0"
|
|
120
|
-
|
|
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 && tsc -p test/tsconfig.json --noEmit",
|
|
114
|
+
"tsx": "node -r @swc-node/register",
|
|
115
|
+
"build": "node -r @swc-node/register ./src/bin/index.ts --runtime node",
|
|
116
|
+
"format": "prettier --write ."
|
|
117
|
+
}
|
|
118
|
+
}
|