我正在尝试在我的gulp管道上设置浏览器同步以进行开发,但我似乎无法让重新加载工作。运行gulp start时会打开浏览器选项卡,但重新加载不会导致后续浏览器刷新。
我在gulpfile中遵循的步骤 -
gulp start - Build ts, copy js, libs and index.html. Start express server. Init browser-sync. Setup watch on source files.
此外,只有在我使用browser-sync运行时才会出现此错误 图片 我运行标准时没有看到上述错误 - 吞 node dist / app.js
我搜遍过这个地方,但找不到一个让我相信我的工作流程有问题的例子。
我可以确认<body>
标记存在,这就是我的源代码在浏览器中的样子 -
<html>
<head>
<base href="/">
<title>Angular 2 QuickStart</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body><script type='text/javascript' id="__bs_script__">//<![CDATA[
document.write("<script async src='/browser-sync/browser-sync-client.2.11.1.js'><\/script>".replace("HOST", location.hostname));
//]]></script>
<script src="lib/es6-shim.min.js"></script>
<script src="lib/system-polyfills.js"></script>
<script src="lib/shims_for_IE.js"></script>
<script src="lib/angular2-polyfills.js"></script>
<script src="lib/system.src.js"></script>
<script src="lib/Rx.js"></script>
<script src="lib/angular2.dev.js"></script>
<script src="lib/router.dev.js"></script>
<script src="lib/http.dev.js"></script>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/main')
.then(null, console.error.bind(console));
</script>
<my-app>Loading...</my-app>
</body>
</html>
我可以看到这里呈现的浏览器同步脚本标记。
我在这里完全失败了。有人可以帮我解决这个/确定这是浏览器同步本身的问题吗?
这是我的gulpfile -
var gulp = require('gulp');
var tsc = require('gulp-typescript');
var tsProject = tsc.createProject('client/tsconfig.json');
var sourcemaps = require('gulp-sourcemaps');
var config = require('./gulp.config')();
var del = require('del');
var browserSync = require('browser-sync').create();
var reload = browserSync.reload;
var node;
var spawn = require('child_process').spawn;
var path = require('path');
gulp.task('clean', function() {
return del(config.distDir);
});
gulp.task('server', ['clean'], function() {
return gulp.src(config.nodeHost)
.pipe(gulp.dest(config.distDir))
});
gulp.task('lib', ['clean'], function() {
return gulp.src(config.angularLibraries)
.pipe(gulp.dest(path.join(config.distDir,'client','lib')));
});
gulp.task('compile-ts', ['clean'], function() {
var sourceTsFiles = [
config.allTs,
config.typings
];
var tsResult = gulp.src(sourceTsFiles)
.pipe(sourcemaps.init())
.pipe(tsc(tsProject));
return tsResult.js
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(path.join(config.distDir,'client')));
});
gulp.task('index', ['compile-ts', 'lib', 'clean'], function() {
return gulp.src(config.indexFile)
.pipe(gulp.dest(path.join(config.distDir,'client')));
});
gulp.task('build', ['compile-ts', 'lib', 'index', 'server']);
gulp.task('default', ['build']);
// Deveopment serve tasks - start
gulp.task('watch', function() {
gulp.watch(['./app.js', '!./dist/**', './client/**'], ['stop', 'reload']);
});
gulp.task('browser-sync', ['nodestart'], function() {
browserSync.init(null, {
proxy: "http://localhost:3001",
port: 7000,
});
});
gulp.task('reload-browser-sync', ['nodestart'], function() {
reload();
});
gulp.task('nodestart', ['build'], function() {
node = spawn('node', ['dist/app.js'], { stdio: 'inherit' })
node.on('close', function(code) {
if (code === 8) {
gulp.log('Error detected, waiting for changes...');
}
});
});
gulp.task('start', ['build', 'nodestart', 'watch', 'browser-sync']);
gulp.task('reload', ['build', 'nodestart', 'reload-browser-sync']);
gulp.task('stop', function() {
if (node) node.kill();
});
// Deveopment serve tasks - end
这里是回购 - https://github.com/saumyatripathi/angular_2_gulp_workflow
编辑:对于有兴趣跟踪我在浏览器同步回购中提出的问题进展的人,请点击这里的链接 - https://github.com/BrowserSync/browser-sync/issues/1037
答案 0 :(得分:2)
除了在BrowserSync repo中创建的OP问题之外,还可以参考Misko的这个comment(引用)
错误是由browser-sync-client.2.11.1.js尝试clearInteval(undefined)引入的
在pull request中解决了这个问题,并且将在带有beta.12的zone.js 0.6.5中登陆(见#7700)
<强>更新强>
关于来自BrowserSync的作者@shakyShane的comment,zone.js 0.6.5可能无法真正解决此问题。请关注该问题和这些评论以获取更多信息。
更新2
根据@ stripathi的反馈,这个问题在beta.12和zone.js 0.6.6中得到了解决。
答案 1 :(得分:0)
奇怪的事实。我将lite-server更改为live-server,错误消失了。此外,应用程序上的lite-server更新不会导致页面刷新,实时服务器页面会自动刷新。
答案 2 :(得分:0)
只需更新到当前版本: Angular 2.0.0-beta.12 , zone.js 0.6.6 ,删除es6-promise 来自peerDependency。正如您在latest CHANGELOG
中看到的那样这对我有用。我希望它对其他人有帮助。