cloudcc-cli 0.4.2 → 0.4.3

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/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ # ReleaseV0.4.3
2
+ #### 发布日期:2021-10-8
3
+ #### 发布范围:全量
4
+ #### 发布内容
5
+ * 功能迭代:修复打包指令
6
+
1
7
  # ReleaseV0.4.2
2
8
  #### 发布日期:2021-10-14
3
9
  #### 发布范围:全量
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcc-cli",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "cloudcc-cli",
5
5
  "keywords": [
6
6
  "cloudcc",
package/src/publish.js CHANGED
@@ -152,7 +152,7 @@ class Publish {
152
152
  console.log(chalk.green('开始编译,请稍后...'));
153
153
  // 打包命令
154
154
  try {
155
- exec('npx build');
155
+ exec('npm run build');
156
156
  } catch (error) {
157
157
  console.log(chalk.red('请提供build打包命令'));
158
158
  return;