Skip to content

Commit

Permalink
Fix bug with new init
Browse files Browse the repository at this point in the history
  • Loading branch information
skymen committed Jan 19, 2025
1 parent 174ba16 commit 14a8f5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as chalkUtils from "./chalkUtils.js";
import fromConsole from "./fromConsole.js";

export default function initialiseProject() {
let process = exec("npm install && npm run updateProjectData");
let process = exec("npm run updateProjectData");
process.stdout.pipe(process.stdout);
process.stderr.pipe(process.stderr);
process.on("exit", () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build": "cd build && node build.js",
"dev": "cd build && node dev.js",
"updateProjectData": "cd build && node updateProjectData.js",
"init": "node build/init.js",
"init": "npm install && node build/init.js",
"generateDocs": "cd build && node generateDocumentation.js",
"publish": "cd build && node publish.js"
},
Expand Down

0 comments on commit 14a8f5c

Please sign in to comment.