Gulp में फाइल्स कैसे देखें? [डुप्लिकेट]

Aug 15 2020

मैं वेब डेवलपमेंट में एक पुराना कोर्स ले रहा हूं और मैं gulp से संबंधित हो गया हूं। मैं यह पता लगाने की कोशिश कर रहा हूं कि गुल घड़ी का उपयोग करके फ़ाइलों को कैसे देखा जाए। जब भी मैंने अपने कमांड में "गल्प वॉच" मारा, मुझे एक त्रुटि संदेश मिला। क्या कोई इसे ठीक करना जानता है? यहाँ मेरा gulpfile.js कोड है:

<pre>
var gulp = require('gulp'),
watch = require('gulp-watch');

gulp.task('default', function() {
  console.log("This is a gulp task");
});

gulp.task('html', function() {
  console.log("This is your HTML");
});

gulp.task('styles', function() {
  console.log("This is for your css/sass/postcss`enter code here`");
});

gulp.task('watch', function() {

  watch('./app/index.html', function() {
    gulp.start('html');
  });

  watch('./app/assets/styles/**/*.css', function() {
    gulp.start('styles');
  });

});
</pre>

यहाँ त्रुटि संदेश है:

(node:7812) UnhandledPromiseRejectionWarning: TypeError: gulp.start is not a function
(node:7812) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:7812) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

जवाब

nunop Aug 17 2020 at 21:30

चूंकि gulp.startv4 के बाद से पदावनत कर दिया गया है और आप इस संस्करण का उपयोग कर रहे हैं जो आप gulp.seriesइसके बजाय आज़माना चाह सकते हैं :

gulp.task('watch', gulp.series('styles', 'html',  function(done) {
    gulp.watch('./app/assets/styles/**/*.css', gulp.series('styles'));
    gulp.watch('./app/index.html', gulp.series('html'));
    done();
}));