Skip to content

Commit 4258569

Browse files
committed
update gh actions node version to 24
1 parent 08e293f commit 4258569

File tree

5 files changed

+86
-85
lines changed

5 files changed

+86
-85
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 22
23+
node-version: 24
2424
registry-url: https://registry.npmjs.org
2525

2626
- name: Install dependencies

.github/workflows/publish-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
registry-url: https://registry.npmjs.org
2424

2525
- name: Install dependencies

.github/workflows/publish-latest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 22
21+
node-version: 24
2222
registry-url: https://registry.npmjs.org
2323

2424
- name: Install dependencies

packages/devtools-ui/src/routeTree.gen.ts

Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -8,144 +8,144 @@
88
// You should NOT make any changes in this file as it will be overwritten.
99
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010

11-
import { Route as rootRouteImport } from './routes/__root';
12-
import { Route as PluginsRouteImport } from './routes/plugins';
13-
import { Route as GuildsRouteImport } from './routes/guilds';
14-
import { Route as FeatureFlagsRouteImport } from './routes/feature-flags';
15-
import { Route as EventsRouteImport } from './routes/events';
16-
import { Route as CommandsRouteImport } from './routes/commands';
17-
import { Route as IndexRouteImport } from './routes/index';
11+
import { Route as rootRouteImport } from './routes/__root'
12+
import { Route as PluginsRouteImport } from './routes/plugins'
13+
import { Route as GuildsRouteImport } from './routes/guilds'
14+
import { Route as FeatureFlagsRouteImport } from './routes/feature-flags'
15+
import { Route as EventsRouteImport } from './routes/events'
16+
import { Route as CommandsRouteImport } from './routes/commands'
17+
import { Route as IndexRouteImport } from './routes/index'
1818

1919
const PluginsRoute = PluginsRouteImport.update({
2020
id: '/plugins',
2121
path: '/plugins',
2222
getParentRoute: () => rootRouteImport,
23-
} as any);
23+
} as any)
2424
const GuildsRoute = GuildsRouteImport.update({
2525
id: '/guilds',
2626
path: '/guilds',
2727
getParentRoute: () => rootRouteImport,
28-
} as any);
28+
} as any)
2929
const FeatureFlagsRoute = FeatureFlagsRouteImport.update({
3030
id: '/feature-flags',
3131
path: '/feature-flags',
3232
getParentRoute: () => rootRouteImport,
33-
} as any);
33+
} as any)
3434
const EventsRoute = EventsRouteImport.update({
3535
id: '/events',
3636
path: '/events',
3737
getParentRoute: () => rootRouteImport,
38-
} as any);
38+
} as any)
3939
const CommandsRoute = CommandsRouteImport.update({
4040
id: '/commands',
4141
path: '/commands',
4242
getParentRoute: () => rootRouteImport,
43-
} as any);
43+
} as any)
4444
const IndexRoute = IndexRouteImport.update({
4545
id: '/',
4646
path: '/',
4747
getParentRoute: () => rootRouteImport,
48-
} as any);
48+
} as any)
4949

5050
export interface FileRoutesByFullPath {
51-
'/': typeof IndexRoute;
52-
'/commands': typeof CommandsRoute;
53-
'/events': typeof EventsRoute;
54-
'/feature-flags': typeof FeatureFlagsRoute;
55-
'/guilds': typeof GuildsRoute;
56-
'/plugins': typeof PluginsRoute;
51+
'/': typeof IndexRoute
52+
'/commands': typeof CommandsRoute
53+
'/events': typeof EventsRoute
54+
'/feature-flags': typeof FeatureFlagsRoute
55+
'/guilds': typeof GuildsRoute
56+
'/plugins': typeof PluginsRoute
5757
}
5858
export interface FileRoutesByTo {
59-
'/': typeof IndexRoute;
60-
'/commands': typeof CommandsRoute;
61-
'/events': typeof EventsRoute;
62-
'/feature-flags': typeof FeatureFlagsRoute;
63-
'/guilds': typeof GuildsRoute;
64-
'/plugins': typeof PluginsRoute;
59+
'/': typeof IndexRoute
60+
'/commands': typeof CommandsRoute
61+
'/events': typeof EventsRoute
62+
'/feature-flags': typeof FeatureFlagsRoute
63+
'/guilds': typeof GuildsRoute
64+
'/plugins': typeof PluginsRoute
6565
}
6666
export interface FileRoutesById {
67-
__root__: typeof rootRouteImport;
68-
'/': typeof IndexRoute;
69-
'/commands': typeof CommandsRoute;
70-
'/events': typeof EventsRoute;
71-
'/feature-flags': typeof FeatureFlagsRoute;
72-
'/guilds': typeof GuildsRoute;
73-
'/plugins': typeof PluginsRoute;
67+
__root__: typeof rootRouteImport
68+
'/': typeof IndexRoute
69+
'/commands': typeof CommandsRoute
70+
'/events': typeof EventsRoute
71+
'/feature-flags': typeof FeatureFlagsRoute
72+
'/guilds': typeof GuildsRoute
73+
'/plugins': typeof PluginsRoute
7474
}
7575
export interface FileRouteTypes {
76-
fileRoutesByFullPath: FileRoutesByFullPath;
76+
fileRoutesByFullPath: FileRoutesByFullPath
7777
fullPaths:
7878
| '/'
7979
| '/commands'
8080
| '/events'
8181
| '/feature-flags'
8282
| '/guilds'
83-
| '/plugins';
84-
fileRoutesByTo: FileRoutesByTo;
85-
to: '/' | '/commands' | '/events' | '/feature-flags' | '/guilds' | '/plugins';
83+
| '/plugins'
84+
fileRoutesByTo: FileRoutesByTo
85+
to: '/' | '/commands' | '/events' | '/feature-flags' | '/guilds' | '/plugins'
8686
id:
8787
| '__root__'
8888
| '/'
8989
| '/commands'
9090
| '/events'
9191
| '/feature-flags'
9292
| '/guilds'
93-
| '/plugins';
94-
fileRoutesById: FileRoutesById;
93+
| '/plugins'
94+
fileRoutesById: FileRoutesById
9595
}
9696
export interface RootRouteChildren {
97-
IndexRoute: typeof IndexRoute;
98-
CommandsRoute: typeof CommandsRoute;
99-
EventsRoute: typeof EventsRoute;
100-
FeatureFlagsRoute: typeof FeatureFlagsRoute;
101-
GuildsRoute: typeof GuildsRoute;
102-
PluginsRoute: typeof PluginsRoute;
97+
IndexRoute: typeof IndexRoute
98+
CommandsRoute: typeof CommandsRoute
99+
EventsRoute: typeof EventsRoute
100+
FeatureFlagsRoute: typeof FeatureFlagsRoute
101+
GuildsRoute: typeof GuildsRoute
102+
PluginsRoute: typeof PluginsRoute
103103
}
104104

105105
declare module '@tanstack/react-router' {
106106
interface FileRoutesByPath {
107107
'/plugins': {
108-
id: '/plugins';
109-
path: '/plugins';
110-
fullPath: '/plugins';
111-
preLoaderRoute: typeof PluginsRouteImport;
112-
parentRoute: typeof rootRouteImport;
113-
};
108+
id: '/plugins'
109+
path: '/plugins'
110+
fullPath: '/plugins'
111+
preLoaderRoute: typeof PluginsRouteImport
112+
parentRoute: typeof rootRouteImport
113+
}
114114
'/guilds': {
115-
id: '/guilds';
116-
path: '/guilds';
117-
fullPath: '/guilds';
118-
preLoaderRoute: typeof GuildsRouteImport;
119-
parentRoute: typeof rootRouteImport;
120-
};
115+
id: '/guilds'
116+
path: '/guilds'
117+
fullPath: '/guilds'
118+
preLoaderRoute: typeof GuildsRouteImport
119+
parentRoute: typeof rootRouteImport
120+
}
121121
'/feature-flags': {
122-
id: '/feature-flags';
123-
path: '/feature-flags';
124-
fullPath: '/feature-flags';
125-
preLoaderRoute: typeof FeatureFlagsRouteImport;
126-
parentRoute: typeof rootRouteImport;
127-
};
122+
id: '/feature-flags'
123+
path: '/feature-flags'
124+
fullPath: '/feature-flags'
125+
preLoaderRoute: typeof FeatureFlagsRouteImport
126+
parentRoute: typeof rootRouteImport
127+
}
128128
'/events': {
129-
id: '/events';
130-
path: '/events';
131-
fullPath: '/events';
132-
preLoaderRoute: typeof EventsRouteImport;
133-
parentRoute: typeof rootRouteImport;
134-
};
129+
id: '/events'
130+
path: '/events'
131+
fullPath: '/events'
132+
preLoaderRoute: typeof EventsRouteImport
133+
parentRoute: typeof rootRouteImport
134+
}
135135
'/commands': {
136-
id: '/commands';
137-
path: '/commands';
138-
fullPath: '/commands';
139-
preLoaderRoute: typeof CommandsRouteImport;
140-
parentRoute: typeof rootRouteImport;
141-
};
136+
id: '/commands'
137+
path: '/commands'
138+
fullPath: '/commands'
139+
preLoaderRoute: typeof CommandsRouteImport
140+
parentRoute: typeof rootRouteImport
141+
}
142142
'/': {
143-
id: '/';
144-
path: '/';
145-
fullPath: '/';
146-
preLoaderRoute: typeof IndexRouteImport;
147-
parentRoute: typeof rootRouteImport;
148-
};
143+
id: '/'
144+
path: '/'
145+
fullPath: '/'
146+
preLoaderRoute: typeof IndexRouteImport
147+
parentRoute: typeof rootRouteImport
148+
}
149149
}
150150
}
151151

@@ -156,7 +156,7 @@ const rootRouteChildren: RootRouteChildren = {
156156
FeatureFlagsRoute: FeatureFlagsRoute,
157157
GuildsRoute: GuildsRoute,
158158
PluginsRoute: PluginsRoute,
159-
};
159+
}
160160
export const routeTree = rootRouteImport
161161
._addFileChildren(rootRouteChildren)
162-
._addFileTypes<FileRouteTypes>();
162+
._addFileTypes<FileRouteTypes>()

turbo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$schema": "https://turborepo.com/schema.json",
3+
"ui": "tui",
34
"tasks": {
45
"build": {
56
"dependsOn": ["^build"]

0 commit comments

Comments
 (0)