Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit e961833

Browse files
committedNov 22, 2016
fix: missing zone from the build file
1 parent cd727ff commit e961833

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
 

‎gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ gulp.task('build/zone-node.js', ['compile-esm'], function(cb) {
7474
// Zone for the browser.
7575
gulp.task('build/zone.js', ['compile-esm'], function(cb) {
7676

77-
return generateScript('./lib/browser/browser.ts', 'zone.js', false, cb);
77+
return generateScript('./lib/browser/rollup-main.ts', 'zone.js', false, cb);
7878
});
7979

8080
gulp.task('build/zone.min.js', ['compile-esm'], function(cb) {

‎lib/browser/rollup-main.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
10+
import '../zone';
11+
import './browser';

0 commit comments

Comments
 (0)
This repository has been archived.