Co jest nie tak z tym plikiem łyku? Kiedy otwiera przeglądarkę, nie wyświetla ona pliku index.html. Zamiast tego wyświetla zawartość "dist", czyli katalogu zawierającego index.html.Gulp-Connect wyświetla listę zamiast wyświetlać index.html. Czemu?
"use strict";
var gulp = require('gulp');
var connect = require('gulp-connect'); // Runs a local dev server
var open = require('gulp-open');
var config = {
port: 9005,
devBaseUrl: 'http://localhost',
paths: {
html: './src/*.html',
dist: './dist'
}
};
//Start a local development server
gulp.task('connect', function() {
connect.server({
root: ['dist'],
port: config.port,
base: config.devBaseUrl,
livereload: true
});
});
gulp.task('open', ['connect'], function() {
gulp.src('dist/index.html')
.pipe(open({
uri: config.devBaseUrl + ':' + config.port + '/',
app: 'chrome' }));
});
gulp.task('html', function() {
gulp.src(config.paths.html)
.pipe(gulp.dest(config.paths.dist))
.pipe(connect.reload());
});
gulp.task('watch', function() {
gulp.watch(config.paths.html, ['html']);
});
gulp.task('default', ['html', 'open', 'watch']);
Ta wskazówka była ratunkiem. Dziękuję Ci! –
Ten problem został rozwiązany w wersji 3.2.0. –
Dziękujemy za aktualizację. :-) –