Compare commits

...
Author SHA1 Message Date
dutchie031 51cd528040 updates to get it working again
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 6s
Publish Action Release / Derive release metadata (push) Successful in 6s
Publish Action Release / Publish tags (push) Successful in 10s
Publish Bundle Script Action / publish_action (push) Successful in 23s
2026-09-19 23:01:25 +02:00
dutchie031 7128a44adc updates to get it working again
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 5s
2026-09-19 23:00:57 +02:00
dutchie031 a46a3bb869 updates to get it working again
Publish Action Release / Derive release metadata (push) Successful in 4s
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 4s
Publish Action Release / Publish tags (push) Successful in 14s
Publish Bundle Script Action / publish_action (push) Successful in 30s
2026-09-19 22:58:34 +02:00
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
const esbuild = require("esbuild");
import esbuild from "esbuild";
const production = process.argv.includes('--production');
const watch = process.argv.includes('--watch');
@@ -9,7 +9,7 @@ async function main() {
'src/index.ts'
],
bundle: true,
format: 'cjs',
format: 'esm',
minify: production,
sourcemap: !production,
sourcesContent: false,
+2 -1
View File
@@ -1,6 +1,7 @@
{
"name": "gh-scripting-compiler",
"version": "1.1.2",
"version": "1.1.4",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "node esbuild.js",