We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fadf97 commit 6a94b80Copy full SHA for 6a94b80
.github/utils/update-version.cjs
@@ -16,7 +16,7 @@ const assert = require("node:assert");
16
try {
17
const packagePath = getArgs()[0];
18
assert(packagePath, "Required package path missing.");
19
- const packageJsonPath = `${packagePath}/package.json`;
+ const packageJsonPath = `packages/${packagePath}/package.json`;
20
const pkg = JSON.parse(readFileSync(packageJsonPath));
21
const stdout = execSync("git rev-parse --short HEAD", { encoding: "utf8" });
22
pkg.version = "0.0.0-" + stdout.trim();
0 commit comments