2023-01-14 18:07:52 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
./node_modules/.bin/esbuild src/app.js --bundle --outfile=dist/diskernet.mjs --format=esm --platform=node --minify --analyze
|
|
|
|
./node_modules/.bin/esbuild src/app.js --bundle --outfile=build/out.cjs --platform=node --minify --analyze
|
2023-01-14 18:19:38 +00:00
|
|
|
#./node_modules/.bin/esbuild src/app.js --bundle --outfile=build/test.cjs --platform=node
|
2023-01-14 18:07:52 +00:00
|
|
|
echo "#!/usr/bin/env node" > build/diskernet.cjs
|
|
|
|
cat build/out.cjs >> build/diskernet.cjs
|
|
|
|
chmod +x build/diskernet.cjs
|
|
|
|
|