1
0
Fork 0

Merge pull request #2801 from freesewing/v3-stage2

V3 stage2
This commit is contained in:
Joost De Cock 2022-09-11 18:49:47 +02:00 committed by GitHub
commit 180501a7f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
509 changed files with 8550 additions and 9140 deletions

View file

@ -33,18 +33,4 @@ let result
console.log(info)
}
// Also build a version that has all dependencies bundled
// This makes it easy to run tests
await esbuild
.build({
...options,
minify: false,
keepNames: true,
sourcemap: false,
outfile: 'tests/dist/index.mjs',
format: 'esm',
external: [],
})
.catch(() => process.exit(1))
})()