Fix typo and update Travis node version

This commit is contained in:
Jan Dvorak
2021-08-13 10:15:03 +02:00
parent 2c84114fd0
commit 85908cf031
3 changed files with 3 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ language: node_js
os: linux
dist: xenial
node_js:
- "14.17.4"
- "14.17.5"
cache:
directories:
- ".meteor"

View File

@@ -59,9 +59,6 @@
* `service-configuration@1.5.0`
- Migrated usage of `_ensureIndex` to `createIndex`
* `ecmascript@0.15.3`
- Typescript and Babel version bump
* `ecmascript-runtime-client@0.12.0`
- `core-js@3.16.0`

View File

@@ -9,7 +9,7 @@ const meteorInstallRegExp = new RegExp([
// we should be looking for in the AST.
/\b(meteorInstall)\(\{/,
// If the meteorInstall function name has been minified, we can figure
// out its mangled name by examining the import assingment.
// out its mangled name by examining the import assignment.
/\b(\w+)=Package\.modules\.meteorInstall\b/,
/\b(\w+)=Package\["modules-runtime"\].meteorInstall\b/,
// Sometimes uglify-es will inline (0,Package.modules.meteorInstall) as
@@ -98,4 +98,4 @@ function getKeyName(key) {
}
return null;
}
}