@tomjs/hbuilderx-cli 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -167,8 +167,7 @@ function getCommandCode(contributes, opts) {
|
|
|
167
167
|
const commandType = getValuesDtsType((contributes?.commands || []).map((s) => s.command));
|
|
168
168
|
const builtinType = getValuesDtsType([...new Set(opts.commands || [])]);
|
|
169
169
|
if (!commandType && !builtinType) return "";
|
|
170
|
-
return `
|
|
171
|
-
/**
|
|
170
|
+
return ` /**
|
|
172
171
|
* 命令管理
|
|
173
172
|
*/
|
|
174
173
|
export const commands: CommandManager;
|
package/package.json
CHANGED