Skip to content

Latest commit

 

History

History
90 lines (50 loc) · 4.36 KB

File metadata and controls

90 lines (50 loc) · 4.36 KB

Maintainers

A couple of things for you to consider before merging a PR or giving the go-ahead on a feature proposal.

Be picky about new features and packages

We are responsible for maintaining them and fixing related bugs after the PR is merged. The community can always release their own WXT modules or packages, not everything needs to be built into WXT.

Prefer standards over customization

Don't merge PRs that just add another way to do something, like this one.

WXT is opinionated, if you have questions about what is WXT's opinion or we need to create a new one, create an issue and @ me to discuss.

PRs should be small and targeted

A PR should make one change. They should not make any unrelated changes outside of accomplishing the one thing. This makes PRs easier to review and they get merged more quickly - a win-win for everyone.

@wxt-dev/* packages are separate

We can't make changes to these packages assuming people are using them only with WXT. For example, I almost missed this PR.

I want these packages to be usable on their own so if people don't like WXT's build tool, they can still use our other awesome packages.

Minimize dependencies

I don't like how heavy lots of frameworks are. It's unavoidable to a certain extent, but if you can do something without another dependency, try to.

If you need a dependency, look for one with zero dependencies and that's respectable.

Look at milestones

I've organized WXT's long term plans into milestones, check those out to get an idea of my priorities for some of the larger features.

Require tests

If someone opens a PR to fix a bug but doesn't include tests, don't merge the PR. Tests are required to prevent regressions and maintain a codebase long term.

Ask for reproductions for bugs

You don't need to triage bugs if someone doesn't give you enough information. You can always ask for a repo with a reproduction or wait for more details.

If there's not an easy way to reproduce a bug, you're wasting your time triaging it. Just be mindful of your own time!

Here's an example of how to ask for a reproduction: #2064 (comment). You could be more blunt than this.

Add yourself as a code owner

If you want to be responsible for a specific package or directory, add yourself to the .github/CODEOWNERS file to get added as a reviewer to PRs automatically. You can also add yourself to the default list to be added as a reviewer on all PRs.

Releasing Package Updates

Releases are done with GitHub actions:

  • Use the Release workflow to release a single package in the monorepo. This automatically detects the version change with conventional commits, builds and uploads the package to NPM, and creates a GitHub release.
  • Use the Sync Releases workflow to sync the GitHub releases with changes to the changelog. To change a release, update the CHANGELOG.md file and run the workflow. It will sync the releases of a single package in the monorepo.

Creating New Packages

Example PR: #2152

  1. Create the package.

  2. Update CI workflow inputs.

  3. Add docs page and version for "Other Packages" dropdown.

  4. Merge the PR.

  5. Tag the commit (look at other tags for pattern):

    git tag <dir-name>-v<version>
    git push --tags
  6. Publish the package to NPM:

    cd packages/<dir-name>
    pnpm publish --access public
  7. Create a basic release on GitHub mentioning the new package is available.

A couple of things to note:

  • pkg.pr.new will fail on the original PR. It's fine to ignore and merge your PR as long as it fails due to your new package not being published to NPM yet.
  • The regular release workflow DOES NOT WORK for new packages. You have to have at least one <dir-name>-v<version> tag created before you can run that workflow for your new package.
  • You don't need to create a CHANGELOG.md file for the package, it will be created automatically after future changes are released via the normal release workflow.