qdmp-cli 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/actions.js +3 -3
  2. package/package.json +1 -1
package/actions.js CHANGED
@@ -23,8 +23,8 @@ function createProject(appName, template) {
23
23
  console.log("\n" + chalk.dim("─".repeat(60)) + "\n");
24
24
  info(
25
25
  `${template.emoji} 已为 ${chalk.bold(
26
- appName
27
- )} 选择模版:${chalk.underline(template.name)}`
26
+ appName,
27
+ )} 选择模版:${chalk.underline(template.name)}`,
28
28
  );
29
29
  info(` ${chalk.dim("描述:")} ${template.desc}`);
30
30
  info(` ${chalk.dim("仓库:")} ${chalk.green(template.value)}`);
@@ -134,7 +134,7 @@ export async function uploadAction(option) {
134
134
  success(
135
135
  `上传成功,版本号:${code},可前往官网进行小程序发布:https://${
136
136
  option.env === "dev" ? "dev-" : ""
137
- }mp.qiandao.com/apps/${appId}/deploy`
137
+ }open.qiandao.com/apps/${appId}/deploy`,
138
138
  );
139
139
  } catch (e) {
140
140
  error(`${e.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qdmp-cli",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "qdmp-cli",
5
5
  "main": "index.js",
6
6
  "type": "module",