create-smcgateway-sv 0.0.1 → 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/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -42,7 +42,10 @@ fs.writeFileSync(
|
|
|
42
42
|
// the dependencies. We are using a third-party library
|
|
43
43
|
// called `cross-spawn` for cross-platform support.
|
|
44
44
|
// (Node has issues spawning child processes in Windows).
|
|
45
|
-
spawn.sync('npm', ['install'], { stdio: 'inherit' });
|
|
45
|
+
// spawn.sync('npm', ['install'], { stdio: 'inherit' });
|
|
46
46
|
|
|
47
47
|
console.log('Success! Your new project is ready.');
|
|
48
48
|
console.log(`Created ${projectName} at ${projectDir}`);
|
|
49
|
+
console.log(`cd ${projectName}`);
|
|
50
|
+
console.log(`npm install`);
|
|
51
|
+
console.log(`npm run dev`);
|