@gjsify/cli 0.3.11 → 0.3.13

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.
@@ -89,7 +89,7 @@ export class BuildAction {
89
89
  results.push(await build({
90
90
  ...this.getEsBuildDefaults(),
91
91
  ...esbuild,
92
- format: moduleFormat,
92
+ format: mainFormat,
93
93
  outdir: mainOutdir,
94
94
  plugins: [
95
95
  ...pnpPlugins,
@@ -98,7 +98,7 @@ export class BuildAction {
98
98
  library: mainFormat,
99
99
  exclude,
100
100
  reflection: typescript?.reflection,
101
- jsExtension: mainOutdir,
101
+ jsExtension: mainOutExt,
102
102
  }),
103
103
  ],
104
104
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/cli",
3
- "version": "0.3.11",
3
+ "version": "0.3.13",
4
4
  "description": "CLI for Gjsify",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -23,14 +23,14 @@
23
23
  "cli"
24
24
  ],
25
25
  "dependencies": {
26
- "@gjsify/create-app": "^0.3.11",
27
- "@gjsify/esbuild-plugin-gjsify": "^0.3.11",
28
- "@gjsify/node-polyfills": "^0.3.11",
29
- "@gjsify/npm-registry": "^0.3.11",
30
- "@gjsify/resolve-npm": "^0.3.11",
31
- "@gjsify/semver": "^0.3.11",
32
- "@gjsify/tar": "^0.3.11",
33
- "@gjsify/web-polyfills": "^0.3.11",
26
+ "@gjsify/create-app": "^0.3.13",
27
+ "@gjsify/esbuild-plugin-gjsify": "^0.3.13",
28
+ "@gjsify/node-polyfills": "^0.3.13",
29
+ "@gjsify/npm-registry": "^0.3.13",
30
+ "@gjsify/resolve-npm": "^0.3.13",
31
+ "@gjsify/semver": "^0.3.13",
32
+ "@gjsify/tar": "^0.3.13",
33
+ "@gjsify/web-polyfills": "^0.3.13",
34
34
  "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
35
35
  "cosmiconfig": "^9.0.1",
36
36
  "esbuild": "^0.28.0",
@@ -109,7 +109,7 @@ export class BuildAction {
109
109
  await build({
110
110
  ...this.getEsBuildDefaults(),
111
111
  ...esbuild,
112
- format: moduleFormat,
112
+ format: mainFormat,
113
113
  outdir: mainOutdir,
114
114
  plugins: [
115
115
  ...pnpPlugins,
@@ -118,7 +118,7 @@ export class BuildAction {
118
118
  library: mainFormat,
119
119
  exclude,
120
120
  reflection: typescript?.reflection,
121
- jsExtension: mainOutdir,
121
+ jsExtension: mainOutExt,
122
122
  }),
123
123
  ],
124
124
  }),