Skip to content

Commit

Permalink
added depedabot
Browse files Browse the repository at this point in the history
  • Loading branch information
mAmineChniti committed Mar 16, 2024
1 parent 96bfc65 commit 17ca83d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 28 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
- package-ecosystem: 'npm'
directory: '/page'
schedule:
interval: 'weekly'
2 changes: 1 addition & 1 deletion page/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "astro/tsconfigs/strict",
"include": ["../src/scripts/**/*.ts"]
"include": ["../src/scripts/**/*.ts"],
}
32 changes: 8 additions & 24 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,24 @@
"version": "0.2.7",
"web_accessible_resources": [
{
"resources": [
"script.js"
],
"matches": [
"https://github.com/*"
]
"resources": ["script.js"],
"matches": ["https://github.com/*"]
}
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"content.js"
],
"matches": ["https://github.com/*"],
"js": ["content.js"],
"run_at": "document_end",
"css": [
"content.css"
]
"css": ["content.css"]
}
],
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"tabs",
"webNavigation"
],
"permissions": ["storage", "tabs", "webNavigation"],
"background": {
"scripts": [
"background.js"
]
"scripts": ["background.js"]
},
"icons": {
"16": "images/icon16.png",
Expand All @@ -53,4 +37,4 @@
"strict_min_version": "121.0.1"
}
}
}
}
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"types": [
"bun-types", // add Bun type definitions
"./types.d.ts", // add your own type definitions
"@types/chrome"
"@types/chrome",
],

// enable latest features
Expand All @@ -27,6 +27,6 @@
// best practices
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
"skipLibCheck": true,
},
}

0 comments on commit 17ca83d

Please sign in to comment.