extension-develop 4.0.0 → 4.0.1
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/0~rspack-config.mjs +35 -55
- package/dist/101.mjs +1 -1
- package/dist/extension-js-devtools/extension-js/chrome/events.ndjson +2 -2
- package/dist/extension-js-devtools/extension-js/chrome/ready.json +5 -5
- package/dist/extension-js-devtools/extension-js/chromium/events.ndjson +2 -2
- package/dist/extension-js-devtools/extension-js/chromium/ready.json +5 -5
- package/dist/extension-js-devtools/extension-js/edge/events.ndjson +2 -2
- package/dist/extension-js-devtools/extension-js/edge/ready.json +5 -5
- package/dist/extension-js-devtools/extension-js/firefox/events.ndjson +2 -2
- package/dist/extension-js-devtools/extension-js/firefox/ready.json +5 -5
- package/dist/extension-js-theme/extension-js/chrome/events.ndjson +2 -2
- package/dist/extension-js-theme/extension-js/chrome/ready.json +5 -5
- package/dist/extension-js-theme/extension-js/chromium/events.ndjson +2 -2
- package/dist/extension-js-theme/extension-js/chromium/ready.json +5 -5
- package/dist/extension-js-theme/extension-js/edge/events.ndjson +2 -2
- package/dist/extension-js-theme/extension-js/edge/ready.json +5 -5
- package/dist/extension-js-theme/extension-js/firefox/events.ndjson +4 -4
- package/dist/extension-js-theme/extension-js/firefox/ready.json +5 -5
- package/package.json +2 -2
package/dist/0~rspack-config.mjs
CHANGED
|
@@ -66,13 +66,27 @@ function filterKeysForThisBrowser(manifest, browser) {
|
|
|
66
66
|
'gecko',
|
|
67
67
|
'firefox'
|
|
68
68
|
]);
|
|
69
|
-
const
|
|
70
|
-
|
|
71
|
-
if (
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
const prefixMatchesTarget = (prefix)=>prefix === browser || isChromiumTarget && chromiumPrefixes.has(prefix) || isGeckoTarget && geckoPrefixes.has(prefix);
|
|
70
|
+
const resolve = (node)=>{
|
|
71
|
+
if (Array.isArray(node)) return node.map((item)=>resolve(item));
|
|
72
|
+
if (node && 'object' == typeof node) {
|
|
73
|
+
const result = {};
|
|
74
|
+
const prefixedMatches = {};
|
|
75
|
+
for (const [key, value] of Object.entries(node)){
|
|
76
|
+
const indexOfColon = key.indexOf(':');
|
|
77
|
+
if (-1 === indexOfColon) {
|
|
78
|
+
result[key] = resolve(value);
|
|
79
|
+
continue;
|
|
80
|
+
}
|
|
81
|
+
const prefix = key.substring(0, indexOfColon);
|
|
82
|
+
if (prefixMatchesTarget(prefix)) prefixedMatches[key.substring(indexOfColon + 1)] = resolve(value);
|
|
83
|
+
}
|
|
84
|
+
for (const [strippedKey, value] of Object.entries(prefixedMatches))result[strippedKey] = value;
|
|
85
|
+
return result;
|
|
86
|
+
}
|
|
87
|
+
return node;
|
|
88
|
+
};
|
|
89
|
+
return resolve(manifest);
|
|
76
90
|
}
|
|
77
91
|
function normalizePath(filePath) {
|
|
78
92
|
return filePath.replace(/\\/g, '/');
|
|
@@ -1008,42 +1022,8 @@ function getManifestContent(compilation, manifestPath) {
|
|
|
1008
1022
|
return cjsRequire(manifestPath);
|
|
1009
1023
|
}
|
|
1010
1024
|
}
|
|
1011
|
-
function manifest_filterKeysForThisBrowser(manifest, browser) {
|
|
1012
|
-
const isChromiumTarget = isChromiumBasedBrowser(String(browser));
|
|
1013
|
-
const isGeckoTarget = isGeckoBasedBrowser(String(browser));
|
|
1014
|
-
const chromiumPrefixes = new Set([
|
|
1015
|
-
'chromium',
|
|
1016
|
-
'chrome',
|
|
1017
|
-
'edge'
|
|
1018
|
-
]);
|
|
1019
|
-
const geckoPrefixes = new Set([
|
|
1020
|
-
'gecko',
|
|
1021
|
-
'firefox'
|
|
1022
|
-
]);
|
|
1023
|
-
const prefixMatchesTarget = (prefix)=>prefix === browser || isChromiumTarget && chromiumPrefixes.has(prefix) || isGeckoTarget && geckoPrefixes.has(prefix);
|
|
1024
|
-
const resolve = (node)=>{
|
|
1025
|
-
if (Array.isArray(node)) return node.map((item)=>resolve(item));
|
|
1026
|
-
if (node && 'object' == typeof node) {
|
|
1027
|
-
const result = {};
|
|
1028
|
-
const prefixedMatches = {};
|
|
1029
|
-
for (const [key, value] of Object.entries(node)){
|
|
1030
|
-
const indexOfColon = key.indexOf(':');
|
|
1031
|
-
if (-1 === indexOfColon) {
|
|
1032
|
-
result[key] = resolve(value);
|
|
1033
|
-
continue;
|
|
1034
|
-
}
|
|
1035
|
-
const prefix = key.substring(0, indexOfColon);
|
|
1036
|
-
if (prefixMatchesTarget(prefix)) prefixedMatches[key.substring(indexOfColon + 1)] = resolve(value);
|
|
1037
|
-
}
|
|
1038
|
-
for (const [strippedKey, value] of Object.entries(prefixedMatches))result[strippedKey] = value;
|
|
1039
|
-
return result;
|
|
1040
|
-
}
|
|
1041
|
-
return node;
|
|
1042
|
-
};
|
|
1043
|
-
return resolve(manifest);
|
|
1044
|
-
}
|
|
1045
1025
|
function buildCanonicalManifest(manifestPath, manifest, browser) {
|
|
1046
|
-
const filteredManifest =
|
|
1026
|
+
const filteredManifest = filterKeysForThisBrowser(manifest, browser);
|
|
1047
1027
|
return {
|
|
1048
1028
|
...filteredManifest,
|
|
1049
1029
|
...JSON.parse(getManifestOverrides(manifestPath, filteredManifest))
|
|
@@ -6555,8 +6535,8 @@ class WebExtensionPlugin {
|
|
|
6555
6535
|
}
|
|
6556
6536
|
}
|
|
6557
6537
|
const webpack_target_webextension_fork = WebExtensionPlugin;
|
|
6558
|
-
function
|
|
6559
|
-
return
|
|
6538
|
+
function manifest_filterKeysForThisBrowser(manifest, browser) {
|
|
6539
|
+
return filterKeysForThisBrowser(manifest, browser);
|
|
6560
6540
|
}
|
|
6561
6541
|
class SetupBackgroundEntry {
|
|
6562
6542
|
manifestPath;
|
|
@@ -6568,7 +6548,7 @@ class SetupBackgroundEntry {
|
|
|
6568
6548
|
getMissingBackgroundError(bgFile) {
|
|
6569
6549
|
if (!__rspack_external_fs.existsSync(bgFile) && this.manifestPath) {
|
|
6570
6550
|
const manifest = JSON.parse(__rspack_external_fs.readFileSync(this.manifestPath, 'utf8'));
|
|
6571
|
-
const patched =
|
|
6551
|
+
const patched = manifest_filterKeysForThisBrowser(manifest, this.browser);
|
|
6572
6552
|
const fieldKey = 3 === patched.manifest_version ? 'background/service_worker' : "background/scripts";
|
|
6573
6553
|
return backgroundIsRequiredMessageOnly(fieldKey);
|
|
6574
6554
|
}
|
|
@@ -6588,7 +6568,7 @@ class SetupBackgroundEntry {
|
|
|
6588
6568
|
const browser = this.browser;
|
|
6589
6569
|
const minimumBgScript = resolveDevelopDistFile('firefox' === browser || 'gecko-based' === browser ? 'minimum-firefox-file' : 'minimum-chromium-file');
|
|
6590
6570
|
const dirname = __rspack_external_path.dirname(this.manifestPath);
|
|
6591
|
-
const filteredManifest =
|
|
6571
|
+
const filteredManifest = manifest_filterKeysForThisBrowser(manifest, browser) || manifest;
|
|
6592
6572
|
const manifestBg = filteredManifest?.background ?? manifest.background;
|
|
6593
6573
|
const manifestVersion = filteredManifest?.manifest_version ?? manifest.manifest_version;
|
|
6594
6574
|
function hookError(maybeError) {
|
|
@@ -6605,7 +6585,14 @@ class SetupBackgroundEntry {
|
|
|
6605
6585
|
} else this.addDefaultEntry(compiler, "background/script", minimumBgScript);
|
|
6606
6586
|
return;
|
|
6607
6587
|
}
|
|
6608
|
-
if (
|
|
6588
|
+
if (2 === manifestVersion) {
|
|
6589
|
+
const bgScripts = manifestBg?.scripts;
|
|
6590
|
+
if (bgScripts && bgScripts.length > 0) {
|
|
6591
|
+
const bgScriptPath = __rspack_external_path.join(dirname, bgScripts[0]);
|
|
6592
|
+
const maybeError = this.getMissingBackgroundError(bgScriptPath);
|
|
6593
|
+
if (maybeError) hookError(maybeError);
|
|
6594
|
+
} else this.addDefaultEntry(compiler, "background/script", minimumBgScript);
|
|
6595
|
+
} else {
|
|
6609
6596
|
const serviceWorker = manifestBg?.service_worker;
|
|
6610
6597
|
if (serviceWorker) {
|
|
6611
6598
|
const swPath = __rspack_external_path.join(dirname, serviceWorker);
|
|
@@ -6614,13 +6601,6 @@ class SetupBackgroundEntry {
|
|
|
6614
6601
|
const existingEntry = compiler.options.entry && 'background/service_worker' in compiler.options.entry ? compiler.options.entry['background/service_worker'] : void 0;
|
|
6615
6602
|
if (!existingEntry && __rspack_external_fs.existsSync(swPath)) this.addDefaultEntry(compiler, 'background/service_worker', swPath);
|
|
6616
6603
|
} else this.addDefaultEntry(compiler, 'background/service_worker', minimumBgScript);
|
|
6617
|
-
} else if (2 === manifestVersion) {
|
|
6618
|
-
const bgScripts = manifestBg?.scripts;
|
|
6619
|
-
if (bgScripts && bgScripts.length > 0) {
|
|
6620
|
-
const bgScriptPath = __rspack_external_path.join(dirname, bgScripts[0]);
|
|
6621
|
-
const maybeError = this.getMissingBackgroundError(bgScriptPath);
|
|
6622
|
-
if (maybeError) hookError(maybeError);
|
|
6623
|
-
} else this.addDefaultEntry(compiler, "background/script", minimumBgScript);
|
|
6624
6604
|
}
|
|
6625
6605
|
}
|
|
6626
6606
|
}
|
|
@@ -6657,7 +6637,7 @@ class SetupReloadStrategy {
|
|
|
6657
6637
|
}
|
|
6658
6638
|
apply(compiler) {
|
|
6659
6639
|
const manifest = JSON.parse(__rspack_external_fs.readFileSync(this.manifestPath, 'utf-8'));
|
|
6660
|
-
const patchedManifest =
|
|
6640
|
+
const patchedManifest = manifest_filterKeysForThisBrowser(manifest, this.browser);
|
|
6661
6641
|
const contentScriptsMeta = {};
|
|
6662
6642
|
try {
|
|
6663
6643
|
const csList = Array.isArray(patchedManifest.content_scripts) ? patchedManifest.content_scripts : [];
|
package/dist/101.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import * as __rspack_external_fs from "fs";
|
|
|
13
13
|
import * as __rspack_external_path from "path";
|
|
14
14
|
import * as __rspack_external_os from "os";
|
|
15
15
|
import * as __rspack_external_vm from "vm";
|
|
16
|
-
var package_namespaceObject = /*#__PURE__*/ JSON.parse('{"rE":"4.0.
|
|
16
|
+
var package_namespaceObject = /*#__PURE__*/ JSON.parse('{"rE":"4.0.1","El":{"@prefresh/core":"1.5.9","@prefresh/utils":"1.2.1","@rspack/core":"^2.1.1","@rspack/dev-server":"2.1.0","@rspack/plugin-preact-refresh":"2.0.1","@rspack/plugin-react-refresh":"2.0.2","@vue/compiler-sfc":"3.5.26","adm-zip":"^0.5.16","browser-extension-manifest-fields":"^2.2.7","case-sensitive-paths-webpack-plugin":"^2.4.0","content-security-policy-parser":"^0.6.0","dotenv":"^17.2.3","es-module-lexer":"^2.1.0","extension-from-store":"^0.1.1","go-git-it":"^5.1.5","ignore":"^7.0.5","less":"4.5.1","less-loader":"13.0.0","parse5-utilities":"^1.0.0","pintor":"0.3.0","postcss":"8.5.10","postcss-loader":"8.2.1","postcss-preset-env":"11.1.1","postcss-scss":"4.0.9","preact":"10.27.3","prefers-yarn":"2.0.1","react-refresh":"0.18.0","sass-loader":"17.0.0","schema-utils":"^4.3.3","svelte-loader":"3.2.4","tiny-glob":"^0.2.9","typescript":"5.9.3","vue":"3.5.26","vue-loader":"17.4.2","webextension-polyfill":"^0.12.0","webpack-merge":"^6.0.1","webpack-target-webextension":"^2.1.3","ws":"^8.20.1"}}');
|
|
17
17
|
const fmt = {
|
|
18
18
|
heading: (title)=>pintor.underline(pintor.blue(title)),
|
|
19
19
|
label: (key)=>pintor.gray(key.toUpperCase()),
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:22.562Z","command":"start","browser":"chrome"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:23.517Z","command":"start","browser":"chrome","durationMs":1049,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "chrome",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o41x-29ka0m5h",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:22.437Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/dist/chrome",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/src/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2749,
|
|
13
|
+
"ts": "2026-06-30T21:25:23.517Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:23.517Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:20.917Z","command":"start","browser":"chromium"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:21.897Z","command":"start","browser":"chromium","durationMs":1083,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "chromium",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o2s0-er51nm3r",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:20.784Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/dist/chromium",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/src/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2701,
|
|
13
|
+
"ts": "2026-06-30T21:25:21.897Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:21.897Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:25.798Z","command":"start","browser":"edge"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:26.720Z","command":"start","browser":"edge","durationMs":1015,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "edge",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o6ju-s2d0kk6l",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:25.674Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/dist/edge",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/src/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2845,
|
|
13
|
+
"ts": "2026-06-30T21:25:26.720Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:26.720Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:24.194Z","command":"start","browser":"firefox"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:25.136Z","command":"start","browser":"firefox","durationMs":1037,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "firefox",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o5b6-7i2pj77x",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:24.066Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/dist/firefox",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-devtools/src/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2797,
|
|
13
|
+
"ts": "2026-06-30T21:25:25.136Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:25.136Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:27.847Z","command":"start","browser":"chrome"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:27.883Z","command":"start","browser":"chrome","durationMs":38,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "chrome",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o87m-amitm5si",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:27.826Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/dist/chrome",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2933,
|
|
13
|
+
"ts": "2026-06-30T21:25:27.884Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:27.883Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:27.283Z","command":"start","browser":"chromium"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:27.318Z","command":"start","browser":"chromium","durationMs":35,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "chromium",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o7rw-qzv9zpl4",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:27.260Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/dist/chromium",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 2893,
|
|
13
|
+
"ts": "2026-06-30T21:25:27.318Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:27.318Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:28.961Z","command":"start","browser":"edge"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:28.995Z","command":"start","browser":"edge","durationMs":35,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "edge",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15o92h-pjgh9ddt",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:28.937Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/dist/edge",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 3013,
|
|
13
|
+
"ts": "2026-06-30T21:25:28.995Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:28.995Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{"type":"compile_start","ts":"2026-06-
|
|
2
|
-
{"type":"compile_success","ts":"2026-06-
|
|
3
|
-
{"type":"compile_start","ts":"2026-06-
|
|
4
|
-
{"type":"compile_success","ts":"2026-06-
|
|
1
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:28.405Z","command":"start","browser":"firefox"}
|
|
2
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:28.439Z","command":"start","browser":"firefox","durationMs":35,"errorCount":0}
|
|
3
|
+
{"type":"compile_start","ts":"2026-06-30T21:25:50.037Z","command":"start","browser":"firefox"}
|
|
4
|
+
{"type":"compile_success","ts":"2026-06-30T21:25:50.081Z","command":"start","browser":"firefox","durationMs":47,"errorCount":0}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"command": "start",
|
|
4
4
|
"browser": "firefox",
|
|
5
|
-
"runId": "
|
|
6
|
-
"startedAt": "2026-06-
|
|
5
|
+
"runId": "mr15opbv-m3immtwe",
|
|
6
|
+
"startedAt": "2026-06-30T21:25:50.011Z",
|
|
7
7
|
"distPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/dist/firefox",
|
|
8
8
|
"manifestPath": "/home/runner/work/extension.js/extension.js/extensions/extension-js-theme/manifest.json",
|
|
9
9
|
"port": null,
|
|
10
10
|
"controlPort": null,
|
|
11
11
|
"status": "ready",
|
|
12
|
-
"pid":
|
|
13
|
-
"ts": "2026-06-
|
|
14
|
-
"compiledAt": "2026-06-
|
|
12
|
+
"pid": 4527,
|
|
13
|
+
"ts": "2026-06-30T21:25:50.081Z",
|
|
14
|
+
"compiledAt": "2026-06-30T21:25:50.081Z",
|
|
15
15
|
"errors": []
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"runtime"
|
|
35
35
|
],
|
|
36
36
|
"name": "extension-develop",
|
|
37
|
-
"version": "4.0.
|
|
37
|
+
"version": "4.0.1",
|
|
38
38
|
"description": "Develop, build, preview, and package Extension.js projects.",
|
|
39
39
|
"author": {
|
|
40
40
|
"name": "Cezar Augusto",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"@types/chrome": "^0.1.33",
|
|
130
130
|
"@types/cross-spawn": "^6.0.6",
|
|
131
131
|
"@types/loader-utils": "^3.0.0",
|
|
132
|
-
"@types/node": "^
|
|
132
|
+
"@types/node": "^26",
|
|
133
133
|
"@types/sass-loader": "8.0.10",
|
|
134
134
|
"@types/webextension-polyfill": "0.12.4",
|
|
135
135
|
"@types/ws": "^8.18.1",
|