Skip to content

Commit a981324

Browse files
committed
dependency bump
1 parent b016c54 commit a981324

3 files changed

Lines changed: 80 additions & 55 deletions

File tree

nixpacks.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# nixpacks.toml
2+
providers = ["node"]
3+
4+
[phases.setup]
5+
# Pin to specific versions of node.
6+
# Use nodejs_24 from nixpkgs https://search.nixos.org/packages?channel=25.11&show=nodejs_24&query=nodejs_24
7+
nixPkgs = ["nodejs_24"]
8+
nixpkgsArchive = "2c3e5ec5df46d3aeee2a1da0bfedd74e21f4bf3a"
9+
10+
[phases.install]
11+
# Use npm i (not ci) to resolve linux binaries in dependencies.
12+
# Ensures native modules are compiled for the target platform.
13+
cmds = ["npm i"]
14+
cacheDirectories = ["/root/.npm"]
15+
16+
[phases.build]
17+
# Build the Next.js application with production optimizations.
18+
cmds = ["npm run build"]
19+
20+
# Cache both Next.js and module caches for faster rebuilds
21+
cacheDirectories = [".next/cache", "node_modules/.cache"]
22+
23+
[start]
24+
# Use production Next.js server.
25+
cmd = "npm run start"

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"validate": "npm run format && npm run lint && npm run typecheck && npm run test"
3030
},
3131
"dependencies": {
32-
"next": "^16.2.1",
32+
"next": "^16.2.2",
3333
"react": "^19.2.4",
3434
"react-dom": "^19.2.4",
3535
"xml-escape": "^1.1.0"
@@ -52,9 +52,9 @@
5252
"@vitest/ui": "^4.1.2",
5353
"autoprefixer": "^10.4.27",
5454
"babel-plugin-react-compiler": "^1.0.0",
55-
"dotenv": "^17.3.1",
55+
"dotenv": "^17.4.0",
5656
"eslint": "^9.39.2",
57-
"eslint-config-next": "^16.2.1",
57+
"eslint-config-next": "^16.2.2",
5858
"eslint-config-prettier": "^10.1.8",
5959
"jest-axe": "^10.0.0",
6060
"jsdom": "^29.0.1",

0 commit comments

Comments
 (0)