We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8a29e commit c24f469Copy full SHA for c24f469
src/client.ts
@@ -8,7 +8,7 @@ import {
8
buildTime,
9
cInfo,
10
currentVersion,
11
- getCurrentVersionInfo,
+ currentVersionInfo,
12
isFirstTime,
13
isRolledBack,
14
packageVersion,
@@ -163,7 +163,6 @@ export class Pushy {
163
log(type + ' ' + message);
164
await this.loggerPromise.promise;
165
const { logger = noop, appKey } = this.options;
166
- const info = await getCurrentVersionInfo();
167
const overridePackageVersion = this.options.overridePackageVersion;
168
logger({
169
type,
@@ -175,7 +174,7 @@ export class Pushy {
175
174
overridePackageVersion,
176
177
message,
178
- ...info,
+ ...currentVersionInfo,
179
...data,
180
},
181
});
0 commit comments