build: move runtime to Node.js 24 - #43
Merged
Merged
Conversation
lewxdev
force-pushed
the
codex/deps-runtime
branch
from
August 14, 2026 22:13
79ecd8c to
11f7238
Compare
lewxdev
force-pushed
the
codex/deps-runtime
branch
from
August 14, 2026 22:21
11f7238 to
63146b6
Compare
lewxdev
force-pushed
the
codex/deps-runtime
branch
from
August 14, 2026 22:46
63146b6 to
d160aaf
Compare
lewxdev
marked this pull request as ready for review
August 15, 2026 00:45
drewradcliff
approved these changes
Aug 15, 2026
Prompt: go ahead and fix everything here, but keep each area should be a single slice in a $gh-stack, you can make each area a subagent too Co-authored-by: Codex <codex@openai.com>
Prompt: adjust the stack, #48 is unnecessary that was already fixed, we can just pull the latest changes Co-authored-by: Codex <codex@openai.com>
Prompt:
```json
{
"name": "mmmines",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
```
please use `devEngines`, not `engines` they have different meanings, no?
and it should be exact, pinned to the precise version of `@types/node` that is currently available for node 24
Co-authored-by: Codex <codex@openai.com>
Prompt:
```json
"devEngines": {
"runtime": {
"name": "node",
"version": "24.18.0",
"onFail": "error"
}
}
```
onFail is not necessary here, it's default
Co-authored-by: Codex <codex@openai.com>
lewxdev
force-pushed
the
codex/deps-runtime
branch
from
August 15, 2026 01:02
9cec1c8 to
c43d138
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
summary
devEngines, the local setup docs, and the Docker image@types/nodewith Node.js 24 and refresh the lockfilewhy
keeping the declared development runtime and container runtime on one exact version prevents environment drift.
stack
this is the runtime foundation for the dependency-remediation stack. #44 builds on this PR.
validation