micromatch 3.0.2 → 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.

Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +19 -13
package/README.md CHANGED
@@ -87,8 +87,8 @@ console.log(mm.isMatch('foo', 'f*'));
87
87
 
88
88
  * Supports all of the same matching features as [minimatch](https://github.com/isaacs/minimatch) and [multimatch](https://github.com/sindresorhus/multimatch)
89
89
  * Micromatch uses [snapdragon](https://github.com/jonschlinkert/snapdragon) for parsing and compiling globs, which provides granular control over the entire conversion process in a way that is easy to understand, reason about, and maintain.
90
- * More accurate, with more than 36,000 [test assertions](./test) to prove it.
91
- * More complete support for the Bash 4.3 specification than minimatch and multimatch. Micromatch passes _all of the spec tests_ from bash, including some that bash still fails.
90
+ * More consistently accurate matching [than minimatch](https://github.com/yarnpkg/yarn/pull/3339), with more than 36,000 [test assertions](./test) to prove it.
91
+ * More complete support for the Bash 4.3 specification than minimatch and multimatch. In fact, micromatch passes _all of the spec tests_ from bash, including some that bash still fails.
92
92
  * [Faster matching](#benchmarks), from a combination of optimized glob patterns, faster algorithms, and regex caching.
93
93
  * [Micromatch is safer](https://github.com/micromatch/braces#braces-is-safe), and is not subject to DoS with brace patterns, like minimatch and multimatch.
94
94
  * More reliable windows support than minimatch and multimatch.
@@ -953,7 +953,7 @@ npm i -d && npm run benchmark
953
953
 
954
954
  ### Latest results
955
955
 
956
- As of May 31, 2017 (longer bars are better):
956
+ As of June 02, 2017 (longer bars are better):
957
957
 
958
958
  ```sh
959
959
  # braces-globstar-large-list
@@ -1028,7 +1028,7 @@ Please read the [contributing guide](.github/contributing.md) for advice on open
1028
1028
 
1029
1029
  | **Commits** | **Contributor** |
1030
1030
  | --- | --- |
1031
- | 419 | [jonschlinkert](https://github.com/jonschlinkert) |
1031
+ | 423 | [jonschlinkert](https://github.com/jonschlinkert) |
1032
1032
  | 12 | [es128](https://github.com/es128) |
1033
1033
  | 3 | [paulmillr](https://github.com/paulmillr) |
1034
1034
  | 2 | [TrySound](https://github.com/TrySound) |
@@ -1072,4 +1072,4 @@ Released under the [MIT License](LICENSE).
1072
1072
 
1073
1073
  ***
1074
1074
 
1075
- _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on May 31, 2017._
1075
+ _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 02, 2017._
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "micromatch",
3
3
  "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.",
4
- "version": "3.0.2",
4
+ "version": "3.0.3",
5
5
  "homepage": "https://github.com/micromatch/micromatch",
6
6
  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7
7
  "contributors": [
@@ -34,30 +34,30 @@
34
34
  "test": "mocha"
35
35
  },
36
36
  "dependencies": {
37
- "arr-diff": "^3.0.0",
37
+ "arr-diff": "^4.0.0",
38
38
  "array-unique": "^0.3.2",
39
- "braces": "^2.0.3",
40
- "define-property": "^0.2.5",
39
+ "braces": "^2.2.2",
40
+ "define-property": "^1.0.0",
41
41
  "extend-shallow": "^2.0.1",
42
42
  "extglob": "^1.1.0",
43
43
  "fragment-cache": "^0.2.1",
44
- "kind-of": "^3.1.0",
45
- "nanomatch": "^1.1.1",
44
+ "kind-of": "^4.0.0",
45
+ "nanomatch": "^1.2.0",
46
46
  "object.pick": "^1.2.0",
47
47
  "regex-not": "^1.0.0",
48
48
  "snapdragon": "^0.8.1",
49
49
  "to-regex": "^3.0.1"
50
50
  },
51
51
  "devDependencies": {
52
- "bash-match": "^0.2.0",
52
+ "bash-match": "^1.0.2",
53
53
  "for-own": "^1.0.0",
54
54
  "gulp": "^3.9.1",
55
55
  "gulp-format-md": "^0.1.12",
56
56
  "gulp-istanbul": "^1.1.1",
57
- "gulp-mocha": "^3.0.0",
57
+ "gulp-mocha": "^4.3.1",
58
58
  "gulp-unused": "^0.2.1",
59
59
  "is-windows": "^1.0.1",
60
- "minimatch": "^3.0.3",
60
+ "minimatch": "^3.0.4",
61
61
  "minimist": "^1.2.0",
62
62
  "mocha": "^3.4.2",
63
63
  "multimatch": "^2.1.0"
@@ -93,8 +93,14 @@
93
93
  ],
94
94
  "lintDeps": {
95
95
  "dependencies": {
96
- "lock": {
97
- "snapdragon": "^0.8.1"
96
+ "files": [
97
+ "index.js",
98
+ "lib/**"
99
+ ],
100
+ "options": {
101
+ "lock": {
102
+ "snapdragon": "^0.8.1"
103
+ }
98
104
  }
99
105
  },
100
106
  "devDependencies": {
@@ -135,12 +141,12 @@
135
141
  "reflinks": true
136
142
  },
137
143
  "reflinks": [
144
+ "expand-brackets",
138
145
  "extglob",
139
146
  "glob-object",
140
147
  "minimatch",
141
148
  "multimatch",
142
- "snapdragon",
143
- "expand-brackets"
149
+ "snapdragon"
144
150
  ]
145
151
  }
146
152
  }