mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix issue when running android cordova projects due to aab format change
This commit is contained in:
@@ -9,6 +9,13 @@
|
||||
|
||||
* `minifier-js@2.6.1`
|
||||
- Terser updated to [4.8.0](https://github.com/terser/terser/blob/master/CHANGELOG.md#v480)
|
||||
|
||||
## v2.3.2, 2021-07-13
|
||||
|
||||
#### Meteor Version Release
|
||||
|
||||
* `meteor-tool@2.3.2`
|
||||
- fixes a bug that makes `meteor run android` run with the new aab package flag
|
||||
|
||||
## v2.3.1, 2021-07-08
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "The Meteor command-line tool",
|
||||
version: '2.3.1'
|
||||
version: '2.3.2'
|
||||
});
|
||||
|
||||
Package.includeTool();
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "2.3.1",
|
||||
"version": "2.3.2",
|
||||
"recommended": false,
|
||||
"official": true,
|
||||
"description": "The Official Meteor Distribution"
|
||||
|
||||
1
tools/cordova/project.js
vendored
1
tools/cordova/project.js
vendored
@@ -335,7 +335,6 @@ ${displayNameForPlatform(platform)}`, async () => {
|
||||
...this.defaultOptions,
|
||||
platforms: [platform],
|
||||
device: isDevice,
|
||||
options: (platform === 'android' ? {argv: ["--packageType", options.packageType || "bundle"]} : {})
|
||||
};
|
||||
|
||||
this.runCommands(`running Cordova app for platform \
|
||||
|
||||
Reference in New Issue
Block a user