Skip to content

Commit

Permalink
build(node): updated configs to lts node version - 22
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kolomoyets committed Jan 6, 2025
1 parent 7203abe commit c47e1b3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
lts/jod
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This project was bootstrapped with [Vite.js](https://vitejs.dev).
## 🚀 Quick start

1. Install [Node.js](https://nodejs.org);
> Require [Node.js](https://nodejs.org) version >=18.0.0
> Require [Node.js](https://nodejs.org) version >=22.0.0
2. Install the NPM dependencies by running `npm ci`;
3. If you want to serve the application with base public path on your server, you should create `.env.production.local` and add the variable `VITE_BASE_PUBLIC_PATH="/foo"`.
</details>
Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=16.0.0",
"node": ">=22.0.0",
"yarn": "please-use-npm",
"npm": ">=7.10.0"
"npm": ">=10.9.0"
},
"scripts": {
"dev": "vite --open --host",
Expand Down
9 changes: 4 additions & 5 deletions src/routeTree.gen.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* prettier-ignore-start */

/* eslint-disable */

// @ts-nocheck

// noinspection JSUnusedGlobalSymbols

// This file is auto-generated by TanStack Router
// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.

import { createFileRoute } from '@tanstack/react-router'

Expand All @@ -21,6 +21,7 @@ const IndexLazyImport = createFileRoute('/')()
// Create/Update Routes

const IndexLazyRoute = IndexLazyImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route))
Expand Down Expand Up @@ -75,8 +76,6 @@ export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()

/* prettier-ignore-end */

/* ROUTE_MANIFEST_START
{
"routes": {
Expand Down

0 comments on commit c47e1b3

Please sign in to comment.