wxt 0.3.0 → 0.3.1
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 +4 -2
- package/bin/wxt.cjs +2 -0
- package/dist/cli.cjs +6818 -138
- package/dist/index.cjs +56 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +56 -7
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
<h1 align="center">WXT</h1>
|
|
2
2
|
|
|
3
|
+
<p align="center"><img align="center" width="44" src="./docs/public/hero-logo.svg" alt="WXT Logo"></p>
|
|
4
|
+
|
|
3
5
|
<p align="center"><i>Next gen framework for developing web extensions.<br/>Powered by <a href="https://vitejs.dev/" target="_blank">Vite</a>. Inspired by <a href="https://nuxt.com/" target="_blank">Nuxt</a>.</i></p>
|
|
4
6
|
|
|
5
7
|

|
|
@@ -8,16 +10,16 @@
|
|
|
8
10
|
|
|
9
11
|
- 🌐 Supports all browsers
|
|
10
12
|
- ✅ Supports both MV2 and MV3
|
|
11
|
-
- ⚡ Dev mode with HMR &
|
|
13
|
+
- ⚡ Dev mode with HMR & fast reload
|
|
12
14
|
- 📂 File based entrypoints
|
|
13
15
|
- 🚔 TypeScript
|
|
14
16
|
- 🦾 Auto-imports
|
|
15
17
|
- ⬇️ Download and bundle remote URL imports
|
|
16
18
|
- 🎨 Frontend framework agnostic: works with Vue, React, Svelte, etc
|
|
19
|
+
- 🖍️ Quickly bootstrap a new project
|
|
17
20
|
|
|
18
21
|
### Todo
|
|
19
22
|
|
|
20
|
-
- 🖍️ Quickly bootstrap a new project
|
|
21
23
|
- 📏 Bundle analysis
|
|
22
24
|
- 🤖 Automated publishing
|
|
23
25
|
|
package/bin/wxt.cjs
ADDED