Skip to content

Commit 8ddce2c

Browse files
Merge remote-tracking branch 'origin/node-upgrade' into create-workspace
2 parents a88fee9 + 4cbd7b3 commit 8ddce2c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/build/commands/dist.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
const {webpackBuild} = require('../../utils/build');
1+
const { webpackBuild } = require("../../utils/build");
22

33
module.exports = {
4-
command: 'dist <packageName> [packagePath]',
5-
desc: 'Bundle the package into a single distributable',
4+
command: "dist <packageName> [packagePath]",
5+
desc: "Bundle the package into a single distributable",
66
builder: {},
7-
handler: ({packageName, packagePath}) => {
7+
handler: ({ packageName, packagePath }) => {
88
if (packageName) {
99
if (packagePath) {
1010
return webpackBuild(packageName, packagePath);
@@ -14,5 +14,5 @@ module.exports = {
1414
}
1515

1616
return false;
17-
}
17+
},
1818
};

0 commit comments

Comments
 (0)