Skip to content

Commit

Permalink
Update Node.js to ^22.13.0 (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and jakubmazanec committed Jan 12, 2025
1 parent 43410f8 commit b189bd8
Show file tree
Hide file tree
Showing 17 changed files with 94 additions and 74 deletions.
5 changes: 5 additions & 0 deletions .changeset/fifty-horses-arrive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@jakubmazanec/carson-templates': patch
---

In all templates, Node.js version was updated to `^22.13.0`.
15 changes: 15 additions & 0 deletions .changeset/renovate-ecbfbd85.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
'@jakubmazanec/args': patch
'@jakubmazanec/carson-templates': patch
'@jakubmazanec/carson': patch
'@jakubmazanec/changesets-changelog': patch
'@jakubmazanec/cli': patch
'@jakubmazanec/error': patch
'@jakubmazanec/eslint-config': patch
'@jakubmazanec/fs-utils': patch
'@jakubmazanec/template': patch
'@jakubmazanec/ts-utils': patch
'@jakubmazanec/ui': patch
'@jakubmazanec/zod-utils': patch
---
Dependency `@types/node` updated to version `^22.10.5`. Dependency `node` updated to version `^22.13.0`.
52 changes: 26 additions & 26 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 @@ -23,7 +23,7 @@
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
"patch-package": "^8.0.0",
Expand All @@ -34,7 +34,7 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.12.0"
"node": "^22.13.0"
},
"overrides": {
"react": "^19.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/args/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"source"
],
"scripts": {
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.13 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.13 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint .",
Expand All @@ -35,7 +35,7 @@
"@jakubmazanec/eslint-config": "^4.1.0",
"@types/lodash": "^4.17.14",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
Expand All @@ -51,6 +51,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.12.0"
"node": "^22.13.0"
}
}
6 changes: 3 additions & 3 deletions packages/carson-templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"templates"
],
"scripts": {
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.13 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
"format": "prettier . --write --ignore-unknown",
Expand All @@ -39,7 +39,7 @@
"@jakubmazanec/fs-utils": "^0.2.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@types/zen-observable": "^0.8.7",
"@vitest/coverage-v8": "^2.1.8",
"del-cli": "^6.0.0",
Expand All @@ -61,6 +61,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.12.0"
"node": "^22.13.0"
}
}
2 changes: 1 addition & 1 deletion packages/carson-templates/source/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const DEPENDENCY_VERSIONS: Record<string, string> = {
vite: '^6.0.0',
vitest: '^2.0.0',

node: '^22.12.0',
node: '^22.13.0',
npm: '^10.9.0',
};

Expand Down
8 changes: 4 additions & 4 deletions packages/carson/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"source"
],
"scripts": {
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.13 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.13 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint .",
Expand Down Expand Up @@ -59,7 +59,7 @@
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.14",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/semver": "^7.5.8",
"@types/zen-observable": "^0.8.7",
Expand All @@ -82,6 +82,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.12.0"
"node": "^22.13.0"
}
}
6 changes: 3 additions & 3 deletions packages/changesets-changelog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"source"
],
"scripts": {
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --format=cjs --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.13 --format=cjs --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint .",
Expand All @@ -33,7 +33,7 @@
"@changesets/types": "^6.0.0",
"@jakubmazanec/eslint-config": "^4.1.0",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"del-cli": "^6.0.0",
"esbuild": "^0.24.2",
Expand All @@ -46,6 +46,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.12.0"
"node": "^22.13.0"
}
}
Loading

0 comments on commit b189bd8

Please sign in to comment.