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
|
-
|
|
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 });
|
package/package.json
CHANGED
|
@@ -188,7 +188,11 @@ async function installNodeModules(
|
|
|
188
188
|
);
|
|
189
189
|
const $$ = $({ cwd: projectPath });
|
|
190
190
|
/// const commandParts = command.split(" ");
|
|
191
|
-
|
|
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) {
|