This repository was archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 478
This repository was archived by the owner on Nov 22, 2024. It is now read-only.
Can not add express-engine to fresh Angular 9 Project #1413
Copy link
Copy link
Closed
Description
Bug Report
What is the expected behavior?
It should add the express engine and angular universal
What is the current behavior?
An error occurs and nothing changes:
Debug Failure. False expression: node_modules/@types/node/ts3.2/index.d.ts linked to nonexistent file XXXX/testapp/node_modules/@types/node/ts3.2/index.d.ts
The file exists and is not empty:
// NOTE: These definitions support NodeJS and TypeScript 3.2.
// NOTE: TypeScript version-specific augmentations can be found in the following paths:
// - ~/base.d.ts - Shared definitions common to all TypeScript versions
// - ~/index.d.ts - Definitions specific to TypeScript 2.1
// - ~/ts3.2/index.d.ts - Definitions specific to TypeScript 3.2
// Reference required types from the default lib:
/// <reference lib="es2018" />
/// <reference lib="esnext.asynciterable" />
/// <reference lib="esnext.intl" />
/// <reference lib="esnext.bigint" />
// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
// tslint:disable-next-line:no-bad-reference
/// <reference path="../base.d.ts" />
// TypeScript 3.2-specific augmentations:
/// <reference path="fs.d.ts" />
/// <reference path="util.d.ts" />
/// <reference path="globals.d.ts" />
What modules are related to this issue?
- [ ] aspnetcore-engine
- [ ] builders
- [] common
- [x] express-engine
- [ ] hapi-engine
- [ ] module-map-ngfactory-loader
Minimal reproduction with instructions:
ng new testapp [ I selected SCSS + RouterModule ]
cd testapp
ng add @nguniversal/express-engine@next --clientProject testapp
What is the use-case or motivation for changing an existing behavior?
Adding Angular Universal for a new Angular 9 Ivy based project
Environment:
@nguniversal versions
- common: 9.0.0-rc.7
- express-engine: @next (9.0.0-next.13)
Angular CLI: 9.0.0-rc.7
Node: 12.7.0
OS: win32 x64
Angular:
...
Ivy Workspace:
Package Version
------------------------------------------------------
@angular-devkit/architect 0.900.0-rc.7
@angular-devkit/core 9.0.0-rc.7
@angular-devkit/schematics 9.0.0-rc.7
@schematics/angular 9.0.0-rc.7
@schematics/update 0.900.0-rc.7
rxjs 6.5.3
Avcajaraville