We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a88fee9 + 4cbd7b3 commit 8ddce2cCopy full SHA for 8ddce2c
scripts/build/commands/dist.js
@@ -1,10 +1,10 @@
1
-const {webpackBuild} = require('../../utils/build');
+const { webpackBuild } = require("../../utils/build");
2
3
module.exports = {
4
- command: 'dist <packageName> [packagePath]',
5
- desc: 'Bundle the package into a single distributable',
+ command: "dist <packageName> [packagePath]",
+ desc: "Bundle the package into a single distributable",
6
builder: {},
7
- handler: ({packageName, packagePath}) => {
+ handler: ({ packageName, packagePath }) => {
8
if (packageName) {
9
if (packagePath) {
10
return webpackBuild(packageName, packagePath);
@@ -14,5 +14,5 @@ module.exports = {
14
}
15
16
return false;
17
- }
+ },
18
};
0 commit comments