update
This commit is contained in:
6
package/node_modules/@npmcli/git/lib/is-clean.js
generated
vendored
Normal file
6
package/node_modules/@npmcli/git/lib/is-clean.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
const spawn = require('./spawn.js')
|
||||
|
||||
module.exports = (opts = {}) =>
|
||||
spawn(['status', '--porcelain=v1', '-uno'], opts)
|
||||
.then(res => !res.stdout.trim().split(/\r?\n+/)
|
||||
.map(l => l.trim()).filter(l => l).length)
|
Reference in New Issue
Block a user