micromatch 2.3.11 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of micromatch might be problematic. Click here for more details.
- package/CHANGELOG.md +37 -0
- package/LICENSE +1 -1
- package/README.md +735 -349
- package/index.js +699 -283
- package/lib/cache.js +1 -0
- package/lib/compilers.js +78 -0
- package/lib/parsers.js +83 -0
- package/lib/utils.js +246 -83
- package/package.json +85 -47
- package/lib/chars.js +0 -67
- package/lib/expand.js +0 -304
- package/lib/glob.js +0 -193
package/CHANGELOG.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
## History
|
2
|
+
|
3
|
+
### key
|
4
|
+
|
5
|
+
Changelog entries are classified using the following labels _(from [keep-a-changelog][]_):
|
6
|
+
|
7
|
+
- `added`: for new features
|
8
|
+
- `changed`: for changes in existing functionality
|
9
|
+
- `deprecated`: for once-stable features removed in upcoming releases
|
10
|
+
- `removed`: for deprecated features removed in this release
|
11
|
+
- `fixed`: for any bug fixes
|
12
|
+
- `bumped`: updated dependencies, only minor or higher will be listed.
|
13
|
+
|
14
|
+
### [3.0.0] - 2017-04-11
|
15
|
+
|
16
|
+
TODO
|
17
|
+
|
18
|
+
### [1.0.1] - 2016-12-12
|
19
|
+
|
20
|
+
**Added**
|
21
|
+
|
22
|
+
- Support for windows path edge cases where backslashes are used in brackets or other unusual combinations.
|
23
|
+
|
24
|
+
### [1.0.0] - 2016-12-12
|
25
|
+
|
26
|
+
Stable release.
|
27
|
+
|
28
|
+
### [0.1.0] - 2016-10-08
|
29
|
+
|
30
|
+
First release.
|
31
|
+
|
32
|
+
|
33
|
+
[Unreleased]: https://github.com/jonschlinkert/micromatch/compare/0.1.0...HEAD
|
34
|
+
[0.2.0]: https://github.com/jonschlinkert/micromatch/compare/0.1.0...0.2.0
|
35
|
+
|
36
|
+
[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
|
37
|
+
|
package/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2014-
|
3
|
+
Copyright (c) 2014-2017, Jon Schlinkert
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|