web-ext 7.1.1 → 7.3.0
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 +2 -2
- package/lib/cmd/build.js +18 -36
- package/lib/cmd/build.js.map +1 -1
- package/lib/cmd/docs.js +1 -0
- package/lib/cmd/docs.js.map +1 -1
- package/lib/cmd/index.js +3 -5
- package/lib/cmd/index.js.map +1 -1
- package/lib/cmd/lint.js +28 -17
- package/lib/cmd/lint.js.map +1 -1
- package/lib/cmd/run.js +19 -23
- package/lib/cmd/run.js.map +1 -1
- package/lib/cmd/sign.js +80 -47
- package/lib/cmd/sign.js.map +1 -1
- package/lib/config.js +18 -29
- package/lib/config.js.map +1 -1
- package/lib/errors.js +8 -18
- package/lib/errors.js.map +1 -1
- package/lib/extension-runners/base.js +2 -0
- package/lib/extension-runners/base.js.map +1 -1
- package/lib/extension-runners/chromium.js +36 -62
- package/lib/extension-runners/chromium.js.map +1 -1
- package/lib/extension-runners/firefox-android.js +65 -102
- package/lib/extension-runners/firefox-android.js.map +1 -1
- package/lib/extension-runners/firefox-desktop.js +30 -42
- package/lib/extension-runners/firefox-desktop.js.map +1 -1
- package/lib/extension-runners/index.js +33 -46
- package/lib/extension-runners/index.js.map +1 -1
- package/lib/firefox/index.js +75 -47
- package/lib/firefox/index.js.map +1 -1
- package/lib/firefox/package-identifiers.js +2 -0
- package/lib/firefox/package-identifiers.js.map +1 -1
- package/lib/firefox/preferences.js +14 -15
- package/lib/firefox/preferences.js.map +1 -1
- package/lib/firefox/rdp-client.js +16 -64
- package/lib/firefox/rdp-client.js.map +1 -1
- package/lib/firefox/remote.js +15 -30
- package/lib/firefox/remote.js.map +1 -1
- package/lib/main.js +4 -2
- package/lib/main.js.map +1 -1
- package/lib/program.js +75 -77
- package/lib/program.js.map +1 -1
- package/lib/util/adb.js +33 -63
- package/lib/util/adb.js.map +1 -1
- package/lib/util/artifacts.js +3 -5
- package/lib/util/artifacts.js.map +1 -1
- package/lib/util/desktop-notifier.js +1 -0
- package/lib/util/desktop-notifier.js.map +1 -1
- package/lib/util/file-exists.js +1 -2
- package/lib/util/file-exists.js.map +1 -1
- package/lib/util/file-filter.js +17 -19
- package/lib/util/file-filter.js.map +1 -1
- package/lib/util/is-directory.js +2 -1
- package/lib/util/is-directory.js.map +1 -1
- package/lib/util/logger.js +7 -12
- package/lib/util/logger.js.map +1 -1
- package/lib/util/manifest.js +6 -13
- package/lib/util/manifest.js.map +1 -1
- package/lib/util/promisify.js +7 -3
- package/lib/util/promisify.js.map +1 -1
- package/lib/util/stdin.js +2 -0
- package/lib/util/stdin.js.map +1 -1
- package/lib/util/submit-addon.js +288 -0
- package/lib/util/submit-addon.js.map +1 -0
- package/lib/util/temp-dir.js +8 -18
- package/lib/util/temp-dir.js.map +1 -1
- package/lib/util/updates.js +1 -1
- package/lib/util/updates.js.map +1 -1
- package/lib/watcher.js +14 -9
- package/lib/watcher.js.map +1 -1
- package/package.json +19 -18
package/lib/watcher.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
|
|
1
2
|
import { fs } from 'mz';
|
|
2
3
|
import Watchpack from 'watchpack';
|
|
3
4
|
import debounce from 'debounce';
|
|
4
5
|
import { UsageError } from './errors.js';
|
|
5
6
|
import { createLogger } from './util/logger.js';
|
|
6
|
-
const log = createLogger(import.meta.url);
|
|
7
|
+
const log = createLogger(import.meta.url);
|
|
8
|
+
|
|
9
|
+
// onSourceChange types and implementation
|
|
7
10
|
|
|
8
11
|
export default function onSourceChange({
|
|
9
12
|
sourceDir,
|
|
@@ -17,12 +20,14 @@ export default function onSourceChange({
|
|
|
17
20
|
// When running on Windows, transform the ignored paths and globs
|
|
18
21
|
// as Watchpack does translate the changed files path internally
|
|
19
22
|
// (See https://github.com/webpack/watchpack/blob/v2.1.1/lib/DirectoryWatcher.js#L99-L103).
|
|
20
|
-
const ignored = watchIgnored && process.platform === 'win32' ? watchIgnored.map(it => it.replace(/\\/g, '/')) : watchIgnored;
|
|
23
|
+
const ignored = watchIgnored && process.platform === 'win32' ? watchIgnored.map(it => it.replace(/\\/g, '/')) : watchIgnored;
|
|
21
24
|
|
|
25
|
+
// TODO: For network disks, we would need to add {poll: true}.
|
|
22
26
|
const watcher = ignored ? new Watchpack({
|
|
23
27
|
ignored
|
|
24
|
-
}) : new Watchpack();
|
|
28
|
+
}) : new Watchpack();
|
|
25
29
|
|
|
30
|
+
// Allow multiple files to be changed before reloading the extension
|
|
26
31
|
const executeImmediately = false;
|
|
27
32
|
onChange = debounce(onChange, debounceTime, executeImmediately);
|
|
28
33
|
watcher.on('change', filePath => {
|
|
@@ -36,30 +41,30 @@ export default function onSourceChange({
|
|
|
36
41
|
log.debug(`Watching ${watchFile ? watchFile.join(',') : sourceDir} for changes`);
|
|
37
42
|
const watchedDirs = [];
|
|
38
43
|
const watchedFiles = [];
|
|
39
|
-
|
|
40
44
|
if (watchFile) {
|
|
41
45
|
for (const filePath of watchFile) {
|
|
42
46
|
if (fs.existsSync(filePath) && !fs.lstatSync(filePath).isFile()) {
|
|
43
47
|
throw new UsageError('Invalid --watch-file value: ' + `"${filePath}" is not a file.`);
|
|
44
48
|
}
|
|
45
|
-
|
|
46
49
|
watchedFiles.push(filePath);
|
|
47
50
|
}
|
|
48
51
|
} else {
|
|
49
52
|
watchedDirs.push(sourceDir);
|
|
50
53
|
}
|
|
51
|
-
|
|
52
54
|
watcher.watch({
|
|
53
55
|
files: watchedFiles,
|
|
54
56
|
directories: watchedDirs,
|
|
55
57
|
missing: [],
|
|
56
58
|
startTime: Date.now()
|
|
57
|
-
});
|
|
58
|
-
// https://github.com/mozilla/web-ext/issues/225
|
|
59
|
+
});
|
|
59
60
|
|
|
61
|
+
// TODO: support interrupting the watcher on Windows.
|
|
62
|
+
// https://github.com/mozilla/web-ext/issues/225
|
|
60
63
|
process.on('SIGINT', () => watcher.close());
|
|
61
64
|
return watcher;
|
|
62
|
-
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// proxyFileChanges types and implementation.
|
|
63
68
|
|
|
64
69
|
export function proxyFileChanges({
|
|
65
70
|
artifactsDir,
|
package/lib/watcher.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"watcher.js","names":["fs","Watchpack","debounce","UsageError","createLogger","log","import","meta","url","onSourceChange","sourceDir","watchFile","watchIgnored","artifactsDir","onChange","shouldWatchFile","debounceTime","ignored","process","platform","map","it","replace","watcher","executeImmediately","on","filePath","proxyFileChanges","debug","join","watchedDirs","watchedFiles","existsSync","lstatSync","isFile","push","watch","files","directories","missing","startTime","Date","now","close","indexOf","toTimeString"],"sources":["../src/watcher.js"],"sourcesContent":["/* @flow */\nimport {fs} from 'mz';\nimport Watchpack from 'watchpack';\nimport debounce from 'debounce';\n\nimport { UsageError } from './errors.js';\nimport {createLogger} from './util/logger.js';\n\nconst log = createLogger(import.meta.url);\n\n\n// onSourceChange types and implementation\n\nexport type ShouldWatchFn = (filePath: string) => boolean;\n\nexport type OnChangeFn = () => any;\n\nexport type OnSourceChangeParams = {|\n sourceDir: string,\n watchFile?: Array<string>,\n watchIgnored?: Array<string>,\n artifactsDir: string,\n onChange: OnChangeFn,\n shouldWatchFile: ShouldWatchFn,\n debounceTime?: number,\n|};\n\nexport type OnSourceChangeFn = (params: OnSourceChangeParams) => Watchpack;\n\nexport default function onSourceChange(\n {\n sourceDir,\n watchFile,\n watchIgnored,\n artifactsDir,\n onChange,\n shouldWatchFile,\n debounceTime = 500,\n }: OnSourceChangeParams\n): Watchpack {\n // When running on Windows, transform the ignored paths and globs\n // as Watchpack does translate the changed files path internally\n // (See https://github.com/webpack/watchpack/blob/v2.1.1/lib/DirectoryWatcher.js#L99-L103).\n const ignored = (watchIgnored && process.platform === 'win32')\n ? watchIgnored.map((it) => it.replace(/\\\\/g, '/'))\n : watchIgnored;\n\n // TODO: For network disks, we would need to add {poll: true}.\n const watcher = ignored ?\n new Watchpack({ignored}) :\n new Watchpack();\n\n // Allow multiple files to be changed before reloading the extension\n const executeImmediately = false;\n onChange = debounce(onChange, debounceTime, executeImmediately);\n\n watcher.on('change', (filePath) => {\n proxyFileChanges({artifactsDir, onChange, filePath, shouldWatchFile});\n });\n\n log.debug(\n `Watching ${watchFile ? watchFile.join(',') : sourceDir} for changes`\n );\n\n const watchedDirs = [];\n const watchedFiles = [];\n\n if (watchFile) {\n for (const filePath of watchFile) {\n if (fs.existsSync(filePath) && !fs.lstatSync(filePath).isFile()) {\n throw new UsageError('Invalid --watch-file value: ' +\n `\"${filePath}\" is not a file.`);\n }\n\n watchedFiles.push(filePath);\n }\n } else {\n watchedDirs.push(sourceDir);\n }\n\n watcher.watch({\n files: watchedFiles,\n directories: watchedDirs,\n missing: [],\n startTime: Date.now(),\n });\n\n // TODO: support interrupting the watcher on Windows.\n // https://github.com/mozilla/web-ext/issues/225\n process.on('SIGINT', () => watcher.close());\n return watcher;\n}\n\n\n// proxyFileChanges types and implementation.\n\nexport type ProxyFileChangesParams = {|\n artifactsDir: string,\n onChange: OnChangeFn,\n filePath: string,\n shouldWatchFile: ShouldWatchFn,\n|};\n\nexport function proxyFileChanges(\n {artifactsDir, onChange, filePath, shouldWatchFile}: ProxyFileChangesParams\n): void {\n if (filePath.indexOf(artifactsDir) === 0 || !shouldWatchFile(filePath)) {\n log.debug(`Ignoring change to: ${filePath}`);\n } else {\n log.debug(`Changed: ${filePath}`);\n log.debug(`Last change detection: ${(new Date()).toTimeString()}`);\n onChange();\n }\n}\n"],"mappings":"AACA,SAAQA,
|
|
1
|
+
{"version":3,"file":"watcher.js","names":["fs","Watchpack","debounce","UsageError","createLogger","log","import","meta","url","onSourceChange","sourceDir","watchFile","watchIgnored","artifactsDir","onChange","shouldWatchFile","debounceTime","ignored","process","platform","map","it","replace","watcher","executeImmediately","on","filePath","proxyFileChanges","debug","join","watchedDirs","watchedFiles","existsSync","lstatSync","isFile","push","watch","files","directories","missing","startTime","Date","now","close","indexOf","toTimeString"],"sources":["../src/watcher.js"],"sourcesContent":["/* @flow */\nimport {fs} from 'mz';\nimport Watchpack from 'watchpack';\nimport debounce from 'debounce';\n\nimport { UsageError } from './errors.js';\nimport {createLogger} from './util/logger.js';\n\nconst log = createLogger(import.meta.url);\n\n\n// onSourceChange types and implementation\n\nexport type ShouldWatchFn = (filePath: string) => boolean;\n\nexport type OnChangeFn = () => any;\n\nexport type OnSourceChangeParams = {|\n sourceDir: string,\n watchFile?: Array<string>,\n watchIgnored?: Array<string>,\n artifactsDir: string,\n onChange: OnChangeFn,\n shouldWatchFile: ShouldWatchFn,\n debounceTime?: number,\n|};\n\nexport type OnSourceChangeFn = (params: OnSourceChangeParams) => Watchpack;\n\nexport default function onSourceChange(\n {\n sourceDir,\n watchFile,\n watchIgnored,\n artifactsDir,\n onChange,\n shouldWatchFile,\n debounceTime = 500,\n }: OnSourceChangeParams\n): Watchpack {\n // When running on Windows, transform the ignored paths and globs\n // as Watchpack does translate the changed files path internally\n // (See https://github.com/webpack/watchpack/blob/v2.1.1/lib/DirectoryWatcher.js#L99-L103).\n const ignored = (watchIgnored && process.platform === 'win32')\n ? watchIgnored.map((it) => it.replace(/\\\\/g, '/'))\n : watchIgnored;\n\n // TODO: For network disks, we would need to add {poll: true}.\n const watcher = ignored ?\n new Watchpack({ignored}) :\n new Watchpack();\n\n // Allow multiple files to be changed before reloading the extension\n const executeImmediately = false;\n onChange = debounce(onChange, debounceTime, executeImmediately);\n\n watcher.on('change', (filePath) => {\n proxyFileChanges({artifactsDir, onChange, filePath, shouldWatchFile});\n });\n\n log.debug(\n `Watching ${watchFile ? watchFile.join(',') : sourceDir} for changes`\n );\n\n const watchedDirs = [];\n const watchedFiles = [];\n\n if (watchFile) {\n for (const filePath of watchFile) {\n if (fs.existsSync(filePath) && !fs.lstatSync(filePath).isFile()) {\n throw new UsageError('Invalid --watch-file value: ' +\n `\"${filePath}\" is not a file.`);\n }\n\n watchedFiles.push(filePath);\n }\n } else {\n watchedDirs.push(sourceDir);\n }\n\n watcher.watch({\n files: watchedFiles,\n directories: watchedDirs,\n missing: [],\n startTime: Date.now(),\n });\n\n // TODO: support interrupting the watcher on Windows.\n // https://github.com/mozilla/web-ext/issues/225\n process.on('SIGINT', () => watcher.close());\n return watcher;\n}\n\n\n// proxyFileChanges types and implementation.\n\nexport type ProxyFileChangesParams = {|\n artifactsDir: string,\n onChange: OnChangeFn,\n filePath: string,\n shouldWatchFile: ShouldWatchFn,\n|};\n\nexport function proxyFileChanges(\n {artifactsDir, onChange, filePath, shouldWatchFile}: ProxyFileChangesParams\n): void {\n if (filePath.indexOf(artifactsDir) === 0 || !shouldWatchFile(filePath)) {\n log.debug(`Ignoring change to: ${filePath}`);\n } else {\n log.debug(`Changed: ${filePath}`);\n log.debug(`Last change detection: ${(new Date()).toTimeString()}`);\n onChange();\n }\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-ext",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "A command line tool to help build, run, and test web extensions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"opera"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@babel/runtime": "7.
|
|
58
|
+
"@babel/runtime": "7.19.4",
|
|
59
59
|
"@devicefarmer/adbkit": "3.2.3",
|
|
60
|
-
"addons-linter": "5.
|
|
60
|
+
"addons-linter": "5.18.0",
|
|
61
61
|
"bunyan": "1.8.15",
|
|
62
62
|
"camelcase": "7.0.0",
|
|
63
63
|
"chrome-launcher": "0.15.1",
|
|
@@ -66,36 +66,37 @@
|
|
|
66
66
|
"es6-error": "4.1.1",
|
|
67
67
|
"firefox-profile": "4.2.2",
|
|
68
68
|
"fs-extra": "10.1.0",
|
|
69
|
-
"fx-runner": "1.
|
|
69
|
+
"fx-runner": "1.3.0",
|
|
70
70
|
"import-fresh": "3.3.0",
|
|
71
|
+
"jose": "4.10.0",
|
|
71
72
|
"mkdirp": "1.0.4",
|
|
72
73
|
"multimatch": "6.0.0",
|
|
73
74
|
"mz": "2.7.0",
|
|
75
|
+
"node-fetch": "3.2.10",
|
|
74
76
|
"node-notifier": "10.0.1",
|
|
75
77
|
"open": "8.4.0",
|
|
76
78
|
"parse-json": "6.0.2",
|
|
77
79
|
"promise-toolbox": "0.21.0",
|
|
78
|
-
"sign-addon": "5.
|
|
80
|
+
"sign-addon": "5.1.0",
|
|
79
81
|
"source-map-support": "0.5.21",
|
|
80
82
|
"strip-bom": "5.0.0",
|
|
81
|
-
"strip-json-comments": "
|
|
83
|
+
"strip-json-comments": "5.0.0",
|
|
82
84
|
"tmp": "0.2.1",
|
|
83
85
|
"update-notifier": "6.0.2",
|
|
84
86
|
"watchpack": "2.4.0",
|
|
85
|
-
"ws": "8.
|
|
86
|
-
"yargs": "17.
|
|
87
|
+
"ws": "8.9.0",
|
|
88
|
+
"yargs": "17.6.0",
|
|
87
89
|
"zip-dir": "2.0.0"
|
|
88
90
|
},
|
|
89
91
|
"devDependencies": {
|
|
90
|
-
"@babel/cli": "7.
|
|
91
|
-
"@babel/core": "7.
|
|
92
|
-
"@babel/eslint-parser": "7.
|
|
93
|
-
"@babel/preset-env": "7.
|
|
92
|
+
"@babel/cli": "7.19.3",
|
|
93
|
+
"@babel/core": "7.19.3",
|
|
94
|
+
"@babel/eslint-parser": "7.19.1",
|
|
95
|
+
"@babel/preset-env": "7.19.4",
|
|
94
96
|
"@babel/preset-flow": "7.18.6",
|
|
95
|
-
"@babel/register": "7.18.
|
|
96
|
-
"@commitlint/cli": "17.
|
|
97
|
-
"@commitlint/config-conventional": "17.0
|
|
98
|
-
"babel-loader": "8.2.5",
|
|
97
|
+
"@babel/register": "7.18.9",
|
|
98
|
+
"@commitlint/cli": "17.1.2",
|
|
99
|
+
"@commitlint/config-conventional": "17.1.0",
|
|
99
100
|
"babel-plugin-istanbul": "6.1.1",
|
|
100
101
|
"babel-plugin-transform-inline-environment-variables": "0.4.4",
|
|
101
102
|
"chai": "4.3.6",
|
|
@@ -103,7 +104,7 @@
|
|
|
103
104
|
"copy-dir": "1.3.0",
|
|
104
105
|
"cross-env": "7.0.3",
|
|
105
106
|
"deepcopy": "2.1.0",
|
|
106
|
-
"eslint": "8.
|
|
107
|
+
"eslint": "8.25.0",
|
|
107
108
|
"eslint-plugin-async-await": "0.0.0",
|
|
108
109
|
"eslint-plugin-ft-flow": "2.0.1",
|
|
109
110
|
"eslint-plugin-import": "2.26.0",
|
|
@@ -114,7 +115,7 @@
|
|
|
114
115
|
"nyc": "15.1.0",
|
|
115
116
|
"prettyjson": "1.2.5",
|
|
116
117
|
"shelljs": "0.8.5",
|
|
117
|
-
"sinon": "14.0.
|
|
118
|
+
"sinon": "14.0.1",
|
|
118
119
|
"testdouble": "3.16.6",
|
|
119
120
|
"yauzl": "2.10.0"
|
|
120
121
|
},
|