Skip to content

Commit

Permalink
Update Node.js (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 31, 2024
1 parent f408c30 commit 7c5f40d
Show file tree
Hide file tree
Showing 17 changed files with 90 additions and 69 deletions.
6 changes: 6 additions & 0 deletions .changeset/lucky-beers-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@jakubmazanec/carson-templates': minor

---

In all templates, Node.js version was updated to `^22.12.0`; related dependencies were also updated.
15 changes: 15 additions & 0 deletions .changeset/renovate-45480e6b.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.2`. Dependency `node` updated to version `^22.12.0`.
40 changes: 20 additions & 20 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.9.0",
"@types/node": "^22.10.2",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
"patch-package": "^8.0.0",
Expand All @@ -34,6 +34,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.0"
}
}
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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.11 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --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.13",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@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.11.0"
"node": "^22.12.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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --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.13",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@types/zen-observable": "^0.8.7",
"@vitest/coverage-v8": "^2.1.8",
"del-cli": "^6.0.0",
Expand All @@ -62,6 +62,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.0"
}
}
4 changes: 2 additions & 2 deletions packages/carson-templates/source/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const DEPENDENCY_VERSIONS: Record<string, string> = {
'@testing-library/jest-dom': '^6.0.0',
'@testing-library/react': '^16.0.0',
'@types/lodash': '^4.0.0',
'@types/node': '^20.0.0',
'@types/node': '^22.0.0',
'@types/react': '^18.0.0',
'@types/react-dom': '^18.0.0',
'@vitest/coverage-v8': '^2.0.0',
Expand Down Expand Up @@ -174,7 +174,7 @@ export const DEPENDENCY_VERSIONS: Record<string, string> = {
vite: '^5.0.0',
vitest: '^2.0.0',

node: '^22.11.0',
node: '^22.12.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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.11 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --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.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/semver": "^7.5.8",
"@types/zen-observable": "^0.8.7",
Expand All @@ -85,6 +85,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.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.11 --format=cjs --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --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.13",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@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.11.0"
"node": "^22.12.0"
}
}
8 changes: 4 additions & 4 deletions packages/cli/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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.11 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint .",
Expand All @@ -42,7 +42,7 @@
"@jakubmazanec/eslint-config": "^4.1.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.2",
Expand All @@ -67,6 +67,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.0"
}
}
8 changes: 4 additions & 4 deletions packages/error/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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"clean": "del-cli coverage build *.tsbuildinfo",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.11 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint .",
Expand All @@ -32,7 +32,7 @@
"devDependencies": {
"@jakubmazanec/eslint-config": "^4.1.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
Expand All @@ -48,6 +48,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.0"
}
}
6 changes: 3 additions & 3 deletions packages/eslint-config/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.11 --outdir=build --sourcemap && tsc",
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node22.12 --outdir=build --sourcemap && tsc",
"check-rules": "tsx tools/check-rules/main.ts",
"clean": "del-cli coverage build *.tsbuildinfo",
"format": "prettier . --write --ignore-unknown",
Expand Down Expand Up @@ -51,7 +51,7 @@
"@types/confusing-browser-globals": "^1.0.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"del-cli": "^6.0.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
Expand All @@ -72,6 +72,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0"
"node": "^22.12.0"
}
}
Loading

0 comments on commit 7c5f40d

Please sign in to comment.