bump to Node 14.16.0

This commit is contained in:
filipenevola
2021-02-23 20:14:21 -04:00
parent 6e1624fd60
commit 8b9296e2de
4 changed files with 4 additions and 4 deletions

2
meteor
View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
BUNDLE_VERSION=14.15.5.0
BUNDLE_VERSION=14.16.0.0
# OS Check. Put here because here is where we download the precompiled
# bundles that are arch specific.

View File

@@ -5,7 +5,7 @@ set -u
UNAME=$(uname)
ARCH=$(uname -m)
NODE_VERSION=14.15.5
NODE_VERSION=14.16.0
MONGO_VERSION_64BIT=4.2.8
MONGO_VERSION_32BIT=3.2.22
NPM_VERSION=6.14.11

View File

@@ -10,7 +10,7 @@ var packageJson = {
dependencies: {
// Explicit dependency because we are replacing it with a bundled version
// and we want to make sure there are no dependencies on a higher version
npm: "6.14.8",
npm: "6.14.11",
pacote: "https://github.com/meteor/pacote/tarball/a81b0324686e85d22c7688c47629d4009000e8b8",
"node-gyp": "6.1.0",
"node-pre-gyp": "0.15.0",

View File

@@ -176,7 +176,7 @@ find . -path '*/esprima-fb/test' | xargs rm -rf
INSTALLED_NPM_VERSION=$(cat "$DIR/lib/node_modules/npm/package.json" |
xargs -0 node -e "console.log(JSON.parse(process.argv[1]).version)")
if [ "$INSTALLED_NPM_VERSION" != "$NPM_VERSION" ]; then
echo "Unexpected NPM version in lib/node_modules: $INSTALLED_NPM_VERSION"
echo "Error: Unexpected NPM version in lib/node_modules: $INSTALLED_NPM_VERSION"
echo "Update this check if you know what you're doing."
exit 1
fi