Skip to content

Commit 4b555d7

Browse files
committed
fix: replace bash-glob with fast-glob to omit cross-spawn from prod deps tree
1 parent b19870e commit 4b555d7

File tree

3 files changed

+161
-143
lines changed

3 files changed

+161
-143
lines changed

lib/lockfileV2/workspace.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const glob = require('bash-glob')
3+
const glob = require('fast-glob')
44
const { sep, resolve } = require('path')
55

66
module.exports = {
@@ -15,8 +15,8 @@ module.exports = {
1515
packages.map((p) => p.replace(/\/?$/, '/package.json')),
1616
{
1717
cwd: resolve(cwd),
18-
realpath: true,
19-
ignore: '**/node_modules/**'
18+
absolute: true,
19+
ignore: ['**/node_modules/**']
2020
}
2121
)
2222
},

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@
3535
},
3636
"dependencies": {
3737
"@yarnpkg/lockfile": "^1.1.0",
38-
"bash-glob": "^2.0.0",
38+
"fast-glob": "^3.3.2",
3939
"colors": "1.4.0",
4040
"commander": "^7.2.0",
41-
"eol": "^0.9.1",
41+
"eol": "^0.10.0",
4242
"lodash": "4.17.21",
4343
"nmtree": "^1.0.6",
44-
"semver": "^7.6.0",
44+
"semver": "^7.6.3",
4545
"sort-object-keys": "^1.1.3"
4646
},
4747
"devDependencies": {
4848
"nyc": "15.1.0",
4949
"sinon": "^9.2.4",
5050
"standard": "^16.0.4",
51-
"tape": "^5.7.5",
51+
"tape": "^5.9.0",
5252
"rimraf": "^3.0.2"
5353
}
5454
}

0 commit comments

Comments
 (0)