complete-cli 1.0.1-dev.1 → 1.0.1-dev.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.
@@ -115,7 +115,11 @@ async function installNodeModules(projectPath, skipInstall, packageManager) {
115
115
  promptLog(`Installing node modules with "${command}"... (This can take a long time.)`);
116
116
  const $$ = $({ cwd: projectPath });
117
117
  /// const commandParts = command.split(" ");
118
- await $$ `${packageManager} install`;
118
+ console.log("GETTING HERE 1");
119
+ await $ `echo lol1`;
120
+ console.log("GETTING HERE 2");
121
+ await $$ `echo lol2`;
122
+ console.log("GETTING HERE 3");
119
123
  }
120
124
  async function formatFiles(projectPath) {
121
125
  const $$ = $({ cwd: projectPath });
@@ -10,5 +10,5 @@
10
10
  "complete-tsconfig/tsconfig.node.json",
11
11
  ],
12
12
 
13
- "include": ["*.ts"],
13
+ "include": ["./**/*.ts"],
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.0.1-dev.1",
3
+ "version": "1.0.1-dev.3",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -188,7 +188,11 @@ async function installNodeModules(
188
188
  );
189
189
  const $$ = $({ cwd: projectPath });
190
190
  /// const commandParts = command.split(" ");
191
- await $$`${packageManager} install`;
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");
192
196
  }
193
197
 
194
198
  async function formatFiles(projectPath: string) {