Skip to content

Commit 6548a6f

Browse files
authored
Merge pull request #24 from macalinao/igm/package-bumps
Bump dependencies
2 parents fa9c8fe + 44307ce commit 6548a6f

File tree

342 files changed

+862
-729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+862
-729
lines changed

.changeset/young-gifts-marry.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@macalinao/codama-instruction-accounts-dedupe-visitor": patch
3+
"@macalinao/codama-nodes-from-anchor-x": patch
4+
"@macalinao/codama-renderers-markdown": patch
5+
"@macalinao/codama-rename-visitor": patch
6+
"@macalinao/clients-orca-whirlpools": patch
7+
"@macalinao/clients-kamino-lending": patch
8+
"@macalinao/clients-token-metadata": patch
9+
"@macalinao/create-coda": patch
10+
"@macalinao/clients-quarry": patch
11+
"@macalinao/coda": patch
12+
"coda-docs": patch
13+
---
14+
15+
Dependency updates

apps/docs/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616
"fumadocs-ui": "15.7.0",
1717
"next": "15.5.0",
1818
"react": "^19.1.1",
19-
"react-dom": "^19.1.1"
19+
"react-dom": "^19.1.1",
20+
"yaml": "^2.8.1"
2021
},
2122
"devDependencies": {
2223
"@tailwindcss/postcss": "^4.1.12",
2324
"@types/mdx": "^2.0.13",
2425
"@types/node": "24.3.0",
25-
"@types/react": "^19.1.11",
26-
"@types/react-dom": "^19.1.7",
27-
"eslint": "^8.57.1",
26+
"@types/react": "^19.1.12",
27+
"@types/react-dom": "^19.1.9",
28+
"eslint": "^9.34.0",
2829
"eslint-config-next": "15.5.0",
2930
"postcss": "^8.5.6",
3031
"tailwindcss": "^4.1.12",

apps/docs/src/app/docs/[[...slug]]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
import type { Metadata } from "next";
12
import { createRelativeLink } from "fumadocs-ui/mdx";
23
import {
34
DocsBody,
45
DocsDescription,
56
DocsPage,
67
DocsTitle,
78
} from "fumadocs-ui/page";
8-
import type { Metadata } from "next";
99
import { notFound } from "next/navigation";
1010
import { source } from "@/lib/source";
1111
import { getMDXComponents } from "@/mdx-components";

apps/docs/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import "@/app/global.css";
2-
import { RootProvider } from "fumadocs-ui/provider";
32
import type { Metadata } from "next";
3+
import { RootProvider } from "fumadocs-ui/provider";
44
import { Geist, Geist_Mono } from "next/font/google";
55

66
export const metadata: Metadata = {

apps/docs/src/mdx-components.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import defaultMdxComponents from "fumadocs-ui/mdx";
21
import type { MDXComponents } from "mdx/types";
2+
import defaultMdxComponents from "fumadocs-ui/mdx";
33

44
// use this function to get MDX components, you will need it for rendering MDX
55
export function getMDXComponents(components?: MDXComponents): MDXComponents {

biome.jsonc

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@
2323
},
2424
"linter": {
2525
"enabled": true,
26-
// "domains": {
27-
// "project": "recommended"
28-
// },
26+
"domains": {
27+
"project": "recommended"
28+
},
2929
"rules": {
3030
"recommended": true,
31-
// this thing lags super hard
32-
// "nursery": {
33-
// "noFloatingPromises": "error"
34-
// },
31+
"nursery": {
32+
"useConsistentTypeDefinitions": "error",
33+
"noFloatingPromises": "error",
34+
"noUnnecessaryConditions": "error"
35+
},
3536
"complexity": {
3637
"useSimplifiedLogicExpression": "error"
3738
},
@@ -40,7 +41,12 @@
4041
"noDoubleEquals": "error"
4142
},
4243
"style": {
43-
"useImportType": "error",
44+
"useImportType": {
45+
"level": "error",
46+
"options": {
47+
"style": "separatedType"
48+
}
49+
},
4450
"noNonNullAssertion": "off",
4551
"noParameterAssign": "error",
4652
"useAsConstAssertion": "error",
@@ -64,14 +70,27 @@
6470
},
6571
"correctness": {
6672
"noUnusedVariables": "warn",
67-
"noUnusedImports": "error"
73+
"noUnusedImports": "error",
74+
"noUndeclaredDependencies": "error",
75+
"useImportExtensions": {
76+
"level": "error",
77+
"options": {
78+
"forceJsExtensions": true
79+
}
80+
}
6881
}
6982
}
7083
},
7184
"assist": {
7285
"actions": {
7386
"source": {
74-
"organizeImports": "on"
87+
// Organizes imports and splits out type imports into a separate line
88+
"organizeImports": {
89+
"level": "on",
90+
"options": {
91+
"groups": [{ "type": true }]
92+
}
93+
}
7594
}
7695
}
7796
},
@@ -92,6 +111,9 @@
92111
"includes": ["clients/*/src/generated/**"],
93112
"linter": {
94113
"rules": {
114+
"nursery": {
115+
"noUnnecessaryConditions": "off"
116+
},
95117
"suspicious": {
96118
"noEmptyInterface": "off"
97119
},

bun.lock

Lines changed: 193 additions & 106 deletions
Large diffs are not rendered by default.

clients/kamino-lending/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@macalinao/coda": "workspace:*",
5353
"@macalinao/eslint-config": "catalog:",
5454
"@macalinao/tsconfig": "catalog:",
55-
"@solana/kit": "*",
55+
"@solana/kit": "catalog:",
5656
"eslint": "catalog:",
5757
"typescript": "catalog:"
5858
}

clients/kamino-lending/src/generated/accounts/farmState.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ import type {
1919
MaybeEncodedAccount,
2020
ReadonlyUint8Array,
2121
} from "@solana/kit";
22+
import type {
23+
RewardInfo,
24+
RewardInfoArgs,
25+
TokenInfo,
26+
TokenInfoArgs,
27+
} from "../types/index.js";
2228
import {
2329
assertAccountExists,
2430
assertAccountsExist,
@@ -46,12 +52,6 @@ import {
4652
getU128Encoder,
4753
transformEncoder,
4854
} from "@solana/kit";
49-
import type {
50-
RewardInfo,
51-
RewardInfoArgs,
52-
TokenInfo,
53-
TokenInfoArgs,
54-
} from "../types/index.js";
5555
import {
5656
getRewardInfoDecoder,
5757
getRewardInfoEncoder,

clients/kamino-lending/src/generated/accounts/lendingMarket.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ import type {
1919
MaybeEncodedAccount,
2020
ReadonlyUint8Array,
2121
} from "@solana/kit";
22+
import type {
23+
ElevationGroupLendingMarket,
24+
ElevationGroupLendingMarketArgs,
25+
} from "../types/index.js";
2226
import {
2327
assertAccountExists,
2428
assertAccountsExist,
@@ -46,10 +50,6 @@ import {
4650
getU128Encoder,
4751
transformEncoder,
4852
} from "@solana/kit";
49-
import type {
50-
ElevationGroupLendingMarket,
51-
ElevationGroupLendingMarketArgs,
52-
} from "../types/index.js";
5353
import {
5454
getElevationGroupLendingMarketDecoder,
5555
getElevationGroupLendingMarketEncoder,

0 commit comments

Comments
 (0)