refactor: prevent caching html files

This commit is contained in:
Carlos Valente
2024-11-29 14:55:08 +01:00
committed by Carlos Valente
parent 35f4472daa
commit f561e52bb5
9 changed files with 240 additions and 280 deletions
+8
View File
@@ -0,0 +1,8 @@
import * as esbuild from 'esbuild';
import { esbuildCommon } from './esbuildCommon.js';
await esbuild.build({
...esbuildCommon,
entryPoints: ['src/index.ts'],
outfile: 'dist/docker.cjs',
});