Skip to content

Commit 5c3475a

Browse files
committed
Updated CHANGELOG.md
1 parent 43a8ebe commit 5c3475a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)