Skip to content

Commit efa3629

Browse files
build(deps): bump the npm-deps group with 7 updates (#6113)
* build(deps): bump the npm-deps group with 7 updates Bumps the npm-deps group with 7 updates: | Package | From | To | | --- | --- | --- | | [globby](https://github.com/sindresorhus/globby) | `15.0.0` | `16.0.0` | | [@openpgp/web-stream-tools](https://github.com/openpgpjs/web-stream-tools) | `0.2.1` | `0.3.0` | | [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.1.27` | `0.1.29` | | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `61.1.12` | `61.2.1` | | [googleapis](https://github.com/googleapis/google-api-nodejs-client) | `165.0.0` | `166.0.0` | | [puppeteer](https://github.com/puppeteer/puppeteer) | `24.29.1` | `24.30.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.3` | `8.46.4` | Updates `globby` from 15.0.0 to 16.0.0 - [Release notes](https://github.com/sindresorhus/globby/releases) - [Commits](sindresorhus/globby@v15.0.0...v16.0.0) Updates `@openpgp/web-stream-tools` from 0.2.1 to 0.3.0 - [Commits](https://github.com/openpgpjs/web-stream-tools/commits) Updates `@types/chrome` from 0.1.27 to 0.1.29 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) Updates `eslint-plugin-jsdoc` from 61.1.12 to 61.2.1 - [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@v61.1.12...v61.2.1) Updates `googleapis` from 165.0.0 to 166.0.0 - [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases) - [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/.release-please-manifest.json) - [Commits](googleapis/google-api-nodejs-client@googleapis-v165.0.0...googleapis-v166.0.0) Updates `puppeteer` from 24.29.1 to 24.30.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md) - [Commits](puppeteer/puppeteer@puppeteer-v24.29.1...puppeteer-v24.30.0) Updates `typescript-eslint` from 8.46.3 to 8.46.4 - [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.46.4/packages/typescript-eslint) --- updated-dependencies: - dependency-name: globby dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm-deps - dependency-name: "@openpgp/web-stream-tools" dependency-version: 0.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: "@types/chrome" dependency-version: 0.1.29 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: eslint-plugin-jsdoc dependency-version: 61.2.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: googleapis dependency-version: 166.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-deps - dependency-name: puppeteer dependency-version: 24.30.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: typescript-eslint dependency-version: 8.46.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps ... Signed-off-by: dependabot[bot] <[email protected]> * fix: eslint error --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ioan Moldovan <[email protected]>
1 parent 5a6b382 commit efa3629

File tree

4 files changed

+217
-163
lines changed

4 files changed

+217
-163
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-
void storage.get(resolve);
72+
storage.get(resolve);
7373
}
7474
});
7575
};

0 commit comments

Comments
 (0)