@liorandb/studio 0.0.2 ā 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +5 -2
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -25,6 +25,9 @@ console.log("š¦ Installing dependencies...\n");
|
|
|
25
25
|
|
|
26
26
|
execSync("npm install", { stdio: "inherit", cwd: targetDir });
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
// Build the project to ensure everything is set up correctly
|
|
29
|
+
execSync("npm run build", { stdio: "inherit", cwd: targetDir });
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
console.log("\nš„ Starting the server...\n");
|
|
32
|
+
|
|
33
|
+
execSync("npm run start", { stdio: "inherit", cwd: targetDir });
|