Skip to content

Commit

Permalink
fix: add sasjs/adapter to external array in build.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sabhas committed Apr 28, 2023
1 parent 91016b4 commit efdefba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ import { build } from 'esbuild'
const res = await build({
entryPoints: ['./src/extension.ts'],
outfile: 'out/extension.js',
external: ['vscode', '@sasjs/utils/fs', 'node-graphviz', '@sasjs/cli'],
external: [
'vscode',
'@sasjs/utils/fs',
'node-graphviz',
'@sasjs/cli',
'@sasjs/adapter'
],
format: 'cjs',
platform: 'node',
bundle: true,
Expand Down

0 comments on commit efdefba

Please sign in to comment.