Skip to content

Commit 8b16e87

Browse files
authored
Merge pull request #36 from macalinao/igm/coda-updates
Update dependencies
2 parents 2f2ea73 + 233d0ea commit 8b16e87

File tree

9 files changed

+88
-190
lines changed

9 files changed

+88
-190
lines changed

.changeset/young-yaks-eat.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@macalinao/codama-renderers-js-esm": patch
3+
"@macalinao/create-coda": patch
4+
"@macalinao/coda": patch
5+
"coda-docs": patch
6+
---
7+
8+
Update to latest dependencies

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"eslint-config-next": "15.5.0",
3030
"postcss": "^8.5.6",
3131
"tailwindcss": "^4.1.13",
32-
"typescript": "^5.9.2"
32+
"typescript": "^5.9.3"
3333
}
3434
}

biome.jsonc

Lines changed: 5 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,10 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3-
"vcs": {
4-
"enabled": true,
5-
"clientKind": "git",
6-
"useIgnoreFile": true,
7-
"defaultBranch": "master"
8-
},
2+
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
3+
"extends": ["@macalinao/biome-config/base"],
94
"files": {
105
"ignoreUnknown": false,
116
"includes": ["**", "!docs/.next", "!out", "!**/bun.lock", "!vendor"]
127
},
13-
"formatter": {
14-
"enabled": true,
15-
"useEditorconfig": true,
16-
"formatWithErrors": false,
17-
"indentStyle": "space",
18-
"indentWidth": 2,
19-
"lineEnding": "lf",
20-
"lineWidth": 80,
21-
"attributePosition": "auto",
22-
"bracketSpacing": true
23-
},
24-
"linter": {
25-
"enabled": true,
26-
"domains": {
27-
"project": "recommended"
28-
},
29-
"rules": {
30-
"recommended": true,
31-
"nursery": {
32-
"useConsistentTypeDefinitions": "error",
33-
"noFloatingPromises": "error",
34-
"noUnnecessaryConditions": "error"
35-
},
36-
"complexity": {
37-
"useSimplifiedLogicExpression": "error"
38-
},
39-
"suspicious": {
40-
"noUnknownAtRules": "off",
41-
"noDoubleEquals": "error"
42-
},
43-
"style": {
44-
"useImportType": {
45-
"level": "error",
46-
"options": {
47-
"style": "separatedType"
48-
}
49-
},
50-
"noNonNullAssertion": "off",
51-
"noParameterAssign": "error",
52-
"useAsConstAssertion": "error",
53-
"useDefaultParameterLast": "error",
54-
"useEnumInitializers": "error",
55-
"useSelfClosingElements": "error",
56-
"useSingleVarDeclarator": "error",
57-
"noUnusedTemplateLiteral": "error",
58-
"useNumberNamespace": "error",
59-
"noInferrableTypes": "error",
60-
"noUselessElse": "error",
61-
"useBlockStatements": "error",
62-
"useCollapsedElseIf": "error",
63-
"useConsistentArrayType": {
64-
"level": "error",
65-
"options": {
66-
"syntax": "shorthand"
67-
}
68-
},
69-
"useShorthandAssign": "error"
70-
},
71-
"correctness": {
72-
"noUnusedVariables": "warn",
73-
"noUnusedImports": "error",
74-
"noUndeclaredDependencies": "error",
75-
"useImportExtensions": {
76-
"level": "error",
77-
"options": {
78-
"forceJsExtensions": true
79-
}
80-
}
81-
}
82-
}
83-
},
84-
"assist": {
85-
"actions": {
86-
"source": {
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-
}
94-
}
95-
}
96-
},
97-
"javascript": {
98-
"formatter": {
99-
"quoteStyle": "double",
100-
"jsxQuoteStyle": "double",
101-
"quoteProperties": "asNeeded",
102-
"trailingCommas": "all",
103-
"semicolons": "always",
104-
"arrowParentheses": "always",
105-
"bracketSameLine": false,
106-
"bracketSpacing": true
107-
}
108-
},
1098
"overrides": [
1109
{
11110
"includes": ["clients/*/src/generated/**"],
@@ -114,6 +13,9 @@
11413
"nursery": {
11514
"noUnnecessaryConditions": "off"
11615
},
16+
"style": {
17+
"noNonNullAssertion": "off"
18+
},
11719
"suspicious": {
11820
"noEmptyInterface": "off"
11921
},

bun.lock

Lines changed: 61 additions & 74 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,14 @@
4646
"docs:build": "turbo build --filter=coda-docs"
4747
},
4848
"devDependencies": {
49-
"@biomejs/biome": "^2.2.4",
49+
"@biomejs/biome": "^2.2.5",
5050
"@changesets/cli": "^2.29.7",
51+
"@macalinao/biome-config": "^0.1.1",
5152
"husky": "^9.1.7",
52-
"lint-staged": "^16.1.6",
53-
"turbo": "^2.5.6"
53+
"lint-staged": "^16.2.3",
54+
"turbo": "^2.5.8"
5455
},
55-
"packageManager": "[email protected].21",
56+
"packageManager": "[email protected].23",
5657
"lint-staged": {
5758
"*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched"
5859
},

packages/coda/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
},
5050
"dependencies": {
5151
"@codama/nodes-from-anchor": "catalog:",
52-
"@codama/renderers-rust": "^1.2.5",
52+
"@codama/renderers-rust": "^1.2.7",
5353
"@macalinao/codama-nodes-from-anchor-x": "workspace:*",
5454
"@macalinao/codama-rename-visitor": "workspace:*",
5555
"@macalinao/codama-renderers-js-esm": "workspace:*",
@@ -61,7 +61,7 @@
6161
"devDependencies": {
6262
"@macalinao/eslint-config": "catalog:",
6363
"@macalinao/tsconfig": "catalog:",
64-
"@types/node": "^24.3.1",
64+
"@types/node": "^24.6.2",
6565
"eslint": "catalog:",
6666
"typescript": "catalog:"
6767
}

packages/codama-renderers-js-esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"dependencies": {
4545
"@codama/renderers-core": "catalog:",
46-
"@codama/renderers-js": "^1.4.1",
46+
"@codama/renderers-js": "^1.4.2",
4747
"codama": "catalog:"
4848
},
4949
"devDependencies": {

packages/create-coda/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"devDependencies": {
4141
"@macalinao/eslint-config": "catalog:",
4242
"@macalinao/tsconfig": "catalog:",
43-
"@types/node": "^24.3.1",
43+
"@types/node": "^24.6.2",
4444
"eslint": "catalog:",
4545
"typescript": "catalog:"
4646
}

packages/create-coda/template/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"@solana/kit": "*"
3434
},
3535
"devDependencies": {
36-
"@macalinao/coda": "^0.3.0",
37-
"@macalinao/eslint-config": "^6.0.0",
36+
"@macalinao/coda": "^0.4.0",
37+
"@macalinao/eslint-config": "^6.0.2",
3838
"@macalinao/tsconfig": "^3.2.3",
3939
"@solana/kit": "*",
4040
"@types/bun": "latest",
41-
"eslint": "^9.35.0",
42-
"typescript": "^5.9.2"
41+
"eslint": "^9.36.0",
42+
"typescript": "^5.9.3"
4343
}
4444
}

0 commit comments

Comments
 (0)