kn-cli 1.0.72 → 1.0.73

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/start.sh CHANGED
@@ -118,7 +118,7 @@ build(){
118
118
  if [ -n "$build_type" ] && [ $build_type = "dev" ]
119
119
  then
120
120
  echo "开始npm run dev"
121
- if [ "$dev_mode"x == "watch"x ]
121
+ if [ "${dev_mode}" = "watch" ]
122
122
  then
123
123
  npm run dev:watch
124
124
  checkResult "npm run dev:watch"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -96,7 +96,9 @@ module.exports = {
96
96
 
97
97
 
98
98
  # 更新日志
99
-
99
+ * 1.0.73
100
+ 修改 start.sh内 `if[ "dev_mode"x == "watch"x ]` --> `if [ "${dev_mode}" = "watch" ]` 以兼容系统
101
+
100
102
  * 1.0.72
101
103
  增加devServer:{historyApiFallback:true}设置,支持本地调试的history模式
102
104