We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bdfa3b commit 7aca35eCopy full SHA for 7aca35e
scripts/testBuilds.js
@@ -7,7 +7,7 @@ const files = fs
7
.readdirSync(distPath)
8
.filter(dist => dist.indexOf('map') === -1)
9
10
-async function testBuilds() {
+async function testBuilds () {
11
for (let file of files) {
12
const err = await execPromise(`BUNDLE=${file} npm run test`)
13
if (err) {
@@ -20,7 +20,7 @@ async function testBuilds() {
20
}
21
22
23
-function execPromise(cmd) {
+function execPromise (cmd) {
24
return new Promise(resolve => exec(cmd, resolve))
25
26
0 commit comments