Open
Description
for eg
if this is my code
import { NodeDependency, NodeDependencyType } from 'schematics-utilities';
const dependencies: NodeDependency[] = [
{ type: NodeDependencyType.Dev, version: '^23.6.0', name: 'jest' },
{ type: NodeDependencyType.Dev, version: '^3.0.0', name: '@angular/material' }
];
can I add the registry for that dependency like this?
{ type: NodeDependencyType.Dev, version: '^3.0.0', name: '@angular/material' , registry: 'www.google.com/material'}
Or is there any other way to do this?