chore: exit pre-release mode and format

This commit is contained in:
Ralph Khreish
2025-09-23 11:46:20 +02:00
parent 6bbd777552
commit 6438f6c7c8
2 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
{
"mode": "pre",
"mode": "exit",
"tag": "rc",
"initialVersions": {
"task-master-ai": "0.27.0",

View File

@@ -10,7 +10,9 @@ const getBuildTimeEnvs = () => {
// Inject package.json version at build time
try {
const packageJson = JSON.parse(require('fs').readFileSync('package.json', 'utf8'));
const packageJson = JSON.parse(
require('fs').readFileSync('package.json', 'utf8')
);
envs['TM_PUBLIC_VERSION'] = packageJson.version || 'unknown';
} catch (error) {
console.warn('Could not read package.json version during build:', error);