create-fullstack-boilerplate 2.1.10 → 2.2.0

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.
@@ -1,11 +0,0 @@
1
- // const execa = require("execa");
2
- // const path = require("path");
3
- // const { log } = require("./utils");
4
-
5
- // module.exports = async function installDeps(targetDir) {
6
- // log("Installing backend dependencies...");
7
- // await execa("npm", ["install"], { cwd: path.join(targetDir, "backend"), stdio: "inherit" });
8
-
9
- // log("Installing frontend dependencies...");
10
- // await execa("npm", ["install"], { cwd: path.join(targetDir, "frontend"), stdio: "inherit" });
11
- // };
package/lib/runInstall.js DELETED
@@ -1,10 +0,0 @@
1
- // const execa = require("execa");
2
-
3
- // async function runInstall(cwd) {
4
- // await execa("npm", ["install"], {
5
- // cwd,
6
- // stdio: "inherit"
7
- // });
8
- // }
9
-
10
- // module.exports = runInstall;