Skip to content

Commit

Permalink
Automated linting update and features.json sync
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 18, 2023
1 parent bf4476c commit b2433b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion update-minor-versions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ function readVersion(packageJsonPath) {
const packageJson = readJson(packageJsonPath);
const newVersion = packageJson?.version;
if (!newVersion) {
throw new Error(`Could not parse version from package.json at ${packageJsonPath}`);
throw new Error(
`Could not parse version from package.json at ${packageJsonPath}`
);
}
return newVersion;
}
Expand Down

0 comments on commit b2433b8

Please sign in to comment.