Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante committed Dec 27, 2023
1 parent 789d2db commit 72f867e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 26 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version-file: package.json
- name: install
run: npm ci || npm install
- name: XO
Expand All @@ -25,10 +25,10 @@ jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version-file: package.json
- name: install
run: npm ci || npm install
- name: build
Expand All @@ -39,10 +39,10 @@ jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version-file: package.json
- name: install
run: npm ci || npm install
- name: build
Expand Down
22 changes: 10 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"license": "MIT",
"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
"type": "module",
"main": "index.js",
"module": "index.js",
"exports": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
Expand All @@ -42,19 +42,17 @@
"unicorn/better-regex": "off"
}
},
"ava": {
"nodeArguments": [
"--experimental-json-modules"
]
},
"dependencies": {
"webext-patterns": "^1.3.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/chrome": "^0.0.210",
"ava": "^5.1.1",
"typescript": "^4.9.4",
"xo": "^0.53.1"
"@sindresorhus/tsconfig": "^5.0.0",
"@types/chrome": "^0.0.254",
"ava": "^6.0.1",
"typescript": "^5.3.3",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
}
}
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ Check whether a specific URL is statically permitted by the manifest, whether in

### Permissions

- [webext-domain-permission-toggle](https://github.com/fregante/webext-domain-permission-toggle) - Browser-action context menu to request permission for the current tab. Chrome and Firefox.
- [webext-patterns](https://github.com/fregante/webext-patterns) - Convert the patterns of your WebExtension manifest to regex
- [webext-domain-permission-toggle](https://github.com/fregante/webext-domain-permission-toggle) - Browser-action context menu to request permission for the current tab.
- [webext-dynamic-content-scripts](https://github.com/fregante/webext-dynamic-content-scripts) - Automatically registers your content_scripts on domains added via permission.request

### Others
Expand Down
4 changes: 0 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"target": "es2019",
"module": "es2015"
},
"files": [
"index.ts"
]
Expand Down

0 comments on commit 72f867e

Please sign in to comment.