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

Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot f01c222c56 chore(release): 4.17.3 [skip ci]
## [4.17.3](https://github.com/sasjs/adapter/compare/v4.17.2...v4.17.3) (2026-07-21)

### Bug Fixes

* **build:** remove stale node: builtin externals breaking consumer webpack builds ([3d4fe30](https://github.com/sasjs/adapter/commit/3d4fe304e9cfffb142efbc1a5d53db319f786ad5))
2026-07-21 15:14:21 +00:00
Allan Bowe a4273e5369 Merge pull request #894 from sasjs/fix/webpack-node-builtin-externals
fix(build): remove stale node: builtin externals breaking consumer we…
2026-07-21 16:13:25 +01:00
YuryShkoda 3d4fe304e9 fix(build): remove stale node: builtin externals breaking consumer webpack builds
The externals block for 'node:fs'/'node:path'/etc. became dead weight when
originally added, but the webpack 5.108.4 bump now canonicalizes bare builtin
requires to the node: form, matching it. That flips these modules from being
polyfilled by node-polyfill-webpack-plugin to leaking as unresolved literal
requires in the published bundle.
2026-07-21 18:03:19 +03:00
3 changed files with 3 additions and 12 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@sasjs/adapter",
"version": "4.17.2",
"version": "4.17.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@sasjs/adapter",
"version": "4.17.2",
"version": "4.17.3",
"license": "ISC",
"dependencies": {
"@sasjs/utils": "^3.5.6",
+1 -1
View File
@@ -99,5 +99,5 @@
"https": "1.0.0",
"tough-cookie": "4.1.3"
},
"version": "4.17.2"
"version": "4.17.3"
}
-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'),