@multiplatform.one/cli 1.0.34 → 1.0.36

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.
@@ -33,6 +33,7 @@ program.command("init").argument("[remote]", "the remote to use", "https://gitla
33
33
  await fs.writeFile(cookieCutterConfigFile, JSON.stringify(cookieCutterConfig, null, 2));
34
34
  await execa("sh", [
35
35
  path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../../scripts/init.sh"),
36
+ "--no-input",
36
37
  "-f",
37
38
  "--config-file",
38
39
  cookieCutterConfigFile,
@@ -82,6 +83,7 @@ program.command("update").argument("[remote]", "the remote to use", "https://git
82
83
  await fs.writeFile(cookieCutterConfigFile, JSON.stringify(cookieCutterConfig, null, 2));
83
84
  await execa("sh", [
84
85
  path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../../scripts/update.sh"),
86
+ "--no-input",
85
87
  "-f",
86
88
  "--config-file",
87
89
  cookieCutterConfigFile,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@multiplatform.one/cli",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "author": "BitSpur <support@bitspur.com> (https://bitspur.com)",
5
5
  "contributors": [
6
6
  {
@@ -52,7 +52,7 @@
52
52
  "@types/node": "~20.12.13",
53
53
  "tsup": "^8.1.0",
54
54
  "typescript": "~5.3.3",
55
- "@multiplatform.one/utils": "^0.0.19"
55
+ "@multiplatform.one/utils": "^0.0.21"
56
56
  },
57
57
  "dependencies": {
58
58
  "commander": "^9.5.0",
@@ -16,4 +16,5 @@ if ! which cookiecutter >/dev/null 2>&1; then
16
16
  exit 1
17
17
  fi
18
18
 
19
- cookiecutter -f "$@"
19
+ echo cookiecutter "$@"
20
+ cookiecutter "$@"
@@ -66,6 +66,7 @@ program
66
66
  'sh',
67
67
  [
68
68
  path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../../scripts/init.sh'),
69
+ '--no-input',
69
70
  '-f',
70
71
  '--config-file',
71
72
  cookieCutterConfigFile,
@@ -117,6 +118,7 @@ program
117
118
  'sh',
118
119
  [
119
120
  path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../../scripts/update.sh'),
121
+ '--no-input',
120
122
  '-f',
121
123
  '--config-file',
122
124
  cookieCutterConfigFile,