mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix initial versions on cordova
This commit is contained in:
12
tools/cordova/builder.js
vendored
12
tools/cordova/builder.js
vendored
@@ -500,7 +500,17 @@ export class CordovaBuilder {
|
||||
|
||||
program.versionNonRefreshable = AUTOUPDATE_VERSION ||
|
||||
WebAppHashing.calculateClientHash(
|
||||
program.manifest, type => type !== "css", configDummy);
|
||||
program.manifest,
|
||||
(type, replaceable) => type !== "css" && !replaceable,
|
||||
configDummy
|
||||
);
|
||||
|
||||
program.versionReplaceable = AUTOUPDATE_VERSION ||
|
||||
WebAppHashing.calculateClientHash(
|
||||
program.manifest,
|
||||
(_type, replaceable) => replaceable,
|
||||
configDummy
|
||||
);
|
||||
}
|
||||
|
||||
generateBootstrapPage(applicationPath, program, publicSettings) {
|
||||
|
||||
Reference in New Issue
Block a user