Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/coin-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"webpack-cli": "*"
},
"dependencies": {
"@anansi/cli": "3.1.93",
"@anansi/core": "0.21.5",
"@anansi/cli": "3.1.94",
"@anansi/core": "0.22.0",
"@anansi/router": "0.10.21",
"@babel/runtime-corejs3": "7.28.4",
"@data-client/img": "0.15.1-beta-20251110151417-8913a49d898f6c7d69e1964d68f19daf68565bef",
Expand Down
16 changes: 8 additions & 8 deletions examples/github-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/github-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@anansi/cli": "3.1.93",
"@anansi/cli": "3.1.94",
"@anansi/babel-preset": "6.2.20",
"@anansi/browserslist-config": "1.7.3",
"@anansi/webpack-config": "21.1.4",
Expand All @@ -51,7 +51,7 @@
"webpack-dev-server": "5.2.2"
},
"dependencies": {
"@anansi/core": "0.21.5",
"@anansi/core": "0.22.0",
"@anansi/router": "0.10.21",
"@ant-design/cssinjs": "2.0.1",
"@ant-design/icons": "6.1.0",
Expand Down
8 changes: 7 additions & 1 deletion examples/github-app/src/index.server.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// this is just to make it work with older typescript versions in our tests
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import { antdSpout } from '@anansi/core/antd';
import {
laySpouts,
documentSpout,
Expand All @@ -6,7 +10,6 @@ import {
routerSpout,
JSONSpout,
appSpout,
antdSpout,
navigatorSpout,
} from '@anansi/core/server';
import { useController } from '@data-client/react';
Expand All @@ -24,6 +27,9 @@ const csPolicy = {
};

const spouts = prefetchSpout('controller')(
// this is just to make it work with older typescript versions in our tests
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
documentSpout({ title: 'Github App', lang: 'en', csPolicy })(
antdSpout()(
JSONSpout()(
Expand Down
5 changes: 4 additions & 1 deletion examples/github-app/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ import {
routerSpout,
JSONSpout,
appSpout,
antdSpout,
navigatorSpout,
} from '@anansi/core';
// this is just to make it work with older typescript versions in our tests
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import { antdSpout } from '@anansi/core/antd';
import { useController } from '@data-client/react';

import app from '@/app';
Expand Down
2 changes: 1 addition & 1 deletion examples/github-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"jsx": "preserve", // this is just to make it work with older typescript versions in our tests
"declaration": true,
"strict": true,
"moduleResolution": "node",
"moduleResolution": "node", // this is just to make it work with older typescript versions in our tests
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
Expand Down
8 changes: 4 additions & 4 deletions examples/nextjs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@data-client/react": "^0.14.0",
"@data-client/rest": "^0.14.0",
"@number-flow/react": "^0.5.0",
"@types/node": "24.10.3",
"@types/node": "24.10.4",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"clsx": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/todo-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"declaration": true,
"strict": true,
"noImplicitAny": false,
"moduleResolution": "node",
"moduleResolution": "node", // this is just to make it work with older typescript versions in our tests
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
Expand Down
Loading
Loading