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.
Files changed (2) hide show
  1. package/index.js +4 -1
  2. 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`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-smcgateway-sv",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "SMC Gateway Svelte Webapp template",
5
5
  "bin": {
6
6
  "create-my-template": "./index.js"