Skip to content

Commit 60b6219

Browse files
committed
Upgrade prettier to 3.5.3
1 parent 5e8585c commit 60b6219

File tree

22 files changed

+67
-68
lines changed

22 files changed

+67
-68
lines changed

.pnp.cjs

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/cache/prettier-npm-2.8.8-430828a36c-463ea8f9a0.zip

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:b3340411239229541e2cd4fa4ee0fc7d5e39c99372d2870f999fddd98c968c2e
3+
size 7885359

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@cosmjs/proto-signing": "workspace:^",
4848
"@cosmjs/stargate": "workspace:^",
4949
"eslint": "^8.57.1",
50-
"prettier": "^2.8.8",
50+
"prettier": "^3.5.3",
5151
"typescript": "~5.8"
5252
},
5353
"packageManager": "[email protected]"

packages/amino/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"karma-jasmine": "^5",
7171
"karma-jasmine-html-reporter": "^1.5.4",
7272
"nyc": "^15.1.0",
73-
"prettier": "^2.8.1",
73+
"prettier": "^3.5.3",
7474
"source-map-support": "^0.5.19",
7575
"ts-node": "^8",
7676
"typedoc": "^0.28",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"jasmine": "^4",
8282
"jasmine-spec-reporter": "^6",
8383
"nyc": "^15.1.0",
84-
"prettier": "^2.8.1",
84+
"prettier": "^3.5.3",
8585
"source-map-support": "^0.5.19"
8686
}
8787
}

packages/cosmwasm-stargate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"karma-jasmine": "^5",
7878
"karma-jasmine-html-reporter": "^1.5.4",
7979
"nyc": "^15.1.0",
80-
"prettier": "^2.8.1",
80+
"prettier": "^3.5.3",
8181
"readonly-date": "^1.0.0",
8282
"source-map-support": "^0.5.19",
8383
"ts-node": "^8",

packages/cosmwasm-stargate/src/cosmwasmclient.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,8 @@ export class CosmWasmClient {
412412
* Throws an error if no contract was found at the address
413413
*/
414414
public async getContract(address: string): Promise<Contract> {
415-
const { address: retrievedAddress, contractInfo } = await this.forceGetQueryClient().wasm.getContractInfo(
416-
address,
417-
);
415+
const { address: retrievedAddress, contractInfo } =
416+
await this.forceGetQueryClient().wasm.getContractInfo(address);
418417
if (!contractInfo) throw new Error(`No contract found at address "${address}"`);
419418
assert(retrievedAddress, "address missing");
420419
assert(contractInfo.codeId && contractInfo.creator && contractInfo.label, "contractInfo incomplete");

packages/crypto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"karma-jasmine": "^5",
8080
"karma-jasmine-html-reporter": "^1.5.4",
8181
"nyc": "^15.1.0",
82-
"prettier": "^2.8.1",
82+
"prettier": "^3.5.3",
8383
"source-map-support": "^0.5.19",
8484
"ts-node": "^8",
8585
"typedoc": "^0.28",

packages/encoding/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"karma-jasmine": "^5",
7272
"karma-jasmine-html-reporter": "^1.5.4",
7373
"nyc": "^15.1.0",
74-
"prettier": "^2.8.1",
74+
"prettier": "^3.5.3",
7575
"source-map-support": "^0.5.19",
7676
"ts-node": "^8",
7777
"typedoc": "^0.28",

0 commit comments

Comments
 (0)