We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce50fa commit a3f2629Copy full SHA for a3f2629
tests/e2e/setup/500-create-project.ts
@@ -45,6 +45,9 @@ export default function() {
45
.filter(name => name.match(/^@angular\//))
46
.forEach(name => {
47
const pkgName = name.split(/\//)[1];
48
+ if (pkgName == 'cli') {
49
+ return;
50
+ }
51
json['dependencies'][`@angular/${pkgName}`]
52
= `github:angular/${pkgName}-builds${label}`;
53
});
@@ -53,6 +56,9 @@ export default function() {
56
54
57
55
58
59
60
61
62
json['devDependencies'][`@angular/${pkgName}`]
63
64
0 commit comments