Skip to content

Commit 3e40974

Browse files
authored
chore(atomizer): update glob and minimatch to latest (#632)
1 parent 12de89b commit 3e40974

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"atomizer": minor
3+
---
4+
5+
chore(atomizer): update glob and minimatch to latest versions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"file-saver": "^2.0.5",
7777
"fluxible": "^1.4.2",
7878
"fluxible-addons-react": "^1.2.0",
79-
"glob": "^8.0.3",
79+
"glob": "^10.0.0",
8080
"grunt": "^1.5.3",
8181
"grunt-cli": "^1.4.3",
8282
"grunt-contrib-clean": "^2.0.0",

packages/atomizer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"chalk": "^4.0.0",
4040
"chokidar": "^3.5.3",
4141
"commander": "^10.0.0",
42-
"glob": "^8.0.3",
42+
"glob": "^10.0.0",
4343
"lodash": "^4.17.21",
44-
"minimatch": "^6.1.5",
44+
"minimatch": "^9.0.0",
4545
"xregexp": "^5.1.0"
4646
},
4747
"repository": {

scripts/buildSearch.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
import fs from 'fs';
11-
import glob from 'glob';
11+
import { sync } from 'glob';
1212
import lodash from 'lodash';
1313
import lunr from 'lunr';
1414
import { marked } from 'marked';
@@ -75,7 +75,7 @@ const globOpts = {
7575
cwd: DOCS_PATH,
7676
ignore: ['**/index.md', '404.md', 'README.md'],
7777
};
78-
const files = glob.sync(pattern, globOpts);
78+
const files = sync(pattern, globOpts);
7979

8080
// setup index
8181
const index = lunr(function () {

0 commit comments

Comments
 (0)