We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b422db8 commit bb902b3Copy full SHA for bb902b3
nodejs/packages/layer/install-externals.sh
@@ -5,7 +5,7 @@ set -euf -o pipefail
5
rm -rf ./build/workspace/node_modules
6
7
# Space separated list of external NPM packages
8
-EXTERNAL_PACKAGES=( "import-in-the-middle" )
+EXTERNAL_PACKAGES=( "import-in-the-middle" "require-in-the-middle" )
9
10
for EXTERNAL_PACKAGE in "${EXTERNAL_PACKAGES[@]}"
11
do
nodejs/packages/layer/webpack.config.js
@@ -8,6 +8,7 @@ module.exports = {
externals: [
'import-in-the-middle',
'@aws-sdk',
+ 'require-in-the-middle'
12
],
13
output: {
14
path: path.resolve('./build/src'),
0 commit comments