diff --git a/tests/legacy-cli/e2e/tests/build/platform-server.ts b/tests/legacy-cli/e2e/tests/build/platform-server.ts index f3e6cff75322..48f61ff81a87 100644 --- a/tests/legacy-cli/e2e/tests/build/platform-server.ts +++ b/tests/legacy-cli/e2e/tests/build/platform-server.ts @@ -12,12 +12,12 @@ export default async function () { // @nguniversal/express-engine currently relies on ^0.1000.0 of @angular-devkit/architect // which is not present in the local package registry and not semver compatible with 0.1001.0+ - const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1000', '--registry=https://registry.npmjs.org'); + const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1001', '--registry=https://registry.npmjs.org'); await silentNpm('publish', stdout1.trim(), '--registry=http://localhost:4873', '--tag=minor'); // @nguniversal/express-engine currently relies on ^10.0.0 of @angular-devkit/core // which is not present in the local package registry and not semver compatible prerelease version of 10.1.0 - const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.0', '--registry=https://registry.npmjs.org'); + const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.1', '--registry=https://registry.npmjs.org'); await silentNpm('publish', stdout2.trim(), '--registry=http://localhost:4873', '--tag=minor'); await ng('add', '@nguniversal/express-engine');