Hi! Thanks for your interest in helping make
WebExtension
development more awesome by contributing to the web-ext
tool. Here are links to all the sections in this document:
- Picking an issue
- Installation
- Documentation
If you're looking for a small task to work on so you can get familiar with the process of contributing patches, have a read through these good first bugs.
If you'd like to work on a bug, please comment on it to let the maintainers know. If someone else has already commented and taken up that bug, please refrain from working on it and submitting a PR without asking the maintainers as it leads to unnecessary duplication of effort.
To get started on a patch, first install web-ext
from source.
Your one stop command to continuously build, run tests, check for JavaScript syntax problems is:
npm start
The other commands below are just variations on this.
To run the entire suite of tests once and exit, type:
npm test
This is the same as the npm start
command but it won't re-run automatically as
you edit files. It's also a little slower because there's no caching.
Unlike npm start
, it will execute the functional tests which may
reveal unexpected breakage.
Instead of running the entire suite, you can run a single test by invoking
the mocha
executable directly with the -f
option to filter by test
description. For example, if the test you'd like to run is defined in
tests/test.program.js
and is described as
"turns sourceDir into an absolute path" then you could run it like this:
./node_modules/.bin/mocha -r @babel/register tests/unit/test.program.js -f "sourceDir"
You can enter the Node debugger by
directly invoking the mocha
executable with the debug
command. For example,
if the test you want to debug is defined in tests/test.program.js
then you
could enter the debugger like this:
./node_modules/.bin/mocha debug -r @babel/register tests/unit/test.program.js
You could also put the debugger
statement somewhere in the code to set a
breakpoint.
Type npm run build
to build a new version of the libraries used by the
./bin/web-ext
command. When successful, you will see newly built files in
the ./dist/
directory. This is done automatically by npm start
.
By default, npm run build creates a development build of web-ext. To create a
production build, use the NODE_ENV variable like this:
NODE_ENV=production npm run build
Type npm run lint
to make sure there are no syntax errors or other house
keeping problems in the source code.
If you are deep down some rabbit hole, you can skip lint checks temporarily
by setting $SKIP_LINT
in the environment. Here is an example of running
the test suite without lint checks:
SKIP_LINT=1 npm test
You can generate code coverage reports every time you run the test suite
by setting $COVERAGE
in the environment. This will show you if you forgot
to add a test to cover a new part of the program.
Here is an example of running the test suite with code coverage:
COVERAGE=y npm test
You can also generate coverage reports continously as you edit files:
COVERAGE=y npm start
Once a report has been generated, it can be found in the ./coverage
directory.
This section will show you how to add a new commands and options.
web-ext
relies on yargs to parse its commands and
their options. The commands are defined in src/program.js
in the main
function.
For example, the build
command is defined like this:
program.command(
'build',
'Create a web extension package from source',
commands.build,
{
'as-needed': {
describe: 'Watch for file changes and re-build as needed',
type: 'boolean',
},
},
);
The first argument to program.command()
is the command name, the second is the
description (shown for --help
), the third is a callback that executes the
command, and the last is an object defining all available options.
The cmd
directory is where all command callbacks are stored. In this example,
commands.build
is defined in src/cmd/build.js
but you can always trace the
imports to find each one.
When web-ext
executes a command callback, it passes an object containing all option
values, including global options (such as --source-dir
). Each option key is
converted from hyphenated words to camelCase
words. So, the
--as-needed
and --source-dir
options would be passed like:
commands
.build({ asNeeded: true, sourceDir: './src/extension' })
.then((result) => {
// ...
});
To add a command option, locate the relevant command definition (i.e. run
)
and specify a new option definition as an object.
Here is an example of adding the --file-path
option:
program
// other commands...
.command('run', 'Run the web extension', commands.run, {
// other options...
'file-path': {
describe: 'An absolute file path.',
alias: ['fp'],
demandOption: false,
requiresArg: true,
type: 'string',
},
});
This option can be used like web-ext run --file-path=./path/to/file
or
--fp=./path/to/file
. Since Yargs can be pretty powerful yet not completely
intuitive at times, you may need to dig into the
docs. Any key that you can pass to
yargs.option
is a key you can pass to each option object when calling program.command()
.
When you are developing a fix or feature for the web-ext sign
command it's wise
to use a development version of the
signing API
so as not to disturb any real addons.mozilla.org
data.
-
Read through how to use the web-ext sign command so you understand it.
-
Create an API key on the development version of the Manage API Keys page. You will need to register an account if you don't have one already. Make sure you use a password that is different from your production account.
-
Let's say your generated JWT issuer is
user:123
and your JWT secret isabc1234
. Here is an example of a command you can run that will use the development API:web-ext sign --api-key user:123 --api-secret abc1234 \ --amo-base-url https://addons-dev.allizom.org/api/v5/
-
Signed add-ons created with the development API are hard to install into Firefox. If you need to test installation of add-ons (you probably don't) then you'd have to use our staging API server. File an issue for information on that.
When you create a pull request for a new fix or feature, be sure to mention the issue number for what you're working on. The best way to do it is to mention the issue like this at the top of your description:
Fixes #123
The issue number in this case is "123." The word Fixes is magical; github will automatically close the issue when your pull request is merged.
Make sure to run the following command to automatically format all your changes before submitting your pull request:
npm run prettier-dev
A continuous integration job will verify that the code is formatted and will alert you when it isn't.
The subject of the pull requests and commit messages must adhere to the Angular style of semantic messages. This allows us to auto-generate a changelog without too much noise in it. Additionally, write the commit message in past tense so it will read naturally as a historic changelog.
Examples:
feat: Added a systematic dysfunctioner
fix: Fixed hang in systematic dysfunctioner
docs: Improved contributor docs
style: Added no-console linting, cleaned up code
refactor: Split out dysfunctioner for testability
perf: Systematic dysfunctioner is now 2x faster
test: Added more tests for systematic dysfunctioner
chore: Upgraded yargs to 3.x.x
If you want to use scopes then it would look more like:
feat(dysfunctioner): Added --quiet option
.
The commit message formatting described above is automatically enforced each time you commit to your work branch to make continuous integration smoother.
To release a new version of web-ext
, follow these steps:
- Pull from master to make sure you're up to date.
- Bump the version in
package.json
. - Commit and push the version change (or create and merge a pull request for it).
- Create a changelog by running
npm run changelog
. This will output Markdown of all unreleased changes. - Create a new release
and paste in the changelog Markdown.
It may require some manual editing. For example, some commit messages
might have been truncated.
Title the github release after the new version you just
added to
package.json
in the previous commit (example:1.0.4
). - When you publish the release, github creates a tag. When TravisCI builds the tag, it will automatically publish the package to npm.
- After the package has been published, check the needs: docs label to see if the user docs need updating.
The web-ext lint
command uses the addons-linter library. That library contains a copy of the schema from Firefox. Since Firefox schema changes regularly we'd like to release new versions of web-ext around the time that Firefox creates a Beta release. That means developers will have a lint
command that closely matches Firefox.
The schedule is flexible, if a release is due to happen close to a Firefox release, then it might make sense to try and sync the two releases into one. A full release schedule for Firefox is available.
If the issue you're working on involves changing any of the headings in this document CONTRIBUTING.md,
before making a commit and submitting a pull request, please remember to update the table of contents.
To update the TOC, run the command npm run gen-contributing-toc
from your root directory and you will auto generate a new TOC.