Skip to content

Commit

Permalink
Add details about 'client' directory removal in the release step
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardo committed Nov 7, 2024
1 parent e9d01c6 commit bbe3b0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ rm( 'dist/*.map' );
// copy the directories to the release folder
cp( '-Rf', filesToCopy, targetFolder );

// remove the multi-currency/client source files
// The '/includes/multi-currency/client' directory is removed because '/includes/multi-currency/*' should contain only server-side files.
// Furthermore, the './client' directory is already included in 'dist' during the build step.
rm( '-rf', targetFolder + '/includes/multi-currency/client' );

const output = fs.createWriteStream(
Expand Down

0 comments on commit bbe3b0e

Please sign in to comment.