mirror of
https://github.com/fiatjaf/nak.git
synced 2024-10-30 00:59:07 -04:00
8 lines
133 B
JavaScript
Executable File
8 lines
133 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
require('esbuild').buildSync({
|
|
entryPoints: ['globals.js'],
|
|
outfile: 'globals.bundle.js',
|
|
bundle: true
|
|
})
|