Skip to content

Commit

Permalink
WIP introduced content script, still can't use chrome tabs API
Browse files Browse the repository at this point in the history
 * better construction of components
 * bootstrap service worker using content script
  • Loading branch information
nxmatic committed Mar 5, 2024
1 parent ded87d7 commit 8d5ce96
Show file tree
Hide file tree
Showing 25 changed files with 1,370 additions and 1,185 deletions.
5 changes: 4 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"presets": ["@babel/preset-env"]
"presets": ["@babel/preset-env"],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }]
]
}
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6
"ecmaVersion": 2022,
"ecmaFeatures": {
"legacyDecorators": true
}
},
"extends": [
"eslint:recommended",
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,26 @@
"bootstrap": "^5.3.3",
"chai": "^5.1.0",
"dompurify": "^3.0.9",
"fs-extra": "^11.2.0",
"highlight": "^0.2.4",
"inversify": "^6.0.2",
"jquery": "^3.7.1",
"jquery-confirm": "^3.3.4",
"nuxeo": "^4.0.3",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"rollup-plugin-copy": "^3.5.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.29.1",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-rename": "^1.0.1",
"run-sequence": "^2.2.1",
"vite": "^5.1.4",
Expand Down
Loading

0 comments on commit 8d5ce96

Please sign in to comment.