Skip to content

Commit 3372b1b

Browse files
pkg: Update all non-major dependencies (#3674)
* pkg: Update all non-major dependencies * enhance: Fix compatibility --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathaniel Tucker <me@ntucker.me>
1 parent 4387795 commit 3372b1b

File tree

12 files changed

+163
-154
lines changed

12 files changed

+163
-154
lines changed

examples/coin-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"webpack-cli": "*"
4141
},
4242
"dependencies": {
43-
"@anansi/cli": "3.1.93",
44-
"@anansi/core": "0.21.5",
43+
"@anansi/cli": "3.1.94",
44+
"@anansi/core": "0.22.0",
4545
"@anansi/router": "0.10.21",
4646
"@babel/runtime-corejs3": "7.28.4",
4747
"@data-client/img": "0.15.1-beta-20251110151417-8913a49d898f6c7d69e1964d68f19daf68565bef",

examples/github-app/package-lock.json

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

examples/github-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"private": true,
3131
"license": "Apache-2.0",
3232
"devDependencies": {
33-
"@anansi/cli": "3.1.93",
33+
"@anansi/cli": "3.1.94",
3434
"@anansi/babel-preset": "6.2.20",
3535
"@anansi/browserslist-config": "1.7.3",
3636
"@anansi/webpack-config": "21.1.4",
@@ -51,7 +51,7 @@
5151
"webpack-dev-server": "5.2.2"
5252
},
5353
"dependencies": {
54-
"@anansi/core": "0.21.5",
54+
"@anansi/core": "0.22.0",
5555
"@anansi/router": "0.10.21",
5656
"@ant-design/cssinjs": "2.0.1",
5757
"@ant-design/icons": "6.1.0",

examples/github-app/src/index.server.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// this is just to make it work with older typescript versions in our tests
2+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
3+
// @ts-ignore
4+
import { antdSpout } from '@anansi/core/antd';
15
import {
26
laySpouts,
37
documentSpout,
@@ -6,7 +10,6 @@ import {
610
routerSpout,
711
JSONSpout,
812
appSpout,
9-
antdSpout,
1013
navigatorSpout,
1114
} from '@anansi/core/server';
1215
import { useController } from '@data-client/react';
@@ -24,6 +27,9 @@ const csPolicy = {
2427
};
2528

2629
const spouts = prefetchSpout('controller')(
30+
// this is just to make it work with older typescript versions in our tests
31+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
32+
// @ts-ignore
2733
documentSpout({ title: 'Github App', lang: 'en', csPolicy })(
2834
antdSpout()(
2935
JSONSpout()(

examples/github-app/src/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ import {
55
routerSpout,
66
JSONSpout,
77
appSpout,
8-
antdSpout,
98
navigatorSpout,
109
} from '@anansi/core';
10+
// this is just to make it work with older typescript versions in our tests
11+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
12+
// @ts-ignore
13+
import { antdSpout } from '@anansi/core/antd';
1114
import { useController } from '@data-client/react';
1215

1316
import app from '@/app';

examples/github-app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"jsx": "preserve", // this is just to make it work with older typescript versions in our tests
99
"declaration": true,
1010
"strict": true,
11-
"moduleResolution": "node",
11+
"moduleResolution": "node", // this is just to make it work with older typescript versions in our tests
1212
"skipLibCheck": true,
1313
"allowSyntheticDefaultImports": true,
1414
"esModuleInterop": true,

examples/nextjs/package-lock.json

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

examples/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@data-client/react": "^0.14.0",
2323
"@data-client/rest": "^0.14.0",
2424
"@number-flow/react": "^0.5.0",
25-
"@types/node": "24.10.3",
25+
"@types/node": "24.10.4",
2626
"@types/react": "19.2.7",
2727
"@types/react-dom": "19.2.3",
2828
"clsx": "^2.1.1",

examples/todo-app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"declaration": true,
1010
"strict": true,
1111
"noImplicitAny": false,
12-
"moduleResolution": "node",
12+
"moduleResolution": "node", // this is just to make it work with older typescript versions in our tests
1313
"skipLibCheck": true,
1414
"allowSyntheticDefaultImports": true,
1515
"esModuleInterop": true,

0 commit comments

Comments
 (0)