Bump glob from 7.1.6 to 7.1.7 (#10)

* Bump glob from 7.1.6 to 7.1.7

Bumps [glob](https://github.com/isaacs/node-glob) from 7.1.6 to 7.1.7.
- [Release notes](https://github.com/isaacs/node-glob/releases)
- [Changelog](https://github.com/isaacs/node-glob/blob/master/changelog.md)
- [Commits](https://github.com/isaacs/node-glob/compare/v7.1.6...v7.1.7)

---
updated-dependencies:
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* update license and index.js

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MOREL Matthieu <matthieu.morel@cnp.fr>
This commit is contained in:
dependabot[bot] 2021-07-24 09:36:58 +02:00 committed by GitHub
parent 0b4eef1d0a
commit 1bd916081b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 17 deletions

View file

@ -1,6 +1,6 @@
--- ---
name: glob name: glob
version: 7.1.6 version: 7.1.7
type: npm type: npm
summary: a little globber summary: a little globber
homepage: https://github.com/isaacs/node-glob#readme homepage: https://github.com/isaacs/node-glob#readme

14
dist/index.js vendored
View file

@ -2687,8 +2687,6 @@ var path = __webpack_require__(622)
var assert = __webpack_require__(357) var assert = __webpack_require__(357)
var isAbsolute = __webpack_require__(681) var isAbsolute = __webpack_require__(681)
var common = __webpack_require__(856) var common = __webpack_require__(856)
var alphasort = common.alphasort
var alphasorti = common.alphasorti
var setopts = common.setopts var setopts = common.setopts
var ownProp = common.ownProp var ownProp = common.ownProp
var childrenIgnored = common.childrenIgnored var childrenIgnored = common.childrenIgnored
@ -4308,8 +4306,6 @@ var assert = __webpack_require__(357)
var isAbsolute = __webpack_require__(681) var isAbsolute = __webpack_require__(681)
var globSync = __webpack_require__(245) var globSync = __webpack_require__(245)
var common = __webpack_require__(856) var common = __webpack_require__(856)
var alphasort = common.alphasort
var alphasorti = common.alphasorti
var setopts = common.setopts var setopts = common.setopts
var ownProp = common.ownProp var ownProp = common.ownProp
var inflight = __webpack_require__(674) var inflight = __webpack_require__(674)
@ -8209,8 +8205,6 @@ exports.DownloadHttpClient = DownloadHttpClient;
/***/ 856: /***/ 856:
/***/ (function(__unusedmodule, exports, __webpack_require__) { /***/ (function(__unusedmodule, exports, __webpack_require__) {
exports.alphasort = alphasort
exports.alphasorti = alphasorti
exports.setopts = setopts exports.setopts = setopts
exports.ownProp = ownProp exports.ownProp = ownProp
exports.makeAbs = makeAbs exports.makeAbs = makeAbs
@ -8228,12 +8222,8 @@ var minimatch = __webpack_require__(93)
var isAbsolute = __webpack_require__(681) var isAbsolute = __webpack_require__(681)
var Minimatch = minimatch.Minimatch var Minimatch = minimatch.Minimatch
function alphasorti (a, b) {
return a.toLowerCase().localeCompare(b.toLowerCase())
}
function alphasort (a, b) { function alphasort (a, b) {
return a.localeCompare(b) return a.localeCompare(b, 'en')
} }
function setupIgnores (self, options) { function setupIgnores (self, options) {
@ -8361,7 +8351,7 @@ function finish (self) {
all = Object.keys(all) all = Object.keys(all)
if (!self.nosort) if (!self.nosort)
all = all.sort(self.nocase ? alphasorti : alphasort) all = all.sort(alphasort)
// at *some* point we statted all of these // at *some* point we statted all of these
if (self.mark) { if (self.mark) {

6
package-lock.json generated
View file

@ -4875,9 +4875,9 @@
} }
}, },
"glob": { "glob": {
"version": "7.1.6", "version": "7.1.7",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"requires": { "requires": {
"fs.realpath": "^1.0.0", "fs.realpath": "^1.0.0",
"inflight": "^1.0.4", "inflight": "^1.0.4",

View file

@ -43,7 +43,7 @@
"eslint": "^7.31.0", "eslint": "^7.31.0",
"eslint-plugin-github": "^4.1.5", "eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^24.4.0", "eslint-plugin-jest": "^24.4.0",
"glob": "^7.1.6", "glob": "^7.1.7",
"jest": "^26.6.3", "jest": "^26.6.3",
"jest-circus": "^27.0.6", "jest-circus": "^27.0.6",
"prettier": "^2.3.2", "prettier": "^2.3.2",