diff options
author | 2021-05-13 14:12:45 -0500 | |
---|---|---|
committer | 2021-05-13 14:12:45 -0500 | |
commit | 7a3e1c2d4c137ca47c228ce8c9848ced0748a82c (patch) | |
tree | c4b529c55688893e7c28aeeb6a810a9e655757a9 /scripts/cmd/build.js | |
parent | a9f63c5c0cb095ce4b01d28855e6cdb1c299bffe (diff) | |
download | astro-7a3e1c2d4c137ca47c228ce8c9848ced0748a82c.tar.gz astro-7a3e1c2d4c137ca47c228ce8c9848ced0748a82c.tar.zst astro-7a3e1c2d4c137ca47c228ce8c9848ced0748a82c.zip |
chore: release astro-vscode
Diffstat (limited to 'scripts/cmd/build.js')
-rw-r--r-- | scripts/cmd/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmd/build.js b/scripts/cmd/build.js index e0482a6a6..5013c766d 100644 --- a/scripts/cmd/build.js +++ b/scripts/cmd/build.js @@ -26,7 +26,7 @@ export default async function build(...args) { const { type = 'module', dependencies = {} } = await fs.readFile('./package.json').then((res) => JSON.parse(res.toString())); const format = type === 'module' ? 'esm' : 'cjs'; - const external = [...Object.keys(dependencies), 'source-map-support', 'source-map-support/register.js']; + const external = [...Object.keys(dependencies), 'source-map-support', 'source-map-support/register.js', 'vscode']; const outdir = 'dist'; await clean(outdir); |