Skip to content

Commit 9944a55

Browse files
jamesgpearcezertosh
authored andcommittedMay 25, 2016
Explain the double negatives a bit better (#197)
* Explain the double negatives a bit better The previous version was correct; just needed some clarification I felt. * typo and ?! explanation
1 parent d9e3029 commit 9944a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ browserify().transform("babelify", {
192192
});
193193
```
194194

195-
The above example will transform all files except those in the `node_modules` directory that are not in `node_modules/app`.
195+
The above example will result in a transform that also includes the `app` module in `node_modules`: the `global` flag transform all files, and the `ignore` regular expression then excludes all those in the `node_modules` directory *except* those that are in `node_modules/app` (since `?!` will match if the given suffix is absent).
196196

197197
### Why am I not getting source maps?
198198

0 commit comments

Comments
 (0)
Please sign in to comment.