@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
|
@@ -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
|
|
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 时跳过)
|