Skip to content

Commit

Permalink
Merge branch 'testing'
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Feb 5, 2024
2 parents 8ddb6c9 + 5c7e4aa commit 396d1ca
Show file tree
Hide file tree
Showing 79 changed files with 2,167 additions and 1,448 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.tabSize": 2,
"files.eol": "\n",
"files.insertFinalNewline": true
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ NOTE: See the `ThirdPartyLicenses.txt` in the `public/` folder that is generated
- [html-react-parser](https://github.com/remarkablemark/html-react-parser)
- [js-xss](https://github.com/leizongmin/js-xss)
- [zustand](https://github.com/pmndrs/zustand)
- [lodash](https://github.com/lodash/lodash)
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
"files": {
"ignore": ["node_modules", "tests", "dist", "dist-firefox"]
"ignore": ["node_modules", "dist", "dist-firefox"]
},
"organizeImports": {
"enabled": true
Expand Down
28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"build:serviceWorker": "vite build --config vite.serviceWorker.config.ts",
"build:content": "vite build --config vite.content.config.ts",
"build:popup": "vite build --config vite.popup.config.ts",
"build:js": "run-p build:serviceWorker build:content build:popup",
"manifest:firefox": "mkdir -p dist-firefox && cp -f utils/manifestv3.ffx.json dist-firefox/manifest.json",
"clean": "rm -rf dist-firefox/ dist/ artifacts/dist artifacts/dist-firefox",
"build:permissions": "vite build --config vite.permissions.config.ts",
"build:js": "run-p build:serviceWorker build:content build:popup build:permissions",
"clean": "rm -rf dist-firefox/* dist/* artifacts/dist/* artifacts/dist-firefox/* playwright-report/ test-results/",
"dev:crxjs": "vite dev",
"dev:firefoxjs": "NODE_ENV=development run-p build:js manifest:firefox",
"dev": "run-s lint && tsc && run-s clean && run-p dev:firefoxjs dev:crxjs",
"dev:firefoxjs": "NODE_ENV=development run-p build:js",
"dev": "run-s clean lint && tsc && run-p dev:crxjs dev:firefoxjs",
"build:crxjs": "vite build",
"build:ffxcrxjs": "run-s build:js manifest:firefox",
"build": "run-s lint && tsc && run-s clean && run-p build:ffxcrxjs build:crxjs",
"build:ffxcrxjs": "run-s build:js",
"build": "run-s clean lint && tsc && run-p build:crxjs build:ffxcrxjs",
"build:pkg": "run-s build pkgsrc",
"test": "playwright test",
"pretty": "prettier -w ./src/*.html ./src/styles/*.css ./public/*.html",
Expand All @@ -36,6 +36,7 @@
"embla-carousel-react": "8.0.0-rc19",
"html-react-parser": "^4.2.10",
"jquery": "^3.7.1",
"lodash.isequal": "^4.5.0",
"lz-string": "^1.5.0",
"preact": "^10.19.3",
"prop-types": "15.8.1",
Expand All @@ -45,25 +46,26 @@
"zustand": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@crxjs/vite-plugin": "2.0.0-beta.21",
"@biomejs/biome": "^1.5.3",
"@crxjs/vite-plugin": "2.0.0-beta.23",
"@playwright/test": "1.40.1",
"@preact/preset-vite": "^2.8.1",
"@types/chrome": "^0.0.246",
"@types/dompurify": "^3.0.5",
"@types/jquery": "^3.5.29",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^20.11.16",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"adm-zip": "^0.5.10",
"dotenv": "^16.3.2",
"dotenv": "^16.4.1",
"embla-carousel": "8.0.0-rc19",
"glob": "^10.3.10",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^4.5.2"
"vite": "^5.0.12"
}
}
Loading

0 comments on commit 396d1ca

Please sign in to comment.