Skip to content

Commit

Permalink
chore: respect editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Dec 10, 2019
1 parent 99e1f8f commit 1d2276e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -103,7 +103,7 @@ function writeHelperExports(runtimeName) {
}
pkgJson.exports = exports;

outputFile(pkgJsonPath, JSON.stringify(pkgJson, undefined, 2));
outputFile(pkgJsonPath, JSON.stringify(pkgJson, undefined, 2) + "\n");
}

function writeHelperFiles(runtimeName, { esm, corejs }) {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-runtime-corejs2/package.json
Expand Up @@ -90,4 +90,4 @@
"./helpers/esm/classPrivateMethodSet": "./helpers/esm/classPrivateMethodSet.js",
"./helpers/esm/wrapRegExp": "./helpers/esm/wrapRegExp.js"
}
}
}
2 changes: 1 addition & 1 deletion packages/babel-runtime-corejs3/package.json
Expand Up @@ -87,4 +87,4 @@
"./helpers/esm/classPrivateMethodSet": "./helpers/esm/classPrivateMethodSet.js",
"./helpers/esm/wrapRegExp": "./helpers/esm/wrapRegExp.js"
}
}
}
2 changes: 1 addition & 1 deletion packages/babel-runtime/package.json
Expand Up @@ -94,4 +94,4 @@
"./helpers/esm/classPrivateMethodSet": "./helpers/esm/classPrivateMethodSet.js",
"./helpers/esm/wrapRegExp": "./helpers/esm/wrapRegExp.js"
}
}
}

0 comments on commit 1d2276e

Please sign in to comment.