mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-07-02 19:52:43 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 88b954fcd0 | |||
| 59d993ae4a | |||
| d808bffff2 |
@@ -1,4 +1,9 @@
|
||||
module.exports = {
|
||||
"settings": {
|
||||
"react": {
|
||||
"version": "detect",
|
||||
},
|
||||
},
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es2021": true
|
||||
|
||||
@@ -25,5 +25,7 @@ Dependencies update and security fixes
|
||||
## PR Checklist
|
||||
- [ ] Update version in `package.json`
|
||||
- [ ] [Post-merge] Review and publish GitHub release
|
||||
- [ ] Update Discussions
|
||||
- [ ] [Post-deploy] Update changelog for Firefox webstore
|
||||
- [ ] Reset `next` branch to be in sync with `main`
|
||||
-->
|
||||
|
||||
@@ -60,7 +60,7 @@ jobs:
|
||||
extension-root: dist
|
||||
self-hosted: false
|
||||
|
||||
- uses: cardinalby/webext-buildtools-pack-extension-dir-action@1.0.8
|
||||
- uses: cardinalby/webext-buildtools-pack-extension-dir-action@1.0.9
|
||||
with:
|
||||
extensionDir: dist
|
||||
zipFilePath: PasswordGenerator-${{ matrix.target }}.zip
|
||||
@@ -105,7 +105,7 @@ jobs:
|
||||
with:
|
||||
name: packed-chrome
|
||||
|
||||
- uses: wdzeng/chrome-extension@v1.2.2
|
||||
- uses: wdzeng/chrome-extension@v1.2.4
|
||||
with:
|
||||
extension-id: jnjobgjobffgmgfnkpkjfjkkfhfikmfl
|
||||
zip-path: PasswordGenerator-chrome.zip
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
with:
|
||||
name: packed-chrome
|
||||
|
||||
- uses: wdzeng/edge-addon@v1.2.3
|
||||
- uses: wdzeng/edge-addon@v1.2.4
|
||||
with:
|
||||
product-id: ${{ secrets.EDGE_PRODUCT_ID }}
|
||||
zip-path: PasswordGenerator-chrome.zip
|
||||
@@ -141,7 +141,7 @@ jobs:
|
||||
with:
|
||||
name: packed-firefox
|
||||
|
||||
- uses: wdzeng/firefox-addon@v1.0.4
|
||||
- uses: wdzeng/firefox-addon@v1.0.5
|
||||
with:
|
||||
addon-guid: ${{ secrets.FIREFOX_EXT_UUID }}
|
||||
xpi-path: PasswordGenerator-firefox.zip
|
||||
|
||||
+15
-16
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "password-generator",
|
||||
"version": "3.1.0",
|
||||
"version": "3.1.2",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
@@ -9,32 +9,31 @@
|
||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluentui/react-components": "^9.46.4",
|
||||
"@fluentui/react-icons": "^2.0.226",
|
||||
"@fluentui/react-components": "^9.47.2",
|
||||
"@fluentui/react-icons": "^2.0.233",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.2.55",
|
||||
"@types/react-dom": "^18.2.19",
|
||||
"@types/react": "^18.2.73",
|
||||
"@types/react-dom": "^18.2.23",
|
||||
"@types/webextension-polyfill": "^0.10.7",
|
||||
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
||||
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
||||
"@typescript-eslint/parser": "^6.21.0",
|
||||
"@vitejs/plugin-react-swc": "^3.6.0",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-plugin-react": "^7.33.2",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-react": "^7.34.1",
|
||||
"eslint-plugin-react-hooks": "^4.6.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.5",
|
||||
"typescript": "^5.3.3",
|
||||
"vite": "^5.1.0",
|
||||
"vite-plugin-static-copy": "^1.0.1",
|
||||
"eslint-plugin-react-refresh": "^0.4.6",
|
||||
"typescript": "^5.4.3",
|
||||
"vite": "^5.2.7",
|
||||
"vite-plugin-static-copy": "^1.0.2",
|
||||
"vite-plugin-svgr": "^4.2.0",
|
||||
"vite-plugin-web-extension": "^4.1.1",
|
||||
"vite-plugin-web-extension": "^4.1.3",
|
||||
"webextension-polyfill": "^0.10.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"postcss": "^8.4.31",
|
||||
"tough-cookie": "^4.1.3",
|
||||
"scheduler": "^0.20.0"
|
||||
"scheduler": "^0.20.0",
|
||||
"@floating-ui/dom": "^1.5.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,4 +54,8 @@ export default defineConfig({
|
||||
),
|
||||
},
|
||||
},
|
||||
build:
|
||||
{
|
||||
chunkSizeWarningLimit: 1000,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user