@smartsoft001/cli
Advanced tools
Comparing version 0.0.34 to 0.0.35
{ | ||
"name": "@smartsoft001/cli", | ||
"version": "0.0.34", | ||
"version": "0.0.35", | ||
"bin": { | ||
@@ -5,0 +5,0 @@ "smart": "smart.js" |
@@ -18,2 +18,10 @@ "use strict"; | ||
} | ||
function runInstallDeps(target) { | ||
log('Install dependencies'); | ||
const devDeps = [ | ||
'@smartsoft001/core', | ||
]; | ||
const installDevDeps = `npm i ${devDeps.join(' ')} -D`; | ||
runCommand(installDevDeps, target); | ||
} | ||
function runInstallDevDeps(target) { | ||
@@ -71,2 +79,3 @@ log('Install dev dependencies'); | ||
createNxWorkspace(name); | ||
runInstallDeps(target); | ||
runInstallDevDeps(target); | ||
@@ -73,0 +82,0 @@ runSetNgConfig(target); |
Sorry, the diff of this file is not supported yet
7374
120