extension 4.1.19 → 4.1.21
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/README.md +23 -20
- package/bin/extension.cjs +2 -0
- package/dist/84.cjs +2 -1
- package/dist/browsers.cjs +179 -95
- package/dist/cli.cjs +454 -238
- package/dist/extension/browsers/__spec__/safari-fake-tools.d.ts +27 -0
- package/dist/extension/browsers/browsers-lib/constants.d.ts +0 -2
- package/dist/extension/browsers/browsers-lib/messages.d.ts +2 -1
- package/dist/extension/browsers/browsers-lib/resolve-profile.d.ts +0 -35
- package/dist/extension/browsers/browsers-lib/write-json-atomic.d.ts +1 -0
- package/dist/extension/browsers/browsers-types.d.ts +0 -89
- package/dist/extension/browsers/index.d.ts +1 -29
- package/dist/extension/browsers/run-chromium/chromium-launch/extension-output-path.d.ts +0 -6
- package/dist/extension/browsers/run-chromium/chromium-launch/index.d.ts +0 -9
- package/dist/extension/browsers/run-chromium/chromium-types.d.ts +0 -11
- package/dist/extension/browsers/run-safari/safari-launch/index.d.ts +2 -7
- package/dist/extension/browsers/run-safari/safari-launch/tools.d.ts +17 -0
- package/dist/extension/browsers/run-safari/safari-packager.d.ts +2 -16
- package/dist/extension/browsers/run-safari/safari-types.d.ts +2 -1
- package/dist/extension/commands/act.d.ts +0 -6
- package/dist/extension/commands/doctor.d.ts +0 -7
- package/dist/extension/commands/publish.d.ts +0 -6
- package/dist/extension/config-types.d.ts +5 -2
- package/dist/extension/helpers/cli-explicit.d.ts +0 -15
- package/dist/extension/helpers/messages.d.ts +7 -0
- package/dist/extension/helpers/node-version-guard.d.ts +7 -2
- package/dist/extension/helpers/template-catalog.d.ts +1 -1
- package/dist/extension/helpers/template-corpus.generated.d.ts +1 -1
- package/dist/extension/helpers/vendors.d.ts +1 -0
- package/package.json +4 -6
|
@@ -2,6 +2,7 @@ export type Browser = 'chrome' | 'edge' | 'firefox' | 'chromium' | 'chromium-bas
|
|
|
2
2
|
export declare function isSafariVendor(value: string): boolean;
|
|
3
3
|
export declare const SUPPORTED_BROWSER_TARGETS: string[];
|
|
4
4
|
export declare const BROWSER_TARGETS_HELP: string;
|
|
5
|
+
export declare const SESSION_BROWSER_TARGETS_HELP: string;
|
|
5
6
|
export declare const NO_SAFARI_BROWSER_TARGETS_HELP: string;
|
|
6
7
|
export declare function parseOptionalBoolean(value?: string): boolean;
|
|
7
8
|
export declare const vendors: (browser?: Browser | 'all') => string[];
|
package/package.json
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"extension": "./bin/extension.cjs"
|
|
39
39
|
},
|
|
40
40
|
"name": "extension",
|
|
41
|
-
"version": "4.1.
|
|
41
|
+
"version": "4.1.21",
|
|
42
42
|
"description": "The cross-browser extension framework. Build Chrome, Edge, Firefox, and Safari extensions with no build configuration.",
|
|
43
43
|
"homepage": "https://extension.js.org/",
|
|
44
44
|
"bugs": {
|
|
@@ -98,7 +98,6 @@
|
|
|
98
98
|
"brave-location": "3.1.1",
|
|
99
99
|
"chrome-location2": "4.1.1",
|
|
100
100
|
"chromium-location": "2.1.2",
|
|
101
|
-
"cross-spawn": "^7.0.6",
|
|
102
101
|
"edge-location": "2.3.1",
|
|
103
102
|
"firefox-location2": "3.1.1",
|
|
104
103
|
"librewolf-location": "1.2.1",
|
|
@@ -106,9 +105,9 @@
|
|
|
106
105
|
"vivaldi-location2": "2.1.1",
|
|
107
106
|
"waterfox-location": "2.1.1",
|
|
108
107
|
"yandex-location": "2.1.1",
|
|
109
|
-
"extension-create": "4.1.
|
|
110
|
-
"extension-develop": "4.1.
|
|
111
|
-
"extension-install": "4.1.
|
|
108
|
+
"extension-create": "4.1.21",
|
|
109
|
+
"extension-develop": "4.1.21",
|
|
110
|
+
"extension-install": "4.1.21",
|
|
112
111
|
"commander": "^15.0.0",
|
|
113
112
|
"pintor": "0.3.0",
|
|
114
113
|
"semver": "^7.7.3",
|
|
@@ -122,7 +121,6 @@
|
|
|
122
121
|
},
|
|
123
122
|
"devDependencies": {
|
|
124
123
|
"@rslib/core": "^1.0.0",
|
|
125
|
-
"@types/cross-spawn": "^6.0.6",
|
|
126
124
|
"@types/semver": "^7.7.1",
|
|
127
125
|
"@types/ws": "^8.18.1",
|
|
128
126
|
"webextension-polyfill": "^0.12.0",
|