13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Author: Sascha Nitsch https://contentnation.net/@grumpydevelop
|
|
|
|
import * as esbuild from 'esbuild'
|
|
|
|
await esbuild.build({
|
|
entryPoints: ['index.ts'],
|
|
bundle: true,
|
|
platform: 'node',
|
|
target: ['node10.4'],
|
|
packages: 'external',
|
|
outfile: 'index.js',
|
|
})
|