@gjsify/rolldown-plugin-gjsify 0.3.16 → 0.3.17
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/lib/app/browser.js +0 -1
- package/lib/app/gjs.js +0 -1
- package/lib/app/node.js +0 -1
- package/lib/library/lib.js +0 -1
- package/package.json +10 -10
- package/src/app/browser.ts +0 -1
- package/src/app/gjs.ts +0 -1
- package/src/app/node.ts +0 -1
- package/src/library/lib.ts +0 -1
package/lib/app/browser.js
CHANGED
package/lib/app/gjs.js
CHANGED
|
@@ -95,7 +95,6 @@ export const setupForGjs = async (input) => {
|
|
|
95
95
|
output: {
|
|
96
96
|
...input.output,
|
|
97
97
|
format,
|
|
98
|
-
minify: false,
|
|
99
98
|
sourcemap: false,
|
|
100
99
|
// App builds emit a single bundle file. Disable code-splitting
|
|
101
100
|
// so dynamic imports get inlined and the entire program lands
|
package/lib/app/node.js
CHANGED
package/lib/library/lib.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gjsify/rolldown-plugin-gjsify",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"description": "Rolldown / Rollup / Vite plugin orchestrator for GJS, Node, and Browser targets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
],
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@gjsify/resolve-npm": "^0.3.
|
|
46
|
-
"@gjsify/rolldown-plugin-deepkit": "^0.3.
|
|
47
|
-
"@gjsify/rolldown-plugin-pnp": "^0.3.
|
|
48
|
-
"@gjsify/vite-plugin-blueprint": "^0.3.
|
|
49
|
-
"@rollup/pluginutils": "^5.
|
|
50
|
-
"acorn": "^8.
|
|
51
|
-
"acorn-walk": "^8.3.
|
|
45
|
+
"@gjsify/resolve-npm": "^0.3.17",
|
|
46
|
+
"@gjsify/rolldown-plugin-deepkit": "^0.3.17",
|
|
47
|
+
"@gjsify/rolldown-plugin-pnp": "^0.3.17",
|
|
48
|
+
"@gjsify/vite-plugin-blueprint": "^0.3.17",
|
|
49
|
+
"@rollup/pluginutils": "^5.3.0",
|
|
50
|
+
"acorn": "^8.16.0",
|
|
51
|
+
"acorn-walk": "^8.3.5",
|
|
52
52
|
"fast-glob": "^3.3.3",
|
|
53
53
|
"lightningcss": "^1.32.0"
|
|
54
54
|
},
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@types/node": "^25.6.
|
|
65
|
-
"rolldown": "^1.0.0
|
|
64
|
+
"@types/node": "^25.6.2",
|
|
65
|
+
"rolldown": "^1.0.0",
|
|
66
66
|
"typescript": "^6.0.3"
|
|
67
67
|
}
|
|
68
68
|
}
|
package/src/app/browser.ts
CHANGED
|
@@ -73,7 +73,6 @@ export const setupForBrowser = async (input: BrowserFactoryInput): Promise<Brows
|
|
|
73
73
|
output: {
|
|
74
74
|
...input.output,
|
|
75
75
|
format: 'esm',
|
|
76
|
-
minify: false,
|
|
77
76
|
sourcemap: false,
|
|
78
77
|
// Single-bundle output. `codeSplitting: false` replaces the
|
|
79
78
|
// deprecated `inlineDynamicImports: true`.
|
package/src/app/gjs.ts
CHANGED
|
@@ -136,7 +136,6 @@ export const setupForGjs = async (input: GjsFactoryInput): Promise<GjsBuildConfi
|
|
|
136
136
|
output: {
|
|
137
137
|
...input.output,
|
|
138
138
|
format,
|
|
139
|
-
minify: false,
|
|
140
139
|
sourcemap: false,
|
|
141
140
|
// App builds emit a single bundle file. Disable code-splitting
|
|
142
141
|
// so dynamic imports get inlined and the entire program lands
|
package/src/app/node.ts
CHANGED
package/src/library/lib.ts
CHANGED
|
@@ -79,7 +79,6 @@ export const setupLib = async (input: LibFactoryInput): Promise<LibBuildConfig>
|
|
|
79
79
|
// Rolldown keeps the full project-relative path. The root is
|
|
80
80
|
// computed from the common ancestor of resolved entries.
|
|
81
81
|
preserveModulesRoot,
|
|
82
|
-
minify: false,
|
|
83
82
|
sourcemap: false,
|
|
84
83
|
},
|
|
85
84
|
treeshake: false,
|