web-ext 8.0.0 → 8.1.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 +18 -8
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -18,31 +18,33 @@ cross-platform way. Initially, it will provide a streamlined experience for deve
|
|
|
18
18
|
|
|
19
19
|
Here are the commands you can run. Click on each one for detailed documentation or use `--help` on the command line, such as `web-ext build --help`.
|
|
20
20
|
|
|
21
|
-
- [`run`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference
|
|
21
|
+
- [`run`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#web-ext-run)
|
|
22
22
|
- Run the extension
|
|
23
|
-
- [`lint`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference
|
|
23
|
+
- [`lint`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#web-ext-lint)
|
|
24
24
|
- Validate the extension source
|
|
25
|
-
- [`sign`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference
|
|
25
|
+
- [`sign`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#web-ext-sign)
|
|
26
26
|
- Sign the extension so it can be installed in Firefox
|
|
27
|
-
- [`build`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference
|
|
27
|
+
- [`build`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#web-ext-build)
|
|
28
28
|
- Create an extension package from source
|
|
29
|
-
- [`docs`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference
|
|
29
|
+
- [`docs`](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#web-ext-docs)
|
|
30
30
|
- Open the `web-ext` documentation in a browser
|
|
31
31
|
|
|
32
|
-
## Installation
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
### Using npm
|
|
33
35
|
|
|
34
36
|
First, make sure you are running the current
|
|
35
37
|
[LTS](https://github.com/nodejs/LTS)
|
|
36
38
|
(long term support) version of
|
|
37
39
|
[NodeJS](https://nodejs.org/en/).
|
|
38
40
|
|
|
39
|
-
|
|
41
|
+
#### Global command
|
|
40
42
|
|
|
41
43
|
You can install this command onto your machine globally with:
|
|
42
44
|
|
|
43
45
|
npm install --global web-ext
|
|
44
46
|
|
|
45
|
-
|
|
47
|
+
#### For your project
|
|
46
48
|
|
|
47
49
|
Alternatively, you can install this command as one of the
|
|
48
50
|
[`devDependencies`](https://docs.npmjs.com/files/package.json#devdependencies)
|
|
@@ -70,6 +72,14 @@ version on the command line with this:
|
|
|
70
72
|
|
|
71
73
|
npm run start:firefox -- --firefox=nightly
|
|
72
74
|
|
|
75
|
+
### Using Homebrew (unofficial)
|
|
76
|
+
|
|
77
|
+
The community maintains a `web-ext` formula.
|
|
78
|
+
|
|
79
|
+
```sh
|
|
80
|
+
brew install web-ext
|
|
81
|
+
```
|
|
82
|
+
|
|
73
83
|
## Installation from source
|
|
74
84
|
|
|
75
85
|
You'll need:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-ext",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.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",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"opera"
|
|
59
59
|
],
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@babel/runtime": "7.24.
|
|
61
|
+
"@babel/runtime": "7.24.7",
|
|
62
62
|
"@devicefarmer/adbkit": "3.2.6",
|
|
63
|
-
"addons-linter": "6.
|
|
63
|
+
"addons-linter": "6.29.0",
|
|
64
64
|
"bunyan": "1.8.15",
|
|
65
65
|
"camelcase": "8.0.0",
|
|
66
66
|
"chrome-launcher": "0.15.1",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"fs-extra": "11.2.0",
|
|
72
72
|
"fx-runner": "1.4.0",
|
|
73
73
|
"https-proxy-agent": "^7.0.0",
|
|
74
|
-
"jose": "4.
|
|
74
|
+
"jose": "5.4.0",
|
|
75
75
|
"jszip": "3.10.1",
|
|
76
76
|
"mkdirp": "1.0.4",
|
|
77
77
|
"multimatch": "6.0.0",
|
|
@@ -92,17 +92,17 @@
|
|
|
92
92
|
"zip-dir": "2.0.0"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@babel/cli": "7.24.
|
|
96
|
-
"@babel/core": "7.24.
|
|
97
|
-
"@babel/eslint-parser": "7.24.
|
|
98
|
-
"@babel/preset-env": "7.24.
|
|
95
|
+
"@babel/cli": "7.24.7",
|
|
96
|
+
"@babel/core": "7.24.7",
|
|
97
|
+
"@babel/eslint-parser": "7.24.7",
|
|
98
|
+
"@babel/preset-env": "7.24.7",
|
|
99
99
|
"@babel/register": "7.24.6",
|
|
100
100
|
"@commitlint/cli": "19.3.0",
|
|
101
101
|
"@commitlint/config-conventional": "19.2.2",
|
|
102
102
|
"babel-plugin-istanbul": "6.1.1",
|
|
103
103
|
"babel-plugin-transform-inline-environment-variables": "0.4.4",
|
|
104
104
|
"chai": "4.3.10",
|
|
105
|
-
"chai-as-promised": "
|
|
105
|
+
"chai-as-promised": "8.0.0",
|
|
106
106
|
"copy-dir": "1.3.0",
|
|
107
107
|
"crc-32": "1.2.2",
|
|
108
108
|
"cross-env": "7.0.3",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
"git-rev-sync": "3.0.2",
|
|
114
114
|
"html-entities": "2.5.2",
|
|
115
115
|
"mocha": "10.4.0",
|
|
116
|
-
"nyc": "
|
|
117
|
-
"prettier": "3.2
|
|
116
|
+
"nyc": "17.0.0",
|
|
117
|
+
"prettier": "3.3.2",
|
|
118
118
|
"pretty-quick": "4.0.0",
|
|
119
119
|
"prettyjson": "1.2.5",
|
|
120
120
|
"shelljs": "0.8.5",
|