Skip to content

Commit cd3d7b9

Browse files
committed
fix(print): offset script
1 parent 0eb4dfb commit cd3d7b9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/quick-run.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ const printNames = require('json-package').printNames
66
const run = require('./run')
77

88
function printAllScripts (pkg) {
9-
var names = Object.keys(pkg.scripts).map(function (k) { return k + '\n ' + pkg.scripts[k] })
9+
var names = Object.keys(pkg.scripts)
10+
.map(function (k) {
11+
return k + '\n ' + pkg.scripts[k]
12+
})
1013

1114
printNames('Available scripts are', names)
1215
}

0 commit comments

Comments
 (0)