Skip to content

Commit

Permalink
build: does minimatch 6 break things
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Jun 10, 2024
1 parent 70ea3c1 commit 60da222
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 67 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const path = require('path');
const { glob } = require('glob');
const minimatch = require('minimatch');
const { minimatch } = require('minimatch');
const { defaults } = require('@istanbuljs/schema');
const isOutsideDir = require('./is-outside-dir');

Expand Down
2 changes: 1 addition & 1 deletion is-outside-dir-win32.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const path = require('path');
const minimatch = require('minimatch');
const { minimatch } = require('minimatch');

const dot = { dot: true, windowsPathsNoEscape: true };

Expand Down
72 changes: 8 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@istanbuljs/schema": "^0.1.2",
"glob": "^10.4.1",
"minimatch": "^5.1.6"
"minimatch": "^9.0.4"
},
"devDependencies": {
"c8": "^9.1.0",
Expand Down

0 comments on commit 60da222

Please sign in to comment.