@visulima/packem 1.0.0-alpha.86 → 1.0.0-alpha.88
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/CHANGELOG.md +18 -0
- package/dist/cli.cjs +7 -5
- package/dist/cli.mjs +8 -6
- package/dist/create-bundler.cjs +48 -48
- package/dist/create-bundler.mjs +43 -43
- package/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/packem",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.88",
|
|
4
4
|
"description": "A fast and modern bundler for Node.js and TypeScript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
"oxc",
|
|
28
28
|
"typescript",
|
|
29
29
|
"visulima",
|
|
30
|
-
"zero config"
|
|
30
|
+
"zero config",
|
|
31
|
+
"tsup",
|
|
32
|
+
"unbuild",
|
|
33
|
+
"bunchee"
|
|
31
34
|
],
|
|
32
35
|
"homepage": "https://www.visulima.com/docs/package/packem",
|
|
33
36
|
"repository": {
|
|
@@ -93,7 +96,7 @@
|
|
|
93
96
|
"default": "./dist/rollup/plugins/swc/swc-plugin.cjs"
|
|
94
97
|
}
|
|
95
98
|
},
|
|
96
|
-
"./transformer/
|
|
99
|
+
"./dts/isolated/transformer/swc": {
|
|
97
100
|
"import": {
|
|
98
101
|
"types": "./dist/rollup/plugins/swc/isolated-declarations-swc-transformer.d.mts",
|
|
99
102
|
"default": "./dist/rollup/plugins/swc/isolated-declarations-swc-transformer.mjs"
|
|
@@ -103,7 +106,7 @@
|
|
|
103
106
|
"default": "./dist/rollup/plugins/swc/isolated-declarations-swc-transformer.cjs"
|
|
104
107
|
}
|
|
105
108
|
},
|
|
106
|
-
"./transformer/
|
|
109
|
+
"./dts/isolated/transformer/oxc": {
|
|
107
110
|
"import": {
|
|
108
111
|
"types": "./dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.d.mts",
|
|
109
112
|
"default": "./dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.mjs"
|
|
@@ -113,7 +116,7 @@
|
|
|
113
116
|
"default": "./dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.cjs"
|
|
114
117
|
}
|
|
115
118
|
},
|
|
116
|
-
"./transformer/
|
|
119
|
+
"./dts/isolated/transformer/typescript": {
|
|
117
120
|
"import": {
|
|
118
121
|
"types": "./dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.d.mts",
|
|
119
122
|
"default": "./dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.mjs"
|
|
@@ -174,6 +177,7 @@
|
|
|
174
177
|
"is-glob": "^4.0.3",
|
|
175
178
|
"magic-string": "^0.30.11",
|
|
176
179
|
"mlly": "^1.7.1",
|
|
180
|
+
"oxc-parser": "^0.25.0",
|
|
177
181
|
"rollup": "^4.21.2",
|
|
178
182
|
"rollup-plugin-dts": "^6.1.1",
|
|
179
183
|
"rollup-plugin-license": "^3.5.2",
|
|
@@ -287,9 +291,9 @@
|
|
|
287
291
|
"build:prod": "cross-env JITI_ESM_RESOLVE=1 INTERNAL_PACKEM_BUILD=1 jiti ./src/cli build --production",
|
|
288
292
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
289
293
|
"dev": "pnpm run build",
|
|
290
|
-
"lint:fix": "pnpm run lint:prettier:fix && pnpm run lint:eslint:fix",
|
|
291
294
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
292
295
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
296
|
+
"lint:fix": "pnpm run lint:prettier:fix && pnpm run lint:eslint:fix",
|
|
293
297
|
"lint:packagejson": "publint --strict",
|
|
294
298
|
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
295
299
|
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|