Skip to content

Commit

Permalink
chore(atomizer): upgrade minimatch to 6.x (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
redonkulus authored Jan 22, 2023
1 parent 4dd4e43 commit cd20d0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/spicy-houses-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"atomizer": minor
---

chore(atomizer): upgrade minimatch to 6.x
2 changes: 1 addition & 1 deletion packages/atomizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"commander": "^10.0.0",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"minimatch": "^5.1.1",
"minimatch": "^6.1.5",
"xregexp": "^5.1.0"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/atomizer/src/build.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const chalk = require('chalk');
const fs = require('fs');
const glob = require('glob');
const minimatch = require('minimatch');
const { minimatch } = require('minimatch');
const path = require('path');
const some = require('lodash/some');
const union = require('lodash/union');
Expand Down

0 comments on commit cd20d0b

Please sign in to comment.