Skip to content

Commit

Permalink
chore(atomizer): update glob and minimatch to latest (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
redonkulus authored Apr 11, 2023
1 parent 12de89b commit 3e40974
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/eight-scissors-arrive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"atomizer": minor
---

chore(atomizer): update glob and minimatch to latest versions
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"file-saver": "^2.0.5",
"fluxible": "^1.4.2",
"fluxible-addons-react": "^1.2.0",
"glob": "^8.0.3",
"glob": "^10.0.0",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/atomizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"chalk": "^4.0.0",
"chokidar": "^3.5.3",
"commander": "^10.0.0",
"glob": "^8.0.3",
"glob": "^10.0.0",
"lodash": "^4.17.21",
"minimatch": "^6.1.5",
"minimatch": "^9.0.0",
"xregexp": "^5.1.0"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/buildSearch.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import fs from 'fs';
import glob from 'glob';
import { sync } from 'glob';
import lodash from 'lodash';
import lunr from 'lunr';
import { marked } from 'marked';
Expand Down Expand Up @@ -75,7 +75,7 @@ const globOpts = {
cwd: DOCS_PATH,
ignore: ['**/index.md', '404.md', 'README.md'],
};
const files = glob.sync(pattern, globOpts);
const files = sync(pattern, globOpts);

// setup index
const index = lunr(function () {
Expand Down

0 comments on commit 3e40974

Please sign in to comment.