Skip to content

Commit 63c8b11

Browse files
Implement Dependabot updates and bump version (#136)
* bump common version * linter fixes * update test to have valid batch size * remove now unused import * feedback from PR * Bump webpack-cli from 4.10.0 to 6.0.1 (#134) Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 4.10.0 to 6.0.1. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/[email protected]@6.0.1) --- updated-dependencies: - dependency-name: webpack-cli dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump versions * fix new prettier errors * bump version to non-alpha --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e4ce319 commit 63c8b11

File tree

5 files changed

+151
-178
lines changed

5 files changed

+151
-178
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eppo/js-client-sdk",
3-
"version": "3.8.3",
3+
"version": "3.9.1",
44
"description": "Eppo SDK for client-side JavaScript applications",
55
"main": "dist/index.js",
66
"files": [
@@ -10,9 +10,9 @@
1010
],
1111
"types": "dist/index.d.ts",
1212
"scripts": {
13-
"lint": "eslint '**/*.{ts,tsx}' '**/*.d.{ts,tsx}' --cache",
14-
"lint:fix": "eslint --fix '**/*.{ts,tsx}' --cache",
15-
"lint:fix-pre-commit": "eslint -c .eslintrc.pre-commit.js --fix '**/*.{ts,tsx}' --no-eslintrc --cache",
13+
"lint": "eslint '**/*.ts' --cache",
14+
"lint:fix": "eslint --fix '**/*.ts' --cache",
15+
"lint:fix-pre-commit": "eslint -c .eslintrc.pre-commit.js --fix '**/*.ts' --no-eslintrc --cache",
1616
"prepare": "make prepare",
1717
"pre-commit": "lint-staged && tsc && yarn docs",
1818
"typecheck": "tsc",
@@ -32,8 +32,8 @@
3232
},
3333
"homepage": "https://github.com/Eppo-exp/js-client-sdk#readme",
3434
"devDependencies": {
35-
"@microsoft/api-documenter": "^7.23.9",
36-
"@microsoft/api-extractor": "^7.38.0",
35+
"@microsoft/api-documenter": "^7.26.3",
36+
"@microsoft/api-extractor": "^7.48.1",
3737
"@types/chrome": "^0.0.268",
3838
"@types/jest": "^29.5.11",
3939
"@typescript-eslint/eslint-plugin": "^5.13.0",
@@ -42,15 +42,15 @@
4242
"eslint-config-prettier": "^9.1.0",
4343
"eslint-import-resolver-typescript": "^3.6.3",
4444
"eslint-plugin-import": "^2.25.4",
45-
"eslint-plugin-prettier": "^4.0.0",
45+
"eslint-plugin-prettier": "^5.2.1",
4646
"eslint-plugin-promise": "^7.2.1",
4747
"husky": "^8.0.1",
4848
"jest": "^29.7.0",
4949
"jest-environment-jsdom": "^29.7.0",
5050
"lint-staged": "^12.3.5",
51-
"prettier": "^2.7.1",
51+
"prettier": "^3.4.2",
5252
"terser-webpack-plugin": "^5.3.3",
53-
"testdouble": "^3.16.6",
53+
"testdouble": "^3.20.2",
5454
"ts-jest": "^29.1.1",
5555
"ts-loader": "^9.3.1",
5656
"ts-node": "^10.9.2",

src/chrome-storage-engine.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ export class ChromeStorageEngine implements IStringStorageEngine {
1717
private readonly contentsKey;
1818
private readonly metaKey;
1919

20-
public constructor(private storageMap: ChromeStorageAsyncMap<string>, storageKeySuffix: string) {
20+
public constructor(
21+
private storageMap: ChromeStorageAsyncMap<string>,
22+
storageKeySuffix: string,
23+
) {
2124
const keySuffix = storageKeySuffix ? `-${storageKeySuffix}` : '';
2225
this.contentsKey = CONFIGURATION_KEY + keySuffix;
2326
this.metaKey = META_KEY + keySuffix;

src/local-storage-engine.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ export class LocalStorageEngine implements IStringStorageEngine {
1111
private readonly contentsKey;
1212
private readonly metaKey;
1313

14-
public constructor(private localStorage: Storage, storageKeySuffix: string) {
14+
public constructor(
15+
private localStorage: Storage,
16+
storageKeySuffix: string,
17+
) {
1518
const keySuffix = storageKeySuffix ? `-${storageKeySuffix}` : '';
1619
this.contentsKey = CONFIGURATION_KEY + keySuffix;
1720
this.metaKey = META_KEY + keySuffix;

src/string-valued.store.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ export interface IStringStorageEngine {
2020
export class StringValuedAsyncStore<T> implements IAsyncStore<T> {
2121
private initialized = false;
2222

23-
public constructor(private storageEngine: IStringStorageEngine, private cooldownSeconds = 0) {}
23+
public constructor(
24+
private storageEngine: IStringStorageEngine,
25+
private cooldownSeconds = 0,
26+
) {}
2427

2528
public isInitialized(): boolean {
2629
return this.initialized;

0 commit comments

Comments
 (0)