Skip to content

Commit 5ac570a

Browse files
authored
Merge pull request #75 from macalinao/cache-fixing
Caching fixes
2 parents 2ebbb5c + 3fcfc20 commit 5ac570a

File tree

21 files changed

+44
-22
lines changed

21 files changed

+44
-22
lines changed

.changeset/beige-seas-grin.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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-renderers-js-esm": patch
6+
"@macalinao/codama-rename-visitor": patch
7+
"@macalinao/clients-voter-stake-registry": patch
8+
"@macalinao/clients-orca-whirlpools": patch
9+
"@macalinao/clients-kamino-lending": patch
10+
"@macalinao/clients-spl-governance": patch
11+
"@macalinao/clients-spl-stake-pool": patch
12+
"@macalinao/clients-token-metadata": patch
13+
"@macalinao/coda-visitors": patch
14+
"@macalinao/create-coda": patch
15+
"@macalinao/clients-tribeca": patch
16+
"@macalinao/clients-quarry": patch
17+
"@macalinao/coda": patch
18+
---
19+
20+
Update build script to use TypeScript cache

apps/docs/biome.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
33
"root": false,
44
"extends": ["@macalinao/biome-config/base"],
55
"linter": {

biome.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
33
"extends": ["@macalinao/biome-config/base"],
44
"files": {
55
"ignoreUnknown": false,

bun.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"": {
55
"name": "@macalinao/coda-monorepo",
66
"devDependencies": {
7-
"@biomejs/biome": "^2.3.0",
7+
"@biomejs/biome": "^2.3.2",
88
"@changesets/cli": "^2.29.7",
99
"@macalinao/biome-config": "^0.1.4",
1010
"husky": "^9.1.7",
1111
"lint-staged": "^16.2.6",
12-
"turbo": "^2.5.8",
12+
"turbo": "^2.6.0",
1313
"typedoc": "^0.28.14",
1414
"typescript": "^5.9.3",
1515
},

clients/kamino-lending/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"scripts": {
4242
"build": "tsc",
43-
"clean": "rm -fr dist/",
43+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
4444
"lint": "eslint . --cache",
4545
"test": "echo 'No tests yet'",
4646
"codegen": "coda generate"

clients/orca-whirlpools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
],
3232
"scripts": {
3333
"build": "tsc",
34-
"clean": "rm -fr dist/ tsconfig.tsbuildinfo",
34+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
3535
"codegen": "rm -fr src/generated/ && coda generate",
3636
"lint": "eslint . --cache"
3737
},

clients/quarry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"scripts": {
4242
"build": "tsc",
43-
"clean": "rm -fr dist/",
43+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
4444
"lint": "eslint . --cache",
4545
"test": "echo 'No tests yet'",
4646
"codegen": "rm -fr src/generated/ && coda generate"

clients/spl-governance/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"scripts": {
4444
"build": "tsc",
45-
"clean": "rm -fr dist/",
45+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
4646
"lint": "eslint . --cache",
4747
"codegen": "coda generate"
4848
},

clients/spl-stake-pool/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"scripts": {
4444
"build": "tsc",
45-
"clean": "rm -fr dist/",
45+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
4646
"lint": "eslint . --cache",
4747
"codegen": "coda generate"
4848
},

clients/token-metadata/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"scripts": {
4242
"build": "tsc",
43-
"clean": "rm -fr dist/",
43+
"clean": "tsc --build --clean && rm -fr dist/ tsconfig.tsbuildinfo",
4444
"lint": "eslint . --cache",
4545
"test": "echo 'No tests yet'",
4646
"codegen": "coda generate"

0 commit comments

Comments
 (0)