1
0
mirror of https://github.com/XFox111/PasswordGeneratorExtension.git synced 2026-04-22 08:08:01 +03:00

Major 4.0 (#380)

- Migrated to WXT
- Migrated to NPM
- Added Insert & copy action
- Added ESLint
This commit is contained in:
Eugene Fox
2024-09-25 16:19:12 +03:00
committed by GitHub
parent f2683e37b2
commit 3ecb6c4a31
71 changed files with 14338 additions and 7531 deletions
+17 -52
View File
@@ -2,8 +2,8 @@
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "yarn build",
"type": "npm",
"script": "build -- -b chrome",
"group":
{
"kind": "build",
@@ -12,67 +12,32 @@
"label": "Build: Chromium"
},
{
"type": "shell",
"command": "yarn build",
"group":
{
"kind": "build",
"isDefault": false
},
"label": "Build: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
"type": "npm",
"script": "build -- -b firefox",
"group": "build",
"label": "Build: Firefox"
},
{
"type": "shell",
"command": "yarn build",
"args": [
"--watch",
"--mode",
"development"
],
"type": "npm",
"script": "dev -- -b chrome",
"group": "test",
"label": "Watch: Chromium"
"label": "Dev: Google Chrome"
},
{
"type": "shell",
"command": "yarn build",
"args": [
"--watch",
"--mode",
"development"
],
"type": "npm",
"script": "dev -- -b firefox",
"group": "test",
"label": "Watch: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
"label": "Dev: Firefox"
},
{
"type": "shell",
"command": "yarn dev",
"type": "npm",
"script": "dev -- -b edge",
"group": "test",
"label": "Dev: Chromium"
"label": "Dev: Microsoft Edge"
},
{
"type": "shell",
"command": "yarn dev",
"group": "test",
"label": "Dev: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
},
{
"type": "shell",
"command": "yarn install",
"type": "npm",
"script": "install",
"label": "Restore dependencies",
"group": "build"
}