extension 4.0.21 → 4.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/49.cjs +21 -7
- package/dist/browsers.cjs +152 -94
- package/dist/cli.cjs +218 -134
- package/dist/extension/browsers/browsers-lib/banner.d.ts +5 -0
- package/dist/extension/browsers/browsers-lib/messages.d.ts +4 -1
- package/dist/extension/browsers/browsers-lib/shared-utils.d.ts +7 -0
- package/dist/extension/browsers/run-chromium/chromium-types.d.ts +2 -0
- package/dist/extension/helpers/cli-failure.d.ts +1 -0
- package/dist/extension/helpers/messages.d.ts +1 -1
- package/package.json +4 -4
package/dist/49.cjs
CHANGED
|
@@ -1133,7 +1133,9 @@ exports.modules = {
|
|
|
1133
1133
|
},
|
|
1134
1134
|
getInfo: async ()=>cdpExtensionController.getInfoBestEffort(),
|
|
1135
1135
|
browserVersionLine: plugin.browserVersionLine,
|
|
1136
|
-
profilePath: userDataDir || void 0
|
|
1136
|
+
profilePath: userDataDir || void 0,
|
|
1137
|
+
binaryPath: plugin.binaryPath,
|
|
1138
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1137
1139
|
});
|
|
1138
1140
|
};
|
|
1139
1141
|
return;
|
|
@@ -1150,7 +1152,9 @@ exports.modules = {
|
|
|
1150
1152
|
},
|
|
1151
1153
|
getInfo: async ()=>null,
|
|
1152
1154
|
browserVersionLine: plugin.browserVersionLine,
|
|
1153
|
-
profilePath: userDataDir || void 0
|
|
1155
|
+
profilePath: userDataDir || void 0,
|
|
1156
|
+
binaryPath: plugin.binaryPath,
|
|
1157
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1154
1158
|
});
|
|
1155
1159
|
} catch {}
|
|
1156
1160
|
if ('development' === mode) try {
|
|
@@ -1163,7 +1167,9 @@ exports.modules = {
|
|
|
1163
1167
|
},
|
|
1164
1168
|
getInfo: async ()=>cdpExtensionController.getInfoBestEffort(),
|
|
1165
1169
|
browserVersionLine: plugin.browserVersionLine,
|
|
1166
|
-
profilePath: userDataDir || void 0
|
|
1170
|
+
profilePath: userDataDir || void 0,
|
|
1171
|
+
binaryPath: plugin.binaryPath,
|
|
1172
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1167
1173
|
});
|
|
1168
1174
|
} catch {}
|
|
1169
1175
|
let extensionControllerInfo = null;
|
|
@@ -1190,7 +1196,9 @@ exports.modules = {
|
|
|
1190
1196
|
},
|
|
1191
1197
|
getInfo: async ()=>extensionControllerInfo,
|
|
1192
1198
|
browserVersionLine: plugin.browserVersionLine,
|
|
1193
|
-
profilePath: userDataDir || void 0
|
|
1199
|
+
profilePath: userDataDir || void 0,
|
|
1200
|
+
binaryPath: plugin.binaryPath,
|
|
1201
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1194
1202
|
});
|
|
1195
1203
|
if (!bannerPrinted) await (0, banner.ai)({
|
|
1196
1204
|
outPath: extensionOutputPath,
|
|
@@ -1201,7 +1209,9 @@ exports.modules = {
|
|
|
1201
1209
|
},
|
|
1202
1210
|
getInfo: async ()=>cdpExtensionController.getInfoBestEffort(),
|
|
1203
1211
|
browserVersionLine: plugin.browserVersionLine,
|
|
1204
|
-
profilePath: userDataDir || void 0
|
|
1212
|
+
profilePath: userDataDir || void 0,
|
|
1213
|
+
binaryPath: plugin.binaryPath,
|
|
1214
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1205
1215
|
});
|
|
1206
1216
|
}
|
|
1207
1217
|
} else if ('production' === mode) {
|
|
@@ -1215,7 +1225,9 @@ exports.modules = {
|
|
|
1215
1225
|
outPath: extensionOutputPath,
|
|
1216
1226
|
browserVersionLine: plugin.browserVersionLine,
|
|
1217
1227
|
runtime,
|
|
1218
|
-
profilePath: userDataDir || void 0
|
|
1228
|
+
profilePath: userDataDir || void 0,
|
|
1229
|
+
binaryPath: plugin.binaryPath,
|
|
1230
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1219
1231
|
});
|
|
1220
1232
|
}
|
|
1221
1233
|
} catch (bannerErr) {
|
|
@@ -1226,7 +1238,9 @@ exports.modules = {
|
|
|
1226
1238
|
browser: plugin.browser,
|
|
1227
1239
|
outPath: extensionOutputPath,
|
|
1228
1240
|
browserVersionLine: plugin.browserVersionLine,
|
|
1229
|
-
profilePath: userDataDir || void 0
|
|
1241
|
+
profilePath: userDataDir || void 0,
|
|
1242
|
+
binaryPath: plugin.binaryPath,
|
|
1243
|
+
binaryProvenance: plugin.binaryProvenance
|
|
1230
1244
|
});
|
|
1231
1245
|
} catch {}
|
|
1232
1246
|
}
|