-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move src/modules/index.js into src/main.js * update logger debug method to be controlled by URL search param * fix logic of checkPlaylistReady * add debug logs * add function "isElementVisible" * move setupPage() from processPlaylist() to the start of main() * update vite-plugin-web-extension to v4.1.6 * add override for [email protected]>braces * update docs/testing
- Loading branch information
Showing
7 changed files
with
1,297 additions
and
1,008 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "An extension to calculate & display the total duration of a youtube playlist.", | ||
"author": "nrednav", | ||
"private": true, | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"type": "module", | ||
"engines": { | ||
"node": ">=20", | ||
|
@@ -20,14 +20,14 @@ | |
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.49.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-import": "^2.28.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^14.0.1", | ||
"prettier": "^3.0.3", | ||
"vite": "^4.5.2", | ||
"vite-plugin-web-extension": "^4.1.3", | ||
"prettier": "^3.3.2", | ||
"vite": "^4.5.3", | ||
"vite-plugin-web-extension": "^4.1.6", | ||
"webextension-polyfill": "^0.10.0" | ||
}, | ||
"lint-staged": { | ||
|
@@ -38,7 +38,8 @@ | |
}, | ||
"pnpm": { | ||
"overrides": { | ||
"postcss@<8.4.31": ">=8.4.31" | ||
"postcss@<8.4.31": ">=8.4.31", | ||
"[email protected]>braces": "3.0.3" | ||
} | ||
}, | ||
"dependencies": { | ||
|
Oops, something went wrong.