Replace webpack with esbuild

This commit is contained in:
hensm
2021-05-26 18:32:46 +01:00
parent 13cd1127c6
commit d343ac4629
16 changed files with 10690 additions and 393 deletions

View File

@@ -101,7 +101,7 @@ const getInfo = () => new Promise<BridgeInfo>(async (resolve, reject) => {
// Print compatibility info to console
if (!isVersionCompatible) {
logger.error(`Expecting ${applicationName} v${APPLICATION_VERSION}, found v${applicationVersion}. ${
logger.error(`Expecting ${applicationName} v${BRIDGE_VERSION}, found v${applicationVersion}. ${
isVersionOlder
? "Try updating the native app to the latest version."
: "Try updating the extension to the latest version"}`);
@@ -110,7 +110,7 @@ const getInfo = () => new Promise<BridgeInfo>(async (resolve, reject) => {
resolve({
name: applicationName
, version: applicationVersion
, expectedVersion: APPLICATION_VERSION
, expectedVersion: BRIDGE_VERSION
// Version info
, isVersionExact