Skip to content

Commit

Permalink
feat: more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFay committed Jun 10, 2024
1 parent ddfb1f0 commit b174242
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const init = async (destination_folder) => {
process.chdir(destination_folder);

// installing npm dependencies
log("⏳ launching npm init, installing webr & spidyr----");
execSync(`npm init -y`);
execSync(`npm install webr spidyr`);

Expand All @@ -35,7 +36,7 @@ const init = async (destination_folder) => {
process.chdir(previousDirectory);

// copying template
log("👉 Copying template ----");
log("💀 Copying project skeleton ----");
fs.cpSync(
path.join(__dirname, "..", "template"),
path.join(destination_folder),
Expand Down

0 comments on commit b174242

Please sign in to comment.