We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b699ad2 commit b19a348Copy full SHA for b19a348
packages/schematics/update/update/npm.ts
@@ -56,7 +56,7 @@ function _readNpmRc(): Observable<{ [key: string]: string }> {
56
57
allOptionsArr.forEach(x => {
58
const [key, ...value] = x.split('=');
59
- allOptions[key] = value.join('=');
+ allOptions[key.trim()] = value.join('=').trim();
60
});
61
62
subject.next(allOptions);
0 commit comments