1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-10 17:04:36 +00:00

fix: new node, externals

This commit is contained in:
2025-02-26 09:53:43 +01:00
parent afae632fc6
commit 2072136577
2 changed files with 3517 additions and 17179 deletions

20687
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -27,6 +27,15 @@ 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'),