kn-cli 1.0.58 → 1.0.60

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.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/templates/template_admin/frontend_build.sh +5 -1
  3. package/templates/template_app/frontend_build.sh +4 -0
  4. package/templates/template_oa/.gitignore +6 -0
  5. package/templates/template_oa/frontend_build.sh +6 -1
  6. package/templates/template_offcial/frontend_build.sh +6 -1
  7. package/templates/template_oa/.DS_Store +0 -0
  8. package/templates/template_oa/package-lock.json +0 -1925
  9. package/templates/template_oa/public/.DS_Store +0 -0
  10. package/templates/template_oa/public/pluginjs/.DS_Store +0 -0
  11. package/templates/template_oa/public/src/.DS_Store +0 -0
  12. package/templates/template_oa/public/src/assets/.DS_Store +0 -0
  13. package/templates/template_oa/public/src/assets/iconfont/.DS_Store +0 -0
  14. package/templates/template_oa/public/src/assets/images/.DS_Store +0 -0
  15. package/templates/template_oa/public/src/components/.DS_Store +0 -0
  16. package/templates/template_oa/public/src/components/Layout/.DS_Store +0 -0
  17. package/templates/template_oa/public/src/components/Page/.DS_Store +0 -0
  18. package/templates/template_oa/public/src/hooks/.DS_Store +0 -0
  19. package/templates/template_oa/public/src/pages/.DS_Store +0 -0
  20. package/templates/template_oa/public/src/services/.DS_Store +0 -0
  21. package/templates/template_oa/public/src/utils/.DS_Store +0 -0
  22. package/templates/template_oa/public/static/.DS_Store +0 -0
  23. package/templates/template_oa/release/.DS_Store +0 -0
  24. package/templates/template_oa/tools/.DS_Store +0 -0
  25. package/templates/template_oa/tools/iconfont/.DS_Store +0 -0
  26. package/templates/template_oa/tools/iconfont/dist/.DS_Store +0 -0
  27. package/templates/template_oa/tools/iconfont/svg/.DS_Store +0 -0
  28. package/templates/template_oa/tools/tinypng/.DS_Store +0 -0
  29. package/templates/template_oa/tools/tinypng/img/.DS_Store +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.58",
3
+ "version": "1.0.60",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -4,7 +4,7 @@ then
4
4
  fi
5
5
 
6
6
  export mock=0
7
- export oSkipNpmInstall=1
7
+ export noSkipNpmInstall=1
8
8
  node_version="v16.18.0"
9
9
 
10
10
  checkNode(){
@@ -70,6 +70,10 @@ build(){
70
70
 
71
71
  mv public/dist release/
72
72
  checkResult "打包结果同步至release"
73
+
74
+ cp public/favicon.png release/favicon.png
75
+ cp public/favicon.ico release/favicon.ico
76
+ checkResult "复制favicon"
73
77
  }
74
78
 
75
79
  checkNode
@@ -95,6 +95,10 @@ build(){
95
95
 
96
96
  mv public/dist release/
97
97
  checkResult "打包结果同步至release"
98
+
99
+ cp public/favicon.png release/favicon.png
100
+ cp public/favicon.ico release/favicon.ico
101
+ checkResult "复制favicon"
98
102
  }
99
103
 
100
104
  checkNode
@@ -0,0 +1,6 @@
1
+ **/node_modules
2
+ **/package-lock.json
3
+ **/.DS_Store
4
+ **/dist
5
+ **/release
6
+
@@ -4,7 +4,7 @@ then
4
4
  fi
5
5
 
6
6
  export mock=0
7
- export oSkipNpmInstall=1
7
+ export noSkipNpmInstall=1
8
8
  node_version="v16.18.0"
9
9
 
10
10
  checkNode(){
@@ -70,6 +70,11 @@ build(){
70
70
 
71
71
  mv public/dist release/
72
72
  checkResult "打包结果同步至release"
73
+
74
+ cp public/favicon.png release/favicon.png
75
+ cp public/favicon.ico release/favicon.ico
76
+ checkResult "复制favicon"
77
+
73
78
  }
74
79
 
75
80
  checkNode
@@ -4,7 +4,7 @@ then
4
4
  fi
5
5
 
6
6
  export mock=0
7
- export oSkipNpmInstall=1
7
+ export noSkipNpmInstall=1
8
8
  node_version="v16.18.0"
9
9
 
10
10
  checkNode(){
@@ -70,6 +70,11 @@ build(){
70
70
 
71
71
  mv public/dist release/
72
72
  checkResult "打包结果同步至release"
73
+
74
+ cp public/favicon.png release/favicon.png
75
+ cp public/favicon.ico release/favicon.ico
76
+ checkResult "复制favicon"
77
+
73
78
  }
74
79
 
75
80
  checkNode
Binary file