Skip to content

Commit aaeae24

Browse files
committed
set starter plugin and project versions
1 parent 4c5ae8c commit aaeae24

File tree

2 files changed

+54
-36
lines changed

2 files changed

+54
-36
lines changed

packages/cli/src/scripts/copy-templates.ts

+54-32
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,31 @@ const __dirname = path.dirname(__filename);
1515
// Define paths
1616
const ROOT_DIR = path.resolve(__dirname, "../../../..");
1717
const CLI_DIST_DIR = path.resolve(ROOT_DIR, "packages/cli/dist");
18+
const TEMPLATES_DIR = path.resolve(ROOT_DIR, "packages/cli/templates");
19+
20+
/**
21+
* Updates package.json with the CLI version and replaces workspace references
22+
*/
23+
async function updatePackageJson(packagePath, cliVersion) {
24+
const packageJsonContent = await fs.readFile(packagePath, "utf-8");
25+
const packageData = JSON.parse(packageJsonContent);
26+
27+
// Update version
28+
packageData.version = cliVersion;
29+
30+
// Replace workspace references in dependencies
31+
for (const section of ["dependencies", "devDependencies"]) {
32+
if (packageData[section]) {
33+
for (const [dep, version] of Object.entries(packageData[section])) {
34+
if (version === "workspace:*") {
35+
packageData[section][dep] = cliVersion;
36+
}
37+
}
38+
}
39+
}
40+
41+
await fs.writeFile(packagePath, JSON.stringify(packageData, null, 2));
42+
}
1843

1944
async function main() {
2045
try {
@@ -25,50 +50,47 @@ async function main() {
2550
process.exit(1);
2651
}
2752

28-
// if templates directory doesn't exist, create it
29-
const TEMPLATES_DIR = path.resolve(ROOT_DIR, "packages/cli/templates");
53+
// Prepare templates directory
3054
if (!fs.existsSync(TEMPLATES_DIR)) {
3155
await fs.ensureDir(TEMPLATES_DIR);
3256
} else {
3357
// Clean existing templates to prevent conflicts
3458
await fs.emptyDir(TEMPLATES_DIR);
3559
}
3660

37-
// Define source and destination paths with absolute paths
38-
const projectStarterSrc = path.resolve(ROOT_DIR, "packages/project-starter");
39-
const projectStarterDest = path.resolve(TEMPLATES_DIR, "project-starter");
40-
41-
const pluginStarterSrc = path.resolve(ROOT_DIR, "packages/plugin-starter");
42-
const pluginStarterDest = path.resolve(TEMPLATES_DIR, "plugin-starter");
43-
44-
// Copy project-starter and plugin-starter from packages to packages/cli/templates
45-
console.log(`Copying from ${projectStarterSrc} to ${projectStarterDest}`);
46-
await fs.copy(projectStarterSrc, projectStarterDest);
47-
48-
console.log(`Copying from ${pluginStarterSrc} to ${pluginStarterDest}`);
49-
await fs.copy(pluginStarterSrc, pluginStarterDest);
61+
// Get CLI version from package.json
62+
const cliPackageJsonPath = path.resolve(ROOT_DIR, "packages/cli/package.json");
63+
const cliPackageData = JSON.parse(await fs.readFile(cliPackageJsonPath, "utf-8"));
64+
const cliVersion = cliPackageData.version;
65+
console.log("CLI version:", cliVersion);
5066

51-
// get the version of our CLI, from the package.json
52-
const CLI_PACKAGE_JSON = path.resolve(ROOT_DIR, "packages/cli/package.json");
53-
const CLI_PACKAGE_JSON_CONTENT = await fs.readFile(CLI_PACKAGE_JSON, "utf-8");
54-
const CLI_PACKAGE_JSON_DATA = JSON.parse(CLI_PACKAGE_JSON_CONTENT);
55-
const CLI_VERSION = CLI_PACKAGE_JSON_DATA.version;
67+
// Define templates to copy
68+
const templates = [
69+
{
70+
name: "project-starter",
71+
src: path.resolve(ROOT_DIR, "packages/project-starter"),
72+
dest: path.resolve(TEMPLATES_DIR, "project-starter")
73+
},
74+
{
75+
name: "plugin-starter",
76+
src: path.resolve(ROOT_DIR, "packages/plugin-starter"),
77+
dest: path.resolve(TEMPLATES_DIR, "plugin-starter")
78+
}
79+
];
5680

57-
console.log("CLI version:", CLI_VERSION);
58-
59-
const replacedStarter = await fs.readFile(path.resolve(projectStarterDest, "package.json"), "utf-8");
60-
const replacedStarterData = JSON.parse(replacedStarter);
61-
replacedStarterData.version = CLI_VERSION;
62-
await fs.writeFile(path.resolve(projectStarterDest, "package.json"), JSON.stringify(replacedStarterData, null, 2));
63-
64-
const replacedPlugin = await fs.readFile(path.resolve(pluginStarterDest, "package.json"), "utf-8");
65-
const replacedPluginData = JSON.parse(replacedPlugin);
66-
replacedPluginData.version = CLI_VERSION;
67-
await fs.writeFile(path.resolve(pluginStarterDest, "package.json"), JSON.stringify(replacedPluginData, null, 2));
81+
// Copy each template and update its package.json
82+
for (const template of templates) {
83+
console.log(`Copying from ${template.src} to ${template.dest}`);
84+
await fs.copy(template.src, template.dest);
85+
86+
// Update package.json with correct version
87+
const packageJsonPath = path.resolve(template.dest, "package.json");
88+
await updatePackageJson(packageJsonPath, cliVersion);
89+
}
6890

6991
console.log("Templates successfully copied to packages/cli/templates.");
7092
} catch (error) {
71-
console.error("Error copying templates:", error);
93+
console.error("Error copying templates:", error);
7294
process.exit(1);
7395
}
7496
}

packages/cli/src/utils/copy-template.ts

-4
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@ export async function copyClientDist() {
155155
const srcClientDist = path.resolve(process.cwd(), "../client/dist");
156156
const destClientDist = path.resolve(process.cwd(), "./dist");
157157

158-
console.log("*** srcClientDist", srcClientDist);
159-
160158
// Create destination directory
161159
await fs.mkdir(destClientDist, { recursive: true });
162160

@@ -166,7 +164,6 @@ export async function copyClientDist() {
166164
const retryDelay = 1000; // 1 second
167165

168166
while (retries < maxRetries) {
169-
console.log("*** srcClientDist", srcClientDist);
170167
if (existsSync(srcClientDist)) {
171168
const files = await fs.readdir(srcClientDist);
172169
if (files.length > 0) {
@@ -177,7 +174,6 @@ export async function copyClientDist() {
177174
logger.info(
178175
`Waiting for client dist files to be built (attempt ${retries + 1}/${maxRetries})...`,
179176
);
180-
console.log("*** waiting for client dist files to be built");
181177
await new Promise((resolve) => setTimeout(resolve, retryDelay));
182178
retries++;
183179
}

0 commit comments

Comments
 (0)