bunchee 5.2.0-beta.0 → 5.2.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/dist/bin/cli.js +154 -5
- package/dist/index.d.ts +5 -1
- package/dist/index.js +860 -977
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunchee",
|
|
3
|
-
"version": "5.2.0-beta.
|
|
3
|
+
"version": "5.2.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",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"arg": "^5.0.2",
|
|
48
48
|
"clean-css": "^5.3.3",
|
|
49
49
|
"magic-string": "^0.30.10",
|
|
50
|
+
"ora": "^8.0.1",
|
|
50
51
|
"pretty-bytes": "^5.6.0",
|
|
51
52
|
"rollup": "^4.17.2",
|
|
52
53
|
"rollup-plugin-dts": "^6.1.0",
|
|
@@ -111,8 +112,10 @@
|
|
|
111
112
|
"test:ci": "[ -z $CI ] || pnpm test",
|
|
112
113
|
"clean": "rm -rf ./dist",
|
|
113
114
|
"typecheck": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
|
|
114
|
-
"tsx": "node -r @swc-node/register",
|
|
115
|
-
"
|
|
115
|
+
"tsx": "SWC_NODE_IGNORE_DYNAMIC=1 node -r @swc-node/register",
|
|
116
|
+
"ts-bunchee": "pnpm tsx ./src/bin/index.ts",
|
|
117
|
+
"build-dir": "pnpm ts-bunchee --cwd",
|
|
118
|
+
"build": "SWC_NODE_IGNORE_DYNAMIC=1 node -r @swc-node/register ./src/bin/index.ts --runtime node",
|
|
116
119
|
"format": "prettier --write ."
|
|
117
120
|
}
|
|
118
121
|
}
|