Skip to content

Commit cb49dd4

Browse files
committed
fix: replace single quotes with double
1 parent 878fbd0 commit cb49dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (!version) {
1414
// Update src/version.ts
1515
const versionFilePath = path.join(__dirname, "..", "src", "version.ts");
1616
const versionContent = `// This file is automatically updated by semantic-release
17-
export const VERSION = '${version}'`;
17+
export const VERSION = "${version}"`;
1818

1919
fs.writeFileSync(versionFilePath, versionContent, "utf8");
2020
console.log(`Updated version to ${version} in src/version.ts`);

0 commit comments

Comments
 (0)