Skip to content

Commit

Permalink
fix lint changelog and use node 18.19.0 by default (#2153)
Browse files Browse the repository at this point in the history
  • Loading branch information
szdziedzic authored Dec 15, 2023
1 parent f0012f5 commit 899a563
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"typescript": "4.9.4"
},
"volta": {
"node": "18.6.0",
"node": "18.19.0",
"yarn": "1.22.19"
}
}
2 changes: 1 addition & 1 deletion packages/eas-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
"clean": "rimraf dist build tmp node_modules yarn-error.log"
},
"volta": {
"node": "18.6.0",
"node": "18.19.0",
"yarn": "1.22.19"
}
}
2 changes: 1 addition & 1 deletion packages/eas-json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"access": "public"
},
"volta": {
"node": "18.6.0",
"node": "18.19.0",
"yarn": "1.22.19"
}
}
10 changes: 5 additions & 5 deletions scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "module",
"version": "0.31.0",
"scripts": {
"changelog-entry": "ts-node-esm src/changelogEntry.ts",
"next-version": "ts-node-esm src/nextVersion.ts",
"lint-changelog": "ts-node-esm src/lintChangelog.ts",
"changelog-entry": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/changelogEntry.ts",
"next-version": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/nextVersion.ts",
"lint-changelog": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/lintChangelog.ts",
"release": "./src/release.sh",
"release-changelog": "ts-node-esm src/releaseChangelog.ts",
"release-changelog": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/releaseChangelog.ts",
"update-local-plugin": "./src/updateLocalPlugin.sh",
"typecheck": "tsc"
},
Expand Down Expand Up @@ -36,7 +36,7 @@
"typescript": "4.9.4"
},
"volta": {
"node": "18.6.0",
"node": "18.19.0",
"yarn": "1.22.19"
}
}

0 comments on commit 899a563

Please sign in to comment.