Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 51bcce6

Browse files
committed
fix(build): correct the angular/angular source pattern for the serve-and-sync-api gulp task
1 parent ec076f8 commit 51bcce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ function filterOutExcludedPatterns(fileNames, excludeMatchers) {
12121212
}
12131213

12141214
function apiSourceWatch(postBuildAction) {
1215-
var srcPattern = [path.join(ANGULAR_PROJECT_PATH, 'modules/@angular/src/**/*.*')];
1215+
var srcPattern = [path.join(ANGULAR_PROJECT_PATH, 'modules/@angular/**/*.*')];
12161216
gulp.watch(srcPattern, {readDelay: 500}, function (event, done) {
12171217
gutil.log('API source changed');
12181218
gutil.log('Event type: ' + event.event); // added, changed, or deleted

0 commit comments

Comments
 (0)