We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3c953 commit fba3e04Copy full SHA for fba3e04
.gitignore
@@ -1,3 +1,4 @@
1
+.env*
2
.wxt
3
dist
4
node_modules
package.json
@@ -12,6 +12,7 @@
12
"dev:chrome": "wxt -b chrome",
13
"dev:firefox": "wxt -b firefox",
14
"postinstall": "wxt prepare",
15
+ "publish": "npm run zip && wxt submit",
16
"typecheck": "tsc --noEmit",
17
"zip": "conc npm:zip:*",
18
"zip:chrome": "wxt zip -b chrome",
wxt.config.ts
@@ -15,4 +15,8 @@ export default defineConfig({
},
],
}),
+ zip: {
19
+ artifactTemplate: "{{browser}}.zip",
20
+ sourcesTemplate: "sources.zip",
21
+ },
22
});
0 commit comments