File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 2.1.0 (April 16, 2016)
2+
3+ * Added pattern-level context
4+ * Added pattern-level ignore
5+ * Added flattening
6+
7+
18## 2.0.0 (Apr 14, 2016)
29
310* Several bug fixes
Original file line number Diff line number Diff line change @@ -53,6 +53,10 @@ A pattern looks like:
5353 - an array of files and directories to ignore
5454 - accepts globs
5555 - globs are evaluated on the ` from ` path, relative to the context
56+ * ` copyUnmodified `
57+ - is optional
58+ - defaults to ` false ` (only copies modified files)
59+ - ` true ` copies all files while using watch or webpack-dev-server
5660
5761### Examples
5862
@@ -128,7 +132,7 @@ module.exports = {
128132 // By default, we only copy modified files during
129133 // a watch or webpack-dev-server build. Setting this
130134 // to `true` copies all files.
131- copyUnmodified: true // defaults to false
135+ copyUnmodified: true
132136 })
133137 ]
134138};
You can’t perform that action at this time.
0 commit comments