بنقرة واحدة
bump-node-version
Bump the Node runtime version, and validate the build workflow.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Bump the Node runtime version, and validate the build workflow.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Add a collection field to an existing backend entity and update dependent artifacts; use for prompts like "Add collection ... to entity ...".
Create a new backend domain entity and all required artifacts; use for prompts like "Create an entity ... in package ...".
Add a many-to-one relation between existing entities and update dependent artifacts; use for prompts like "Add a required many-to-one relation ...".
Add a one-to-many relation between existing entities and update dependent artifacts; use for prompts like "Add a one-to-many relation ...".
Add a one-to-one relation between existing entities and update dependent artifacts; use for prompts like "Add a required one-to-one relation ...".
Add or remove a property on an existing backend entity and update dependent artifacts; use for prompts like "Add property ... to entity ...".
| name | bump-node-version |
| description | Bump the Node runtime version, and validate the build workflow. |
You MUST NOT generate code if even one of the preconditions is not met.
Extract the version from the request.
Check if version has major number only, e.g. 24.
Replace placeholder {version} with version.
If the local Node runtime major version is not greater than or equal to {version} then
Your local Node runtime is too old for source level {version}.Use this skill to bump node {version} based on doc/manual/setup-node.adoc.
app/client-angular/Dockerfilenode:{version}-alpine@sha256:....app/client-svelte/Dockerfilenode:{version}-alpine@sha256:.....github/workflows/build.ymlsetup-node set node-version to "{version}"..devcontainer/devcontainer.jsonghcr.io/devcontainers/features/node:1 set "version": "{version}".sh -xv app/client-angular/build.npm.sh ci
sh -xv app/client-svelte/build.npm.sh ci
Run from repository root. This step must not fail.