@@ -15,6 +15,31 @@ const __dirname = path.dirname(__filename);
15
15
// Define paths
16
16
const ROOT_DIR = path . resolve ( __dirname , "../../../.." ) ;
17
17
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
+ }
18
43
19
44
async function main ( ) {
20
45
try {
@@ -25,50 +50,47 @@ async function main() {
25
50
process . exit ( 1 ) ;
26
51
}
27
52
28
- // if templates directory doesn't exist, create it
29
- const TEMPLATES_DIR = path . resolve ( ROOT_DIR , "packages/cli/templates" ) ;
53
+ // Prepare templates directory
30
54
if ( ! fs . existsSync ( TEMPLATES_DIR ) ) {
31
55
await fs . ensureDir ( TEMPLATES_DIR ) ;
32
56
} else {
33
57
// Clean existing templates to prevent conflicts
34
58
await fs . emptyDir ( TEMPLATES_DIR ) ;
35
59
}
36
60
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 ) ;
50
66
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
+ ] ;
56
80
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
+ }
68
90
69
91
console . log ( "Templates successfully copied to packages/cli/templates." ) ;
70
92
} catch ( error ) {
71
- console . error ( "Error copying templates:" , error ) ;
93
+ console . error ( "Error copying templates:" , error ) ;
72
94
process . exit ( 1 ) ;
73
95
}
74
96
}
0 commit comments