Skip to content

Commit

Permalink
fix(@nguniversal/express-engine): replace zone.js import
Browse files Browse the repository at this point in the history
Replace the old style import with the new one.

(cherry picked from commit 98b508e)
  • Loading branch information
alan-agius4 committed Oct 27, 2022
1 parent 8f47c59 commit eab35cf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion integration/common-engine/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'zone.js/dist/zone-node';
import 'zone.js/node';
import { CommonEngine } from '@nguniversal/common/engine';
import * as express from 'express';
import { join } from 'path';
Expand Down
2 changes: 1 addition & 1 deletion integration/express-engine-ivy-hybrid/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'zone.js/dist/zone-node';
import 'zone.js/node';

import { APP_BASE_HREF } from '@angular/common';
import { ngExpressEngine } from '@nguniversal/express-engine';
Expand Down
2 changes: 1 addition & 1 deletion integration/express-engine-ivy/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'zone.js/dist/zone-node';
import 'zone.js/node';

import { APP_BASE_HREF } from '@angular/common';
import { ngExpressEngine } from '@nguniversal/express-engine';
Expand Down
2 changes: 1 addition & 1 deletion modules/builders/testing/hello-world-app/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'zone.js/dist/zone-node';
import 'zone.js/node';

import { renderModule } from '@angular/platform-server';
import * as express from 'express';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'zone.js/dist/zone-node';
import 'zone.js/node';

import {APP_BASE_HREF} from '@angular/common';
import {ngExpressEngine} from '@nguniversal/express-engine';
Expand Down

0 comments on commit eab35cf

Please sign in to comment.