Jestem nowy w węźle i rozwijam się w każdym "właściwym" środowisku. Zainstalowałem łyk na mój obecny projekt, razem z mocha i kilkoma innymi modułami. Oto moje gulpfile.js:Gulp wisi po "Wykończeniu"
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var eslint = require('gulp-eslint');
gulp.task('lint', function() {
return gulp.src(['js/**/*.js'])
// eslint() attaches the lint output to the eslint property
// of the file object so it can be used by other modules.
.pipe(eslint())
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failOnError last.
.pipe(eslint.failOnError());
});
gulp.task('test', function() {
return gulp.src('tests/test.js', {read: false})
// gulp-mocha needs filepaths so you can't have any plugins before it
.pipe(mocha({reporter: 'list'}));
});
gulp.task('default', ['lint','test'], function() {
// This will only run if the lint task is successful...
});
Kiedy uruchamiam „łyk”, wydaje się, aby wypełnić wszystkie swoje zadania, ale zawiesza się. Muszę ctrl + c, aby wrócić do wiersza polecenia. Jak mogę go poprawnie zakończyć?
uruchomić dowolny zadań przez siebie ('' test' haustem haustem lint'), oni zawiesić? W tym miejscu wyciąłem i wkleiłem twój kod i nie mam problemu z jego uruchomieniem. Nic się nie wisi. – Louis
Spróbuję tego później, dzięki. – Ooberdan