create-glosc 0.4.2 → 0.4.3
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/templates.js +1 -1
- package/package.json +1 -1
- package/src/templates.ts +1 -1
package/dist/templates.js
CHANGED
|
@@ -408,7 +408,7 @@ function nodePackageJson(options) {
|
|
|
408
408
|
private: true,
|
|
409
409
|
type: "module",
|
|
410
410
|
scripts: {
|
|
411
|
-
build: `esbuild src/${mainFileName} --bundle --platform=node --format=esm --target=es2022 --
|
|
411
|
+
build: `esbuild src/${mainFileName} --bundle --platform=node --format=esm --target=es2022 --sourcemap --outfile=${distEntry}`,
|
|
412
412
|
start: `node ${distEntry}`,
|
|
413
413
|
package: "node scripts/package.mjs",
|
|
414
414
|
},
|
package/package.json
CHANGED
package/src/templates.ts
CHANGED
|
@@ -457,7 +457,7 @@ function nodePackageJson(options: ProjectOptions): string {
|
|
|
457
457
|
private: true,
|
|
458
458
|
type: "module",
|
|
459
459
|
scripts: {
|
|
460
|
-
build: `esbuild src/${mainFileName} --bundle --platform=node --format=esm --target=es2022 --
|
|
460
|
+
build: `esbuild src/${mainFileName} --bundle --platform=node --format=esm --target=es2022 --sourcemap --outfile=${distEntry}`,
|
|
461
461
|
start: `node ${distEntry}`,
|
|
462
462
|
package: "node scripts/package.mjs",
|
|
463
463
|
},
|