Skip to content

Commit 416c8aa

Browse files
authored
Stop force-installing @types/node@18.11.9 (#78)
1 parent e7709fa commit 416c8aa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integration/run-javascript.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ if [ ! -d "$CLIENT_DIR" ]; then
1111
echo "Installing from branch $BRANCH"
1212
git clone -b "$BRANCH" --depth=1 "https://github.com/elastic/elasticsearch-js.git" "$CLIENT_DIR" ||
1313
(echo "Branch $BRANCH not found. Cloning main branch." &&
14-
git clone -b "main" --depth=1 "https://github.com/elastic/elasticsearch-js.git" "$CLIENT_DIR")
14+
git clone -b "main" --depth=1 "https://github.com/elastic/elasticsearch-js.git" "$CLIENT_DIR")
1515
pushd "$CLIENT_DIR"
1616
npm install
17-
npm install @types/node@18.11.9 # temporary workaround, see https://github.com/elastic/elasticsearch-js/pull/2374
1817
npm run build
1918
popd
2019
fi

0 commit comments

Comments
 (0)