Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/node-upgrade' into create-workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreyasSharma28 committed Oct 14, 2024
2 parents a88fee9 + 4cbd7b3 commit 8ddce2c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/build/commands/dist.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const {webpackBuild} = require('../../utils/build');
const { webpackBuild } = require("../../utils/build");

module.exports = {
command: 'dist <packageName> [packagePath]',
desc: 'Bundle the package into a single distributable',
command: "dist <packageName> [packagePath]",
desc: "Bundle the package into a single distributable",
builder: {},
handler: ({packageName, packagePath}) => {
handler: ({ packageName, packagePath }) => {
if (packageName) {
if (packagePath) {
return webpackBuild(packageName, packagePath);
Expand All @@ -14,5 +14,5 @@ module.exports = {
}

return false;
}
},
};

0 comments on commit 8ddce2c

Please sign in to comment.