@lark-apaas/fullstack-cli 1.1.34-alpha.1 → 1.1.34-alpha.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/fullstack-cli",
3
- "version": "1.1.34-alpha.1",
3
+ "version": "1.1.34-alpha.2",
4
4
  "description": "CLI tool for fullstack template management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -104,7 +104,7 @@ STEP_START=$(node -e "console.log(Date.now())")
104
104
  # HTML 文件属于前端产物,始终执行
105
105
  if [ -d "$DIST_DIR/client" ]; then
106
106
  mkdir -p "$DIST_DIR/dist/client"
107
- find "$DIST_DIR/client" -maxdepth 1 -name "*.html" -exec mv {} "$DIST_DIR/dist/client/" \;
107
+ find "$DIST_DIR/client" -maxdepth 1 -name "*.html" -exec cp {} "$DIST_DIR/dist/client/" \;
108
108
  fi
109
109
 
110
110
  # server 相关产物准备(only_frontend_change=true 时跳过)