kn-cli 1.0.86 → 1.0.88
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/build/build.sh +1 -6
- package/build/dev.sh +1 -6
- package/package.json +1 -1
- package/templates/template_admin/dev.sh +3 -0
- package/templates/template_admin/frontend_build.sh +3 -0
- package/templates/template_app/dev.sh +3 -0
- package/templates/template_app/frontend_build.sh +3 -0
- package/templates/template_oa/dev.sh +3 -0
- package/templates/template_oa/frontend_build.sh +3 -0
- package/templates/template_oa_jwt/dev.sh +3 -0
- package/templates/template_oa_jwt/frontend_build.sh +3 -0
- package/templates/template_offcial/dev.sh +3 -0
- package/templates/template_offcial/frontend_build.sh +3 -0
package/build/build.sh
CHANGED
|
@@ -16,12 +16,7 @@ export build_type=build
|
|
|
16
16
|
|
|
17
17
|
if [ ! -n "$build_log_level" ]
|
|
18
18
|
then
|
|
19
|
-
|
|
20
|
-
then
|
|
21
|
-
export build_log_level=all
|
|
22
|
-
else
|
|
23
|
-
export build_log_level=clear
|
|
24
|
-
fi
|
|
19
|
+
export build_log_level=clear
|
|
25
20
|
fi
|
|
26
21
|
|
|
27
22
|
showWarn "日志模式为:${build_log_level}"
|
package/build/dev.sh
CHANGED
|
@@ -3,12 +3,7 @@ export build_type=dev
|
|
|
3
3
|
|
|
4
4
|
if [ ! -n "$build_log_level" ]
|
|
5
5
|
then
|
|
6
|
-
|
|
7
|
-
then
|
|
8
|
-
export build_log_level=all
|
|
9
|
-
else
|
|
10
|
-
export build_log_level=clear
|
|
11
|
-
fi
|
|
6
|
+
export build_log_level=clear
|
|
12
7
|
fi
|
|
13
8
|
|
|
14
9
|
# 如果 export dev_mode=watch 则启动webpack -w模式而非webpack-dev-server
|
package/package.json
CHANGED