0 votes
in JavaScript by
Track Changed Files in Gulp.js

1 Answer

0 votes
by
Track Changed Files
Track Changed Files
  • gulp-changed-in-place plug-in is used to track / monitor the changed files and detects if the files in the stream have changed or not.

  • gulp-changed checks against build files like ES5 files generated by Babel.js from the source ES6 files.

  • gulp-changed-in-place monitors source files, ES6 files

Installation:

$ npm install --save-dev gulp-changed-in-place

Benefits: Allows to apply source formatting or linting only to changed files.

Related questions

0 votes
0 votes
0 votes
asked Feb 25, 2020 in JavaScript by miceperry
0 votes
0 votes
asked Oct 16, 2023 in JavaScript by GeorgeBell
+1 vote
0 votes
asked Aug 24, 2023 in Git by JackTerrance
...