Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
51cd528040 | ||
|
|
7128a44adc | ||
|
|
a46a3bb869 | ||
|
|
4a2dad60c6 | ||
|
|
163b3e170c | ||
|
|
679271ec9e | ||
|
|
c552cebbb6 |
@@ -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,
|
||||
|
||||
+1138
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "gh-scripting-compiler",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.4",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "node esbuild.js",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"skipLibCheck": true,
|
||||
"paths": {
|
||||
"dcs-script-compiler":[
|
||||
"../compiler/src/ScriptCompiler.ts"
|
||||
"../../compiler/src/ScriptCompiler.ts"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user