complete-cli 1.0.1-dev.5 → 1.0.1-dev.7

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.
@@ -115,12 +115,8 @@ async function installNodeModules(projectPath, skipInstall, packageManager) {
115
115
  const command = getPackageManagerInstallCommand(packageManager);
116
116
  promptLog(`Installing node modules with "${command}"... (This can take a long time.)`);
117
117
  const $$ = $({ cwd: projectPath });
118
- /// const commandParts = command.split(" ");
119
- console.log("GETTING HERE 1");
120
- await $ `echo lol1`;
121
- console.log("GETTING HERE 2");
122
- await $$ `echo lol2`;
123
- console.log("GETTING HERE 3");
118
+ const commandParts = command.split(" ");
119
+ await $$ `${commandParts}`;
124
120
  }
125
121
  async function formatFiles(projectPath) {
126
122
  const $$ = $({ cwd: projectPath });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.0.1-dev.5",
3
+ "version": "1.0.1-dev.7",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -37,8 +37,8 @@
37
37
  "@clack/prompts": "^0.10.0",
38
38
  "chalk": "^5.4.1",
39
39
  "clipanion": "^4.0.0-rc.4",
40
- "complete-common": "^1.0.1",
41
- "complete-node": "^1.7.4",
40
+ "complete-common": "^1.1.0",
41
+ "complete-node": "^2.0.0",
42
42
  "execa": "^9.5.2",
43
43
  "klaw-sync": "^6.0.0",
44
44
  "yaml": "^2.7.0"
@@ -47,7 +47,7 @@
47
47
  "@types/klaw-sync": "^6.0.5",
48
48
  "@types/node": "^22.13.4",
49
49
  "@types/prompt": "^1.1.9",
50
- "complete-node": "^1.7.4",
50
+ "complete-node": "^2.0.0",
51
51
  "eslint-plugin-sort-exports": "^0.9.1",
52
52
  "glob": "^11.0.1",
53
53
  "typescript": "^5.7.3",
@@ -187,12 +187,8 @@ async function installNodeModules(
187
187
  `Installing node modules with "${command}"... (This can take a long time.)`,
188
188
  );
189
189
  const $$ = $({ cwd: projectPath });
190
- /// const commandParts = command.split(" ");
191
- console.log("GETTING HERE 1");
192
- await $`echo lol1`;
193
- console.log("GETTING HERE 2");
194
- await $$`echo lol2`;
195
- console.log("GETTING HERE 3");
190
+ const commandParts = command.split(" ");
191
+ await $$`${commandParts}`;
196
192
  }
197
193
 
198
194
  async function formatFiles(projectPath: string) {