Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 1.02 KB

README.md

File metadata and controls

64 lines (45 loc) · 1.02 KB

My Module

My new WXT module for doing amazing things.

Features

  • ⛰  Foo
  • 🚠  Bar
  • 🌲  Baz

Installation

Install the module to your WXT extension with one command:

pnpm i my-module

Then add the module to your wxt.config.ts file:

export default defineConfig({
  modules: ["my-module"],
})

That's it! You can now use My Module in your WXT extension ✨

Contribution

Local development
# Install dependencies
pnpm install

# Generate type stubs
pnpm wxt prepare

# Develop test extension
pnpm dev

# Build the test extension
pnpm dev:build

# Run prettier, publint, and type checks
pnpm check