1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-07-23 14:45:29 +00:00

Merge pull request #894 from sasjs/fix/webpack-node-builtin-externals

fix(build): remove stale node: builtin externals breaking consumer we…
This commit is contained in:
Allan Bowe
2026-07-21 16:13:25 +01:00
committed by GitHub
-9
View File
@@ -27,15 +27,6 @@ const browserConfig = {
index: './src/index.ts',
minified_sas9: './src/minified/sas9/index.ts'
},
externals: {
'node:fs': 'node:fs',
'node:fs/promises': 'node:fs/promises',
'node:path': 'node:path',
'node:stream': 'node:stream',
'node:url': 'node:url',
'node:events': 'node:events',
'node:string_decoder': 'node:string_decoder'
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build'),