Initial TrueGrowth source import

This commit is contained in:
2026-07-07 09:36:36 +08:00
commit 3b6781d695
2283 changed files with 691996 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
const { execSync } = require('child_process');
// Run nx release version
execSync('nx release version', { stdio: 'inherit' });
// Get the new version from react-text/package.json
const version = require('../packages/react-text/package.json').version;
// Run nx release changelog
execSync(`nx release changelog ${version}`, { stdio: 'inherit' });
// Commit all changes with a single commit message
execSync('git add .', { stdio: 'inherit' });
execSync(`git commit -m "chore(release): publish ${version}"`, { stdio: 'inherit' });
// Create a Git tag for the release
execSync(`git tag -a v${version} -m "v${version}"`, { stdio: 'inherit' });