Created
May 23, 2021 16:46
-
-
Save souporserious/78285c2663b46f4b046a7931894dc1b1 to your computer and use it in GitHub Desktop.
Estrella build config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { build } = require('estrella') | |
const { dependencies } = require('./package.json') | |
build({ | |
entry: 'src/index.ts', | |
outfile: 'dist/index.js', | |
bundle: true, | |
platform: 'node', | |
external: Object.keys(dependencies), | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment