Skip to content

Commit bb902b3

Browse files
authored
Externalize RITM (#2037)
1 parent b422db8 commit bb902b3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

nodejs/packages/layer/install-externals.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euf -o pipefail
55
rm -rf ./build/workspace/node_modules
66

77
# Space separated list of external NPM packages
8-
EXTERNAL_PACKAGES=( "import-in-the-middle" )
8+
EXTERNAL_PACKAGES=( "import-in-the-middle" "require-in-the-middle" )
99

1010
for EXTERNAL_PACKAGE in "${EXTERNAL_PACKAGES[@]}"
1111
do

nodejs/packages/layer/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = {
88
externals: [
99
'import-in-the-middle',
1010
'@aws-sdk',
11+
'require-in-the-middle'
1112
],
1213
output: {
1314
path: path.resolve('./build/src'),

0 commit comments

Comments
 (0)