Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 291a918

Browse files
vsavkinFrozenPandaz
authored andcommittedAug 18, 2020
fix(core): remove an unnecessary npm install when connecting to cloud
1 parent 1d8f901 commit 291a918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/workspace/src/schematics/shared-new/shared-new.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export function sharedNew(cli: string, options: Schema): Rule {
145145

146146
function addCloudDependencies(options: Schema) {
147147
return options.nxCloud
148-
? addDepsToPackageJson({}, { '@nrwl/nx-cloud': 'latest' })
148+
? addDepsToPackageJson({}, { '@nrwl/nx-cloud': 'latest' }, false)
149149
: noop();
150150
}
151151

0 commit comments

Comments
 (0)
Please sign in to comment.