Skip to content

Commit b9a1695

Browse files
committed
fixup: add kerberos to webpack externals
1 parent 180929f commit b9a1695

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/cli-repl/webpack.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ const config = {
8383
Module.builtinModules.map((m) => [`node:${m}`, `commonjs2 ${m}`])
8484
), // node: builtin specifiers need to be always declared as externals in webpack right now
8585
// mongodb-client-encryption fixup until NODE-6670 is done
86-
'../build/Release/mongocrypt.node':
87-
'commonjs2 ../build/Release/mongocrypt.node',
88-
'../build/Debug/mongocrypt.node':
89-
'commonjs2 ../build/Debug/mongocrypt.node',
86+
'../build/Release/mongocrypt.node': 'commonjs2 mongocrypt.node',
87+
'../build/Debug/mongocrypt.node': 'commonjs2 mongocrypt.node',
88+
'../build/Release/kerberos.node': 'commonjs2 kerberos.node',
89+
'../build/Debug/kerberos.node': 'commonjs2 kerberos.node',
9090
},
9191

9292
externalsPresets: {

0 commit comments

Comments
 (0)