Skip to content

Commit

Permalink
Internal: Removed silence error from build-package script.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Jan 30, 2019
1 parent 46799e3 commit a0d7852
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/build-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ for ( const file of filesToCopy ) {
const src = path.join( process.cwd(), file );
const dest = path.join( process.cwd(), 'dist', file );

if ( fs.existsSync( src ) ) {
fs.copyFileSync( src, dest );
}
fs.copyFileSync( src, dest );
}

// Update the version of package in dist/package.json
Expand Down

0 comments on commit a0d7852

Please sign in to comment.