Skip to content

Commit 7aca35e

Browse files
committed
fix linter issues
1 parent 6bdfa3b commit 7aca35e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/testBuilds.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const files = fs
77
.readdirSync(distPath)
88
.filter(dist => dist.indexOf('map') === -1)
99

10-
async function testBuilds() {
10+
async function testBuilds () {
1111
for (let file of files) {
1212
const err = await execPromise(`BUNDLE=${file} npm run test`)
1313
if (err) {
@@ -20,7 +20,7 @@ async function testBuilds() {
2020
}
2121
}
2222

23-
function execPromise(cmd) {
23+
function execPromise (cmd) {
2424
return new Promise(resolve => exec(cmd, resolve))
2525
}
2626

0 commit comments

Comments
 (0)