@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.
@@ -50,7 +50,6 @@ export const setupForBrowser = async (input) => {
50
50
  output: {
51
51
  ...input.output,
52
52
  format: 'esm',
53
- minify: false,
54
53
  sourcemap: false,
55
54
  // Single-bundle output. `codeSplitting: false` replaces the
56
55
  // deprecated `inlineDynamicImports: true`.
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
@@ -75,7 +75,6 @@ export const setupForNode = async (input) => {
75
75
  output: {
76
76
  ...input.output,
77
77
  format,
78
- minify: false,
79
78
  sourcemap: false,
80
79
  banner,
81
80
  // Single-bundle output. `codeSplitting: false` replaces the
@@ -58,7 +58,6 @@ export const setupLib = async (input) => {
58
58
  // Rolldown keeps the full project-relative path. The root is
59
59
  // computed from the common ancestor of resolved entries.
60
60
  preserveModulesRoot,
61
- minify: false,
62
61
  sourcemap: false,
63
62
  },
64
63
  treeshake: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/rolldown-plugin-gjsify",
3
- "version": "0.3.16",
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.16",
46
- "@gjsify/rolldown-plugin-deepkit": "^0.3.16",
47
- "@gjsify/rolldown-plugin-pnp": "^0.3.16",
48
- "@gjsify/vite-plugin-blueprint": "^0.3.16",
49
- "@rollup/pluginutils": "^5.1.4",
50
- "acorn": "^8.14.0",
51
- "acorn-walk": "^8.3.4",
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.0",
65
- "rolldown": "^1.0.0-rc.18",
64
+ "@types/node": "^25.6.2",
65
+ "rolldown": "^1.0.0",
66
66
  "typescript": "^6.0.3"
67
67
  }
68
68
  }
@@ -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
@@ -99,7 +99,6 @@ export const setupForNode = async (input: NodeFactoryInput): Promise<NodeBuildCo
99
99
  output: {
100
100
  ...input.output,
101
101
  format,
102
- minify: false,
103
102
  sourcemap: false,
104
103
  banner,
105
104
  // Single-bundle output. `codeSplitting: false` replaces the
@@ -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,