Skip to content

Commit

Permalink
refactor: Remove isEvent boolean from domProps
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed Jul 18, 2020
1 parent 17e73cb commit acddc51
Show file tree
Hide file tree
Showing 3 changed files with 440 additions and 441 deletions.
4 changes: 2 additions & 2 deletions scripts/release-postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ function copyFileSync(sourcePath, destPath) {
fs.chmodSync(destPath, stat.mode);
}

const copyPlatformBinaries = platformPath => {
const copyPlatformBinaries = (platformPath) => {
const platformBuildPath = path.join(__dirname, platformPath);

binariesToCopy.forEach(binaryPath => {
binariesToCopy.forEach((binaryPath) => {
const sourcePath = path.join(platformBuildPath, binaryPath);
const destPath = path.join(__dirname, binaryPath);
if (fs.existsSync(destPath)) {
Expand Down
Loading

0 comments on commit acddc51

Please sign in to comment.