Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/gulp-changed
Only pass through changed files
https://github.com/sindresorhus/gulp-changed
gulp-plugin javascript nodejs
Last synced: 27 days ago
JSON representation
Only pass through changed files
- Host: GitHub
- URL: https://github.com/sindresorhus/gulp-changed
- Owner: sindresorhus
- License: mit
- Created: 2014-01-17T23:36:38.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T16:45:12.000Z (8 months ago)
- Last Synced: 2024-04-13T21:26:22.134Z (7 months ago)
- Topics: gulp-plugin, javascript, nodejs
- Language: JavaScript
- Size: 71.3 KB
- Stars: 742
- Watchers: 16
- Forks: 45
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# gulp-changed
> Only pass through changed files
No more wasting precious time on processing unchanged files.
By default it's only able to detect whether files in the stream changed. If you require something more advanced like knowing if imports/dependencies changed, create a custom comparator, or use [another plugin](https://github.com/gulpjs/gulp#incremental-builds).
## Install
```sh
npm install --save-dev gulp-changed
```## Usage
```js
import gulp from 'gulp';
import changed from 'gulp-changed';
import ngAnnotate from 'gulp-ng-annotate'; // Just as an exampleconst SOURCE = 'src/*.js';
const DESTINATION = 'dist';exports.default = () => (
gulp.src(SOURCE)
.pipe(changed(DESTINATION))
// `ngAnnotate` will only get the files that
// changed since the last time it was run
.pipe(ngAnnotate())
.pipe(gulp.dest(DESTINATION))
);
```## API
### changed(destination, options?)
#### destination
Type: `string | Function`
Destination directory. Same as you put into `gulp.dest()`.
This is needed to be able to compare the current files with the destination files.
Can also be a function returning a destination directory path.
#### options
Type: `object`
##### cwd
Type: `string`\
Default: `process.cwd()`Working directory the folder is relative to.
##### extension
Type: `string`
Extension of the destination files.
Useful if it differs from the original, like in the example below:
```js
export const jade = () => (
gulp.src('src/**/*.jade')
.pipe(changed('app', {extension: '.html'}))
.pipe(jade())
.pipe(gulp.dest('app'))
);
```##### hasChanged
Type: `Function`\
Default: `compareLastModifiedTime`Function that determines whether the source file is different from the destination file.
###### Built-in comparators
Named imports:
- `compareLastModifiedTime`
- `compareContents`###### Example
```js
import {compareContents} from 'gulp-changed';export const jade = () => (
gulp.src('src/**/*.jade')
.pipe(changed('app', {hasChanged: compareContents}))
.pipe(jade())
.pipe(gulp.dest('app'))
);
```You can also specify a custom comparator function, which will receive the following arguments:
- `sourceFile` *([Vinyl file object](https://github.com/wearefractal/vinyl#file))*
- `destinationPath` *(string)* - The destination for `sourceFile` as an absolute pathThe function is expected to return `sourceFile | Promise` if it passes some comparison or `undefined | Promise`. [Examples.](https://github.com/sindresorhus/gulp-changed/blob/4e59a0105c8c10c56f9f8cd153c696e005afa64f/index.js#L7-L28)
##### transformPath
Type: `Function`
Function to transform the path to the destination file. Should return the absolute path to the (renamed) destination file.
Useful if you rename your file later on, like in the below example:
```js
export const marked = () => (
gulp.src('src/content/about.md')
.pipe(changed('dist', {
transformPath: newPath => path.join(path.dirname(newPath), path.basename(newPath, '.md'), 'index.html')
}))
.pipe(marked())
.pipe(rename(newPath => path.join(path.dirname(newPath), path.basename(newPath, '.md'), 'index.html')))
.pipe(gulp.dest('dist'))
);
```## In-place change monitoring
If you're looking to process source files in-place without any build output (formatting, linting, etc), have a look at [gulp-changed-in-place](https://github.com/alexgorbatchev/gulp-changed-in-place).