Skip to content

Commit a5bbcd5

Browse files
committed
test(@angular/cli): use correct version of devkit packages for universal test
1 parent bc2efc9 commit a5bbcd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/legacy-cli/e2e/tests/build/platform-server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ export default async function () {
1212

1313
// @nguniversal/express-engine currently relies on ^0.1000.0 of @angular-devkit/architect
1414
// which is not present in the local package registry and not semver compatible with 0.1001.0+
15-
const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1000', '--registry=https://registry.npmjs.org');
15+
const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1001', '--registry=https://registry.npmjs.org');
1616
await silentNpm('publish', stdout1.trim(), '--registry=http://localhost:4873', '--tag=minor');
1717

1818
// @nguniversal/express-engine currently relies on ^10.0.0 of @angular-devkit/core
1919
// which is not present in the local package registry and not semver compatible prerelease version of 10.1.0
20-
const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.0', '--registry=https://registry.npmjs.org');
20+
const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.1', '--registry=https://registry.npmjs.org');
2121
await silentNpm('publish', stdout2.trim(), '--registry=http://localhost:4873', '--tag=minor');
2222

2323
await ng('add', '@nguniversal/express-engine');

0 commit comments

Comments
 (0)