Skip to content

Commit

Permalink
Merge pull request #10015 from bertdeblock/update-glob-dependency
Browse files Browse the repository at this point in the history
Update `glob` to v8
  • Loading branch information
bertdeblock committed Sep 13, 2022
2 parents 6e56aa3 + 4ebaf78 commit 51b46cc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -87,7 +87,7 @@
"fs-tree-diff": "^2.0.1",
"get-caller-file": "^2.0.5",
"git-repo-info": "^2.1.1",
"glob": "^7.2.0",
"glob": "^8.0.3",
"heimdalljs": "^0.2.6",
"heimdalljs-fs-monitor": "^1.1.1",
"heimdalljs-graph": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/init-test.js
Expand Up @@ -92,7 +92,7 @@ describe('Acceptance: ember init', function () {

function pickSync(filePath, pattern) {
return glob
.sync(path.join('**', pattern), {
.sync(`**/${pattern}`, {
cwd: filePath,
dot: true,
mark: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/models/blueprint-test.js
Expand Up @@ -392,7 +392,7 @@ describe('Blueprint', function () {
await blueprint.install(options);
let actualFiles = walkSync(tmpdir).sort();
let globFiles = glob
.sync(path.join('**', '*.txt'), {
.sync('**/*.txt', {
cwd: tmpdir,
dot: true,
mark: true,
Expand Down
15 changes: 13 additions & 2 deletions yarn.lock
Expand Up @@ -4185,7 +4185,7 @@ glob-parent@^6.0.1:
dependencies:
is-glob "^4.0.3"

glob@7.2.0, glob@^7.0.0, glob@^7.0.4, glob@^7.1.0, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0:
glob@7.2.0, glob@^7.0.0, glob@^7.0.4, glob@^7.1.0, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
version "7.2.0"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
Expand All @@ -4208,6 +4208,17 @@ glob@^5.0.10:
once "^1.3.0"
path-is-absolute "^1.0.0"

glob@^8.0.3:
version "8.0.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e"
integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
inherits "2"
minimatch "^5.0.1"
once "^1.3.0"

global-dirs@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686"
Expand Down Expand Up @@ -6108,7 +6119,7 @@ minimatch@5.0.1:
dependencies:
brace-expansion "^2.0.1"

minimatch@^5.1.0:
minimatch@^5.0.1, minimatch@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
Expand Down

0 comments on commit 51b46cc

Please sign in to comment.