mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix bundler cordova stuff
This commit is contained in:
@@ -702,7 +702,7 @@ class Target {
|
||||
const unibuild = sourceBatch.unibuild;
|
||||
|
||||
if (this.cordovaDependencies) {
|
||||
_.each(unibuild.pkg.cordovaDependencies, function (version, name) {
|
||||
_.each(unibuild.pkg.cordovaDependencies, (version, name) => {
|
||||
this._addCordovaDependency(
|
||||
name,
|
||||
version,
|
||||
@@ -938,7 +938,7 @@ class Target {
|
||||
if (! this.cordovaDependencies)
|
||||
return;
|
||||
|
||||
this.cordovaPluginsFile.getPluginVersions().forEach((version, name) => {
|
||||
_.each(this.cordovaPluginsFile.getPluginVersions(), (version, name) => {
|
||||
this._addCordovaDependency(
|
||||
name, version, true /* override any existing version */);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user