gsd-init 1.0.12 → 1.0.13

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/bin/gsd.js +2 -2
  2. package/package.json +1 -1
package/bin/gsd.js CHANGED
@@ -33,8 +33,8 @@ switch (cmd) {
33
33
  console.error('Usage: gsd init <project-name>');
34
34
  process.exit(1);
35
35
  }
36
- // Inject project name into argv so gsd-init.js picks it up via process.argv
37
- process.argv = [process.argv[0], process.argv[1], projectName];
36
+ // Pass --yes: providing the project name is already explicit confirmation
37
+ process.argv = [process.argv[0], process.argv[1], projectName, '--yes'];
38
38
  require('./gsd-init.js').run().catch(function(e) {
39
39
  console.error(e.message);
40
40
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-init",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Set up GSD observer/worker tmux system in a project",
5
5
  "bin": {
6
6
  "gsd-init": "bin/gsd-init.js",