Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
language: node_js
language: node_js
node_js:
- "node"
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ gulp.task("default", ["scripts"]);
* Set this to `true` if you want `gulp-include` to throw errors if a file does not match
an include directive.
* If set to `false` gulp include will not fail, but display warnings in the console.

- `separateInputs` (optional)
* Boolean, `true` by default
* Set this to `false` if you want to process each input file independent, when executing "require" logic.
So, if file required several times inside one file (or inside required by it files), then dublicates will be ignored.
But when another file will begin processing, all information about required files from previuos file will be discarded.

#### Example options usage:
```js
Expand Down
Loading