Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 651f2a0

Browse files
build(deps-dev): bump prettier from 3.2.4 to 3.2.5 (#6223)
* build(deps-dev): bump prettier from 3.2.4 to 3.2.5 Bumps [prettier](https://github.com/prettier/prettier) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.2.4...3.2.5) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Fixup everywhere --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Cinque <[email protected]>
1 parent fdf36fa commit 651f2a0

32 files changed

+185
-164
lines changed

account-compression/sdk/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"gh-pages": "^6.1.1",
8787
"jest": "^29.0.1",
8888
"jest-config": "^29.0.1",
89+
"prettier": "^3.2.4",
8990
"start-server-and-test": "^2.0.3",
9091
"ts-jest": "^29.1.2",
9192
"ts-jest-resolver": "^2.0.1",

libraries/type-length-value/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"eslint-plugin-require-extensions": "^0.1.1",
5757
"gh-pages": "^6.1.1",
5858
"mocha": "^10.1.0",
59-
"prettier": "^3.2.4",
59+
"prettier": "^3.2.5",
6060
"shx": "^0.3.4",
6161
"ts-node": "^10.9.2",
6262
"typescript": "^5.3.3"

libraries/type-length-value/js/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"include": ["src", "test"],
44
"compilerOptions": {
55
"noEmit": true,
6-
"skipLibCheck": true,
7-
},
6+
"skipLibCheck": true
7+
}
88
}

memo/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"eslint-plugin-require-extensions": "^0.1.1",
6767
"gh-pages": "^6.1.1",
6868
"jest": "^29.0.0",
69-
"prettier": "^3.2.4",
69+
"prettier": "^3.2.5",
7070
"process": "^0.11.10",
7171
"shx": "^0.3.4",
7272
"start-server-and-test": "^2.0.3",

memo/js/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"include": ["src", "test"],
44
"compilerOptions": {
55
"noEmit": true,
6-
"skipLibCheck": true,
7-
},
6+
"skipLibCheck": true
7+
}
88
}

name-service/js/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { JestConfigWithTsJest } from 'ts-jest';
22

33
const jestConfig: JestConfigWithTsJest = {
4-
preset: 'ts-jest/presets/default-esm',
4+
preset: 'ts-jest/presets/default-esm',
55
};
66

77
export default jestConfig;

name-service/js/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"prepublish": "tsc",
3737
"lint": "npm run pretty && eslint --max-warnings 0 'src/*.ts'",
3838
"lint:fix": "npm run pretty:fix && eslint 'src/*.ts' --fix",
39-
"pretty": "prettier --check '{src/*.ts,test/*/*.ts}'",
40-
"pretty:fix": "prettier --write '{src/*.ts,test/*/*.ts}'",
39+
"pretty": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}'",
40+
"pretty:fix": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
4141
"doc": "npm run typedoc src/index.ts",
4242
"test": "npm run test:unit && npm run test:e2e",
4343
"test:unit": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest test/unit",
@@ -59,7 +59,7 @@
5959
"eslint-plugin-functional": "^6.0.0",
6060
"eslint-plugin-import": "^2.29.1",
6161
"jest": "^29.7.0",
62-
"prettier": "^3.2.4",
62+
"prettier": "^3.2.5",
6363
"start-server-and-test": "^2.0.3",
6464
"ts-jest": "^29.1.2",
6565
"ts-node": "^10.9.2",

name-service/js/tsconfig.all.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"extends": "./tsconfig.root.json",
3-
"references": [
4-
{
5-
"path": "./tsconfig.cjs.json"
6-
},
7-
{
8-
"path": "./tsconfig.esm.json"
9-
}
10-
]
2+
"extends": "./tsconfig.root.json",
3+
"references": [
4+
{
5+
"path": "./tsconfig.cjs.json"
6+
},
7+
{
8+
"path": "./tsconfig.esm.json"
9+
}
10+
]
1111
}

name-service/js/tsconfig.base.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"include": [],
3-
"compilerOptions": {
4-
"target": "ESNext",
5-
"module": "ESNext",
6-
"moduleResolution": "Node",
7-
"esModuleInterop": true,
8-
"isolatedModules": true,
9-
"noEmitOnError": true,
10-
"resolveJsonModule": true,
11-
"strict": true,
12-
"stripInternal": true
13-
}
2+
"include": [],
3+
"compilerOptions": {
4+
"target": "ESNext",
5+
"module": "ESNext",
6+
"moduleResolution": "Node",
7+
"esModuleInterop": true,
8+
"isolatedModules": true,
9+
"noEmitOnError": true,
10+
"resolveJsonModule": true,
11+
"strict": true,
12+
"stripInternal": true
13+
}
1414
}

name-service/js/tsconfig.cjs.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"extends": "./tsconfig.base.json",
3-
"include": ["src"],
4-
"compilerOptions": {
5-
"outDir": "lib/cjs",
6-
"target": "ES2016",
7-
"module": "CommonJS",
8-
"sourceMap": true
9-
}
2+
"extends": "./tsconfig.base.json",
3+
"include": ["src"],
4+
"compilerOptions": {
5+
"outDir": "lib/cjs",
6+
"target": "ES2016",
7+
"module": "CommonJS",
8+
"sourceMap": true
9+
}
1010
}

0 commit comments

Comments
 (0)