Skip to content

Commit 27b8b37

Browse files
build(deps): bump the npm-deps group with 9 updates (#5902)
* build(deps): bump the npm-deps group with 9 updates Bumps the npm-deps group with 9 updates: | Package | From | To | | --- | --- | --- | | [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.7.0` | `1.8.0` | | [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.293` | `0.0.297` | | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.0.1` | | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.1` | `50.6.2` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `15.3.0` | `15.4.1` | | [puppeteer](https://github.com/puppeteer/puppeteer) | `24.0.0` | `24.1.0` | | [stylelint](https://github.com/stylelint/stylelint) | `16.13.0` | `16.13.2` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.19.1` | `8.20.0` | | [undici-types](https://github.com/nodejs/undici) | `7.2.1` | `7.2.3` | Updates `postcss-html` from 1.7.0 to 1.8.0 - [Release notes](https://github.com/ota-meshi/postcss-html/releases) - [Commits](ota-meshi/postcss-html@v1.7.0...v1.8.0) Updates `@types/chrome` from 0.0.293 to 0.0.297 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) Updates `eslint-config-prettier` from 9.1.0 to 10.0.1 - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](prettier/eslint-config-prettier@v9.1.0...v10.0.1) Updates `eslint-plugin-jsdoc` from 50.6.1 to 50.6.2 - [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases) - [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc) - [Commits](gajus/eslint-plugin-jsdoc@v50.6.1...v50.6.2) Updates `lint-staged` from 15.3.0 to 15.4.1 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](lint-staged/lint-staged@v15.3.0...v15.4.1) Updates `puppeteer` from 24.0.0 to 24.1.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md) - [Commits](puppeteer/puppeteer@puppeteer-v24.0.0...puppeteer-v24.1.0) Updates `stylelint` from 16.13.0 to 16.13.2 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.13.0...16.13.2) Updates `typescript-eslint` from 8.19.1 to 8.20.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.20.0/packages/typescript-eslint) Updates `undici-types` from 7.2.1 to 7.2.3 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v7.2.1...v7.2.3) --- updated-dependencies: - dependency-name: postcss-html dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: eslint-config-prettier dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-deps - dependency-name: eslint-plugin-jsdoc dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: lint-staged dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: puppeteer dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: undici-types dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps ... Signed-off-by: dependabot[bot] <[email protected]> * fix * fix * fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roma Sosnovsky <[email protected]>
1 parent 07628f4 commit 27b8b37

File tree

5 files changed

+177
-156
lines changed

5 files changed

+177
-156
lines changed

extension/js/common/browser/chrome.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const storageGetAll = async (storageType: ChromeStorageType): Promise<{ [
6969
void handleFatalErr('storage_undefined', new Error('storage is undefined'));
7070
} else {
7171
const storage = chrome.storage[storageType];
72-
storage.get(resolve);
72+
void storage.get(resolve);
7373
}
7474
});
7575
};

extension/js/common/core/crypto/key.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,7 @@ export class KeyUtil {
526526
if (decodedChunks.length === 0) return false;
527527

528528
const rawData = decodedChunks.join('');
529+
// eslint-disable-next-line @typescript-eslint/no-misused-spread
529530
const dataBytes = new Uint8Array([...rawData].map(c => c.charCodeAt(0)));
530531

531532
return KeyUtil.crc24(dataBytes) === providedCRC;

extension/js/common/settings.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ export class Settings {
9494
if (!filter) {
9595
throw new Error('Filter is empty for account_email"' + acctEmail + '"');
9696
}
97+
9798
await new Promise<void>((resolve, reject) => {
98-
chrome.storage.local.get(async storage => {
99+
// eslint-disable-next-line no-null/no-null
100+
chrome.storage.local.get(null, async storage => {
99101
try {
100102
for (const storageIndex of Object.keys(storage)) {
101103
if (storageIndex.startsWith(filter)) {

0 commit comments

Comments
 (0)