@baic/yolk-cli 2.1.0-alpha.24 → 2.1.0-alpha.241

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 (577) hide show
  1. package/LICENSE +18 -17
  2. package/README.md +1 -1
  3. package/compiled/commander/index.d.ts +898 -0
  4. package/compiled/commander/index.js +1 -0
  5. package/compiled/commander/package.json +1 -0
  6. package/compiled/mustache/index.d.ts +431 -0
  7. package/compiled/mustache/index.js +5 -0
  8. package/compiled/mustache/package.json +1 -0
  9. package/compiled/v8-compile-cache/index.js +1 -0
  10. package/compiled/v8-compile-cache/package.json +1 -0
  11. package/es/_util.d.ts +29 -0
  12. package/es/_util.js +1 -0
  13. package/es/index.d.ts +0 -1
  14. package/es/index.js +1 -1
  15. package/es/lintstagedrc.js +1 -0
  16. package/es/postinstall.d.ts +2 -0
  17. package/es/postinstall.js +2 -0
  18. package/es/yolk.d.ts +1 -1
  19. package/es/yolk.js +1 -1
  20. package/lib/_util.d.ts +29 -0
  21. package/lib/_util.js +1 -0
  22. package/lib/index.d.ts +0 -1
  23. package/lib/index.js +1 -1
  24. package/lib/lintstagedrc.js +1 -0
  25. package/lib/postinstall.d.ts +2 -0
  26. package/lib/postinstall.js +2 -0
  27. package/lib/yolk.d.ts +1 -1
  28. package/lib/yolk.js +1 -1
  29. package/package.json +47 -26
  30. package/templates/miniprogram/.eslintrc.js +7 -0
  31. package/templates/miniprogram/.gitignore.tpl +7 -6
  32. package/templates/miniprogram/.prettierignore +5 -1
  33. package/templates/miniprogram/.prettierrc.js +1 -0
  34. package/templates/miniprogram/LICENSE +18 -17
  35. package/templates/miniprogram/README.md.tpl +5 -5
  36. package/templates/miniprogram/biome.json +3 -0
  37. package/templates/miniprogram/config/index.ts.tpl +1 -1
  38. package/templates/miniprogram/global.d.ts +1 -33
  39. package/templates/miniprogram/package.json.tpl +4 -0
  40. package/templates/miniprogram/project.config.json.tpl +5 -3
  41. package/templates/miniprogram/src/app.config.ts +1 -1
  42. package/templates/miniprogram/src/app.scss +0 -1
  43. package/templates/miniprogram/src/app.tsx +4 -6
  44. package/templates/miniprogram/src/pages/demo/examples/Input.tsx +11 -3
  45. package/templates/miniprogram/src/pages/demo/examples/MobileInput.tsx +0 -1
  46. package/templates/miniprogram/src/pages/demo/examples/MoneyInput.tsx +0 -1
  47. package/templates/miniprogram/src/pages/demo/examples/NumberInput.tsx +0 -1
  48. package/templates/miniprogram/src/pages/demo/examples/Textarea.tsx +12 -3
  49. package/templates/miniprogram/src/pages/demo/examples/TimerButton.tsx +0 -1
  50. package/templates/miniprogram/src/pages/demo/examples/usePreload.tsx +0 -1
  51. package/templates/miniprogram/src/pages/demo/index.config.ts +1 -1
  52. package/templates/miniprogram/src/pages/demo/index.tsx +6 -5
  53. package/templates/miniprogram/src/pages/index/index.config.ts +1 -1
  54. package/templates/miniprogram/src/pages/index/index.tsx +1 -1
  55. package/templates/miniprogram/src/types/user.d.ts +4 -2
  56. package/templates/miniprogram/tsconfig.json +2 -19
  57. package/templates/umi-mobile/.eslintrc.js +7 -0
  58. package/templates/umi-mobile/.gitignore.tpl +4 -7
  59. package/templates/umi-mobile/.prettierignore +6 -2
  60. package/templates/umi-mobile/.prettierrc.js +1 -0
  61. package/templates/umi-mobile/.umirc.ts.tpl +0 -1
  62. package/templates/umi-mobile/LICENSE +18 -17
  63. package/templates/umi-mobile/README.md.tpl +5 -5
  64. package/templates/umi-mobile/biome.json +3 -0
  65. package/templates/umi-mobile/package.json.tpl +6 -0
  66. package/templates/umi-mobile/src/app.tsx +2 -3
  67. package/templates/umi-mobile/src/pages/404.tsx +0 -1
  68. package/templates/umi-mobile/src/pages/demo/examples/BarCode.tsx +0 -1
  69. package/templates/umi-mobile/src/pages/demo/examples/Iconfont.tsx +1 -2
  70. package/templates/umi-mobile/src/pages/demo/examples/Input.tsx +1 -3
  71. package/templates/umi-mobile/src/pages/demo/examples/List/1.tsx +1 -2
  72. package/templates/umi-mobile/src/pages/demo/examples/List/2.tsx +1 -1
  73. package/templates/umi-mobile/src/pages/demo/examples/List/3.tsx +1 -1
  74. package/templates/umi-mobile/src/pages/demo/examples/List/4.tsx +12 -13
  75. package/templates/umi-mobile/src/pages/demo/examples/Loading.tsx +0 -1
  76. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/1.tsx +1 -3
  77. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/2.tsx +1 -3
  78. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/3.tsx +1 -3
  79. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/4.tsx +1 -3
  80. package/templates/umi-mobile/src/pages/demo/examples/PagingList/1.tsx +1 -2
  81. package/templates/umi-mobile/src/pages/demo/examples/QrCode.tsx +0 -1
  82. package/templates/umi-mobile/src/pages/demo/examples/Required.tsx +0 -1
  83. package/templates/umi-mobile/src/pages/demo/examples/TimerButton.tsx +0 -1
  84. package/templates/umi-mobile/src/pages/demo/examples/usePreload.tsx +1 -1
  85. package/templates/umi-mobile/src/pages/demo/index.tsx +10 -10
  86. package/templates/umi-mobile/src/pages/index.tsx +0 -2
  87. package/templates/umi-mobile/src/types/user.d.ts +2 -2
  88. package/templates/umi-mobile-h5+app/.eslintrc.js +7 -0
  89. package/templates/umi-mobile-h5+app/.gitignore.tpl +4 -7
  90. package/templates/umi-mobile-h5+app/.prettierignore +6 -2
  91. package/templates/umi-mobile-h5+app/.prettierrc.js +1 -0
  92. package/templates/umi-mobile-h5+app/.umirc.ts.tpl +0 -1
  93. package/templates/umi-mobile-h5+app/LICENSE +18 -17
  94. package/templates/umi-mobile-h5+app/README.md.tpl +5 -5
  95. package/templates/umi-mobile-h5+app/biome.json +3 -0
  96. package/templates/umi-mobile-h5+app/package.json.tpl +6 -0
  97. package/templates/umi-mobile-h5+app/src/app.tsx +2 -3
  98. package/templates/umi-mobile-h5+app/src/pages/404.tsx +0 -1
  99. package/templates/umi-mobile-h5+app/src/pages/demo/examples/Input.tsx +1 -2
  100. package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/4.tsx +7 -7
  101. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +1 -2
  102. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +1 -2
  103. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/3.tsx +1 -2
  104. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +1 -2
  105. package/templates/umi-mobile-h5+app/src/pages/demo/index.tsx +8 -7
  106. package/templates/umi-mobile-h5+app/src/pages/index.tsx +0 -2
  107. package/templates/umi-mobile-h5+app/src/types/user.d.ts +2 -2
  108. package/templates/umi-mobile-native/.eslintrc.js +7 -0
  109. package/templates/umi-mobile-native/.gitignore.tpl +4 -7
  110. package/templates/umi-mobile-native/.prettierignore +6 -2
  111. package/templates/umi-mobile-native/.prettierrc.js +1 -0
  112. package/templates/umi-mobile-native/.umirc.ts.tpl +0 -1
  113. package/templates/umi-mobile-native/LICENSE +18 -17
  114. package/templates/umi-mobile-native/README.md.tpl +5 -5
  115. package/templates/umi-mobile-native/android/app/build.gradle +19 -4
  116. package/templates/umi-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
  117. package/templates/umi-mobile-native/android/gradle.properties +1 -1
  118. package/templates/umi-mobile-native/biome.json +3 -0
  119. package/templates/umi-mobile-native/package.json.tpl +6 -0
  120. package/templates/umi-mobile-native/src/app.tsx +2 -3
  121. package/templates/umi-mobile-native/src/common/Xprinter.ts +4 -4
  122. package/templates/umi-mobile-native/src/common/bluetooth.ts +8 -8
  123. package/templates/umi-mobile-native/src/common/bridge.ts +6 -6
  124. package/templates/umi-mobile-native/src/pages/404.tsx +0 -1
  125. package/templates/umi-mobile-native/src/pages/demo/examples/Input.tsx +1 -2
  126. package/templates/umi-mobile-native/src/pages/demo/examples/List/4.tsx +7 -7
  127. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/1.tsx +1 -2
  128. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +1 -2
  129. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +1 -2
  130. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +1 -2
  131. package/templates/umi-mobile-native/src/pages/demo/index.tsx +8 -7
  132. package/templates/umi-mobile-native/src/types/user.d.ts +2 -2
  133. package/templates/umi-mobile-uni-app/.eslintrc.js +7 -0
  134. package/templates/{ice-mobile → umi-mobile-uni-app}/.gitignore.tpl +15 -15
  135. package/templates/umi-mobile-uni-app/.prettierignore +12 -0
  136. package/templates/umi-mobile-uni-app/.prettierrc.js +1 -0
  137. package/templates/umi-mobile-uni-app/.umirc.ts.tpl +7 -0
  138. package/templates/umi-mobile-uni-app/LICENSE +22 -0
  139. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/README.md.tpl +5 -5
  140. package/templates/umi-mobile-uni-app/biome.json +3 -0
  141. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/package.json.tpl +7 -1
  142. package/templates/umi-mobile-uni-app/src/app.tsx +18 -0
  143. package/templates/umi-mobile-uni-app/src/layouts/index.tsx +3 -0
  144. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/404.tsx +0 -1
  145. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/BarCode.tsx +0 -1
  146. package/templates/{ice-web → umi-mobile-uni-app}/src/pages/demo/examples/Iconfont.tsx +1 -2
  147. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/Input.tsx +1 -3
  148. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/List/1.tsx +1 -2
  149. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/2.tsx +1 -1
  150. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/List/3.tsx +1 -1
  151. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/4.tsx +12 -13
  152. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/Loading.tsx +0 -1
  153. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/1.tsx +1 -3
  154. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/2.tsx +1 -3
  155. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/3.tsx +1 -3
  156. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/4.tsx +1 -3
  157. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/PagingList/1.tsx +1 -2
  158. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/QrCode.tsx +0 -1
  159. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/Required.tsx +0 -1
  160. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/TimerButton.tsx +0 -1
  161. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/usePreload.tsx +1 -1
  162. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/index.tsx +10 -10
  163. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/index.tsx +0 -2
  164. package/templates/umi-mobile-uni-app/src/types/user.d.ts +3 -0
  165. package/templates/umi-mobile-uni-app/tsconfig.json +3 -0
  166. package/templates/umi-mobile-uni-app/typings.d.ts +1 -0
  167. package/templates/umi-mobile-uni-app/uni-app/AndroidManifest.xml +8 -0
  168. package/templates/umi-mobile-uni-app/uni-app/App.vue +28 -0
  169. package/templates/umi-mobile-uni-app/uni-app/androidPrivacy.json +22 -0
  170. package/templates/umi-mobile-uni-app/uni-app/assets/apple-app-site-association +11 -0
  171. package/templates/umi-mobile-uni-app/uni-app/common/constants.ts +5 -0
  172. package/templates/umi-mobile-uni-app/uni-app/common/request.ts +118 -0
  173. package/templates/umi-mobile-uni-app/uni-app/common/util.ts +27 -0
  174. package/templates/umi-mobile-uni-app/uni-app/components/webview/webview.vue +61 -0
  175. package/templates/umi-mobile-uni-app/uni-app/hybrid/html/error.html +24 -0
  176. package/templates/umi-mobile-uni-app/uni-app/images/index.ts +2 -0
  177. package/templates/umi-mobile-uni-app/uni-app/index.html +20 -0
  178. package/templates/{ice-mobile-native/ios/HBuilder/HBuilder.entitlements → umi-mobile-uni-app/uni-app/info.plist} +3 -2
  179. package/templates/umi-mobile-uni-app/uni-app/main.js +22 -0
  180. package/templates/umi-mobile-uni-app/uni-app/manifest.json +207 -0
  181. package/templates/umi-mobile-uni-app/uni-app/pages/index/index.vue +17 -0
  182. package/templates/umi-mobile-uni-app/uni-app/pages/webview/index.vue +19 -0
  183. package/templates/umi-mobile-uni-app/uni-app/pages.json +22 -0
  184. package/templates/umi-mobile-uni-app/uni-app/uni.promisify.adaptor.js +16 -0
  185. package/templates/umi-mobile-uni-app/uni-app/uni.scss +76 -0
  186. package/templates/umi-web/.eslintrc.js +7 -0
  187. package/templates/umi-web/.gitignore.tpl +4 -7
  188. package/templates/umi-web/.prettierignore +6 -2
  189. package/templates/umi-web/.prettierrc.js +1 -0
  190. package/templates/umi-web/.umirc.ts.tpl +1 -1
  191. package/templates/umi-web/LICENSE +18 -17
  192. package/templates/umi-web/README.md.tpl +5 -5
  193. package/templates/umi-web/biome.json +3 -0
  194. package/templates/umi-web/package.json.tpl +6 -0
  195. package/templates/umi-web/src/app.tsx +2 -3
  196. package/templates/umi-web/src/pages/404.tsx +2 -3
  197. package/templates/umi-web/src/pages/demo/examples/BankInput.tsx +1 -2
  198. package/templates/umi-web/src/pages/demo/examples/Grid/5.tsx +1 -2
  199. package/templates/umi-web/src/pages/demo/examples/Input/2.tsx +2 -1
  200. package/templates/umi-web/src/pages/demo/examples/RangeNumber/2.tsx +1 -2
  201. package/templates/umi-web/src/pages/demo/examples/SearchLayout.tsx +2 -2
  202. package/templates/umi-web/src/pages/demo/index.tsx +11 -9
  203. package/templates/umi-web/src/pages/index.tsx +0 -2
  204. package/templates/umi-web/src/types/user.d.ts +2 -2
  205. package/templates/umi-web-screen/.eslintrc.js +7 -0
  206. package/templates/umi-web-screen/.gitignore.tpl +4 -7
  207. package/templates/umi-web-screen/.prettierignore +6 -2
  208. package/templates/umi-web-screen/.prettierrc.js +1 -0
  209. package/templates/umi-web-screen/.umirc.ts.tpl +2 -2
  210. package/templates/umi-web-screen/LICENSE +18 -17
  211. package/templates/umi-web-screen/README.md.tpl +5 -5
  212. package/templates/umi-web-screen/biome.json +3 -0
  213. package/templates/umi-web-screen/package.json.tpl +6 -0
  214. package/templates/umi-web-screen/src/app.tsx +2 -3
  215. package/templates/umi-web-screen/src/components/resize-container/index.tsx +18 -18
  216. package/templates/umi-web-screen/src/layouts/controller/index.tsx +5 -9
  217. package/templates/umi-web-screen/src/pages/404.tsx +2 -3
  218. package/templates/umi-web-screen/src/pages/index.tsx +0 -2
  219. package/templates/umi-web-screen/src/pages/template/components/charts/demo-line/index.tsx +2 -3
  220. package/templates/umi-web-screen/src/pages/template/controller/index.tsx +11 -12
  221. package/templates/umi-web-screen/src/types/user.d.ts +2 -2
  222. package/templates/ice-mobile/.eslintrc +0 -6
  223. package/templates/ice-mobile/.icerc.ts +0 -3
  224. package/templates/ice-mobile/.npmrc.tpl +0 -2
  225. package/templates/ice-mobile/.prettierignore +0 -9
  226. package/templates/ice-mobile/.prettierrc +0 -11
  227. package/templates/ice-mobile/.stylelintrc +0 -3
  228. package/templates/ice-mobile/README.md.tpl +0 -34
  229. package/templates/ice-mobile/package.json.tpl +0 -16
  230. package/templates/ice-mobile/public/favicon.ico +0 -0
  231. package/templates/ice-mobile/public/index.html +0 -15
  232. package/templates/ice-mobile/src/app.tsx +0 -5
  233. package/templates/ice-mobile/src/common/request.ts +0 -3
  234. package/templates/ice-mobile/src/common/util.ts +0 -7
  235. package/templates/ice-mobile/src/components/index.ts +0 -0
  236. package/templates/ice-mobile/src/global.less +0 -3
  237. package/templates/ice-mobile/src/layouts/index.tsx +0 -5
  238. package/templates/ice-mobile/src/pages/404.tsx +0 -10
  239. package/templates/ice-mobile/src/pages/demo/examples/BarCode.tsx +0 -4
  240. package/templates/ice-mobile/src/pages/demo/examples/Iconfont.tsx +0 -18
  241. package/templates/ice-mobile/src/pages/demo/examples/List/1.tsx +0 -12
  242. package/templates/ice-mobile/src/pages/demo/examples/List/2.tsx +0 -29
  243. package/templates/ice-mobile/src/pages/demo/examples/List/4.tsx +0 -55
  244. package/templates/ice-mobile/src/pages/demo/examples/List/mock.ts +0 -30
  245. package/templates/ice-mobile/src/pages/demo/examples/NumberInput/1.tsx +0 -17
  246. package/templates/ice-mobile/src/pages/demo/examples/NumberInput/3.tsx +0 -17
  247. package/templates/ice-mobile/src/pages/demo/examples/QrCode.tsx +0 -4
  248. package/templates/ice-mobile/src/pages/demo/examples/Required.tsx +0 -4
  249. package/templates/ice-mobile/src/pages/demo/examples/TimerButton.tsx +0 -4
  250. package/templates/ice-mobile/src/pages/index.tsx +0 -3
  251. package/templates/ice-mobile/src/routes.ts +0 -29
  252. package/templates/ice-mobile/src/types/user.d.ts +0 -3
  253. package/templates/ice-mobile/tsconfig.json +0 -3
  254. package/templates/ice-mobile/typings.d.ts +0 -1
  255. package/templates/ice-mobile-h5+app/.eslintrc +0 -6
  256. package/templates/ice-mobile-h5+app/.gitignore.tpl +0 -34
  257. package/templates/ice-mobile-h5+app/.icerc.ts +0 -6
  258. package/templates/ice-mobile-h5+app/.prettierignore +0 -9
  259. package/templates/ice-mobile-h5+app/.prettierrc +0 -11
  260. package/templates/ice-mobile-h5+app/h5+app/manifest.json +0 -87
  261. package/templates/ice-mobile-h5+app/public/index.html +0 -15
  262. package/templates/ice-mobile-h5+app/src/app.tsx +0 -5
  263. package/templates/ice-mobile-h5+app/src/layouts/index.tsx +0 -5
  264. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Iconfont.tsx +0 -18
  265. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Input.tsx +0 -17
  266. package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/1.tsx +0 -12
  267. package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/3.tsx +0 -29
  268. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Loading.tsx +0 -12
  269. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +0 -17
  270. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +0 -17
  271. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +0 -17
  272. package/templates/ice-mobile-h5+app/src/pages/demo/examples/PagingList/1.tsx +0 -6
  273. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Required.tsx +0 -4
  274. package/templates/ice-mobile-h5+app/src/pages/demo/examples/usePreload.tsx +0 -9
  275. package/templates/ice-mobile-h5+app/src/pages/demo/index.tsx +0 -87
  276. package/templates/ice-mobile-h5+app/src/pages/index.tsx +0 -3
  277. package/templates/ice-mobile-h5+app/src/routes.ts +0 -29
  278. package/templates/ice-mobile-h5+app/src/types/user.d.ts +0 -3
  279. package/templates/ice-mobile-h5+app/tsconfig.json +0 -3
  280. package/templates/ice-mobile-h5+app/typings.d.ts +0 -1
  281. package/templates/ice-mobile-native/.eslintrc +0 -6
  282. package/templates/ice-mobile-native/.gitignore.tpl +0 -39
  283. package/templates/ice-mobile-native/.icerc.ts +0 -8
  284. package/templates/ice-mobile-native/.npmrc.tpl +0 -2
  285. package/templates/ice-mobile-native/.prettierignore +0 -9
  286. package/templates/ice-mobile-native/.prettierrc +0 -11
  287. package/templates/ice-mobile-native/.stylelintrc +0 -3
  288. package/templates/ice-mobile-native/README.md.tpl +0 -34
  289. package/templates/ice-mobile-native/android/app/6209ba977ffec7d62675a4e254ebc209.keystore +0 -0
  290. package/templates/ice-mobile-native/android/app/build.gradle +0 -66
  291. package/templates/ice-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
  292. package/templates/ice-mobile-native/android/app/libs/PosPrinterSDK.jar +0 -0
  293. package/templates/ice-mobile-native/android/app/libs/android-gif-drawable-release@1.2.23.aar +0 -0
  294. package/templates/ice-mobile-native/android/app/libs/lib.5plus.base-release.aar +0 -0
  295. package/templates/ice-mobile-native/android/app/libs/oaid_sdk_1.0.25.aar +0 -0
  296. package/templates/ice-mobile-native/android/app/libs/webview-x5-release.aar +0 -0
  297. package/templates/ice-mobile-native/android/app/proguard-rules.pro +0 -303
  298. package/templates/ice-mobile-native/android/app/src/main/AndroidManifest.xml +0 -98
  299. package/templates/ice-mobile-native/android/app/src/main/assets/apps/H5ECA1DEE/www/manifest.json +0 -89
  300. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_control.xml +0 -6
  301. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_error.html +0 -92
  302. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_properties.xml +0 -19
  303. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/JSBridge/FunctionCreator.java +0 -119
  304. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/MPandoraEntryActivity.java +0 -17
  305. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Creator.java +0 -17
  306. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Error.java +0 -26
  307. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/JSPlugin.java +0 -265
  308. package/templates/ice-mobile-native/android/app/src/main/res/drawable/icon.png +0 -0
  309. package/templates/ice-mobile-native/android/app/src/main/res/values/colors.xml +0 -5
  310. package/templates/ice-mobile-native/android/app/src/main/res/values/strings.xml +0 -3
  311. package/templates/ice-mobile-native/android/build.gradle +0 -9
  312. package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  313. package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.properties +0 -6
  314. package/templates/ice-mobile-native/android/gradle.properties +0 -22
  315. package/templates/ice-mobile-native/android/gradlew +0 -185
  316. package/templates/ice-mobile-native/android/gradlew.bat +0 -89
  317. package/templates/ice-mobile-native/android/settings.gradle +0 -16
  318. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/1024x1024.png +0 -0
  319. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120-1.png +0 -0
  320. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120.png +0 -0
  321. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/180x180.png +0 -0
  322. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/40x40.png +0 -0
  323. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/58x58.png +0 -0
  324. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/60x60.png +0 -0
  325. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/80x80.png +0 -0
  326. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/87x87.png +0 -0
  327. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/Contents.json +0 -62
  328. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Contents.json +0 -6
  329. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Image.imageset/Contents.json +0 -20
  330. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/120x120.png +0 -0
  331. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/180x180.png +0 -0
  332. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/60x60.png +0 -0
  333. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/Contents.json +0 -26
  334. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/Contents.json +0 -21
  335. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/brightness@2x.png +0 -0
  336. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/Contents.json +0 -22
  337. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@2x.png +0 -0
  338. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@3x.png +0 -0
  339. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset/Contents.json +0 -22
  340. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211-1.png +0 -0
  341. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211.png +0 -0
  342. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset/Contents.json +0 -22
  343. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206-1.png +0 -0
  344. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206.png +0 -0
  345. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset/Contents.json +0 -21
  346. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset//345/257/271/347/204/246/347/272/277.png +0 -0
  347. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset/Contents.json +0 -22
  348. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225-1.png +0 -0
  349. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225.png +0 -0
  350. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/Contents.json +0 -22
  351. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@2x.png +0 -0
  352. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@3x.png +0 -0
  353. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/Contents.json +0 -23
  354. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play.png +0 -0
  355. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@2x.png +0 -0
  356. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@3x.png +0 -0
  357. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/Contents.json +0 -23
  358. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back.png +0 -0
  359. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@2x.png +0 -0
  360. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@3x.png +0 -0
  361. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/Contents.json +0 -23
  362. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play.png +0 -0
  363. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@2x.png +0 -0
  364. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@3x.png +0 -0
  365. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/Contents.json +0 -23
  366. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop.png +0 -0
  367. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@2x.png +0 -0
  368. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@3x.png +0 -0
  369. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/Contents.json +0 -22
  370. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@2x.png +0 -0
  371. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@3x.png +0 -0
  372. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/Contents.json +0 -22
  373. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@2x.png +0 -0
  374. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@3x.png +0 -0
  375. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/Contents.json +0 -22
  376. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@2x.png +0 -0
  377. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@3x.png +0 -0
  378. package/templates/ice-mobile-native/ios/HBuilder-Hello/120x120.png +0 -0
  379. package/templates/ice-mobile-native/ios/HBuilder-Hello/180x180.png +0 -0
  380. package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.h +0 -16
  381. package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.m +0 -225
  382. package/templates/ice-mobile-native/ios/HBuilder-Hello/Base.lproj/LaunchScreen.storyboard +0 -65
  383. package/templates/ice-mobile-native/ios/HBuilder-Hello/English.lproj/Localizable.strings +0 -13
  384. package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Info.plist +0 -486
  385. package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Prefix.pch +0 -16
  386. package/templates/ice-mobile-native/ios/HBuilder-Hello/LaunchScreen.storyboard +0 -67
  387. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/manifest.json +0 -79
  388. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/1024x1024.png +0 -0
  389. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/120x120.png +0 -0
  390. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/144x144.png +0 -0
  391. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/152x152.png +0 -0
  392. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/167x167.png +0 -0
  393. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/180x180.png +0 -0
  394. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/192x192.png +0 -0
  395. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/20x20.png +0 -0
  396. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/29x29.png +0 -0
  397. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/40x40.png +0 -0
  398. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/58x58.png +0 -0
  399. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/60x60.png +0 -0
  400. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/72x72.png +0 -0
  401. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/76x76.png +0 -0
  402. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/80x80.png +0 -0
  403. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/87x87.png +0 -0
  404. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/96x96.png +0 -0
  405. package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.h +0 -19
  406. package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.m +0 -161
  407. package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.h +0 -19
  408. package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.m +0 -235
  409. package/templates/ice-mobile-native/ios/HBuilder-Hello/control.xml +0 -107
  410. package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/InfoPlist.strings +0 -4
  411. package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/Localizable.strings +0 -12
  412. package/templates/ice-mobile-native/ios/HBuilder-Hello/main.m +0 -18
  413. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/InfoPlist.strings +0 -4
  414. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/LaunchScreen.strings +0 -3
  415. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/Localizable.strings +0 -13
  416. package/templates/ice-mobile-native/ios/HBuilder-Hello.xcodeproj/project.pbxproj +0 -1607
  417. package/templates/ice-mobile-native/package.json.tpl +0 -16
  418. package/templates/ice-mobile-native/public/favicon.ico +0 -0
  419. package/templates/ice-mobile-native/public/index.html +0 -15
  420. package/templates/ice-mobile-native/src/app.tsx +0 -5
  421. package/templates/ice-mobile-native/src/common/Xprinter.ts +0 -58
  422. package/templates/ice-mobile-native/src/common/bluetooth.ts +0 -354
  423. package/templates/ice-mobile-native/src/common/bridge.ts +0 -59
  424. package/templates/ice-mobile-native/src/common/request.ts +0 -3
  425. package/templates/ice-mobile-native/src/common/util.ts +0 -7
  426. package/templates/ice-mobile-native/src/components/index.ts +0 -0
  427. package/templates/ice-mobile-native/src/global.less +0 -3
  428. package/templates/ice-mobile-native/src/layouts/index.tsx +0 -5
  429. package/templates/ice-mobile-native/src/pages/404.tsx +0 -10
  430. package/templates/ice-mobile-native/src/pages/demo/examples/BarCode.tsx +0 -4
  431. package/templates/ice-mobile-native/src/pages/demo/examples/Iconfont.tsx +0 -18
  432. package/templates/ice-mobile-native/src/pages/demo/examples/Input.tsx +0 -17
  433. package/templates/ice-mobile-native/src/pages/demo/examples/List/2.tsx +0 -29
  434. package/templates/ice-mobile-native/src/pages/demo/examples/List/3.tsx +0 -29
  435. package/templates/ice-mobile-native/src/pages/demo/examples/List/4.tsx +0 -55
  436. package/templates/ice-mobile-native/src/pages/demo/examples/List/mock.ts +0 -30
  437. package/templates/ice-mobile-native/src/pages/demo/examples/Loading.tsx +0 -12
  438. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +0 -17
  439. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +0 -17
  440. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +0 -17
  441. package/templates/ice-mobile-native/src/pages/demo/examples/PagingList/1.tsx +0 -6
  442. package/templates/ice-mobile-native/src/pages/demo/examples/QrCode.tsx +0 -4
  443. package/templates/ice-mobile-native/src/pages/demo/examples/TimerButton.tsx +0 -4
  444. package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/index.tsx +0 -64
  445. package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/style.less +0 -16
  446. package/templates/ice-mobile-native/src/pages/demo/examples/usePreload.tsx +0 -9
  447. package/templates/ice-mobile-native/src/pages/demo/index.tsx +0 -89
  448. package/templates/ice-mobile-native/src/routes.ts +0 -29
  449. package/templates/ice-mobile-native/src/types/user.d.ts +0 -3
  450. package/templates/ice-mobile-native/tsconfig.json +0 -3
  451. package/templates/ice-mobile-native/typings.d.ts +0 -1
  452. package/templates/ice-web/.eslintrc +0 -6
  453. package/templates/ice-web/.gitignore.tpl +0 -34
  454. package/templates/ice-web/.icerc.ts +0 -3
  455. package/templates/ice-web/.npmrc.tpl +0 -2
  456. package/templates/ice-web/.prettierignore +0 -9
  457. package/templates/ice-web/.prettierrc +0 -11
  458. package/templates/ice-web/.stylelintrc +0 -3
  459. package/templates/ice-web/README.md.tpl +0 -34
  460. package/templates/ice-web/package.json.tpl +0 -16
  461. package/templates/ice-web/public/favicon.ico +0 -0
  462. package/templates/ice-web/public/index.html +0 -15
  463. package/templates/ice-web/src/app.tsx +0 -5
  464. package/templates/ice-web/src/common/request.ts +0 -3
  465. package/templates/ice-web/src/common/util.ts +0 -7
  466. package/templates/ice-web/src/components/index.ts +0 -0
  467. package/templates/ice-web/src/global.less +0 -5
  468. package/templates/ice-web/src/layouts/index.tsx +0 -5
  469. package/templates/ice-web/src/pages/404.tsx +0 -17
  470. package/templates/ice-web/src/pages/demo/examples/BankInput.tsx +0 -13
  471. package/templates/ice-web/src/pages/demo/examples/BarCode.tsx +0 -4
  472. package/templates/ice-web/src/pages/demo/examples/Collapse.tsx +0 -4
  473. package/templates/ice-web/src/pages/demo/examples/DatePicker.tsx +0 -4
  474. package/templates/ice-web/src/pages/demo/examples/Flex.tsx +0 -10
  475. package/templates/ice-web/src/pages/demo/examples/Grid/1.tsx +0 -25
  476. package/templates/ice-web/src/pages/demo/examples/Grid/2.tsx +0 -26
  477. package/templates/ice-web/src/pages/demo/examples/Grid/3.tsx +0 -37
  478. package/templates/ice-web/src/pages/demo/examples/Grid/4.tsx +0 -43
  479. package/templates/ice-web/src/pages/demo/examples/Grid/5.tsx +0 -36
  480. package/templates/ice-web/src/pages/demo/examples/Grid/6.tsx +0 -28
  481. package/templates/ice-web/src/pages/demo/examples/ImagePreview.tsx +0 -20
  482. package/templates/ice-web/src/pages/demo/examples/Input/1.tsx +0 -4
  483. package/templates/ice-web/src/pages/demo/examples/Input/2.tsx +0 -80
  484. package/templates/ice-web/src/pages/demo/examples/LinkButton/1.tsx +0 -4
  485. package/templates/ice-web/src/pages/demo/examples/LinkButton/2.tsx +0 -9
  486. package/templates/ice-web/src/pages/demo/examples/LinkButton/3.tsx +0 -12
  487. package/templates/ice-web/src/pages/demo/examples/Loading.tsx +0 -12
  488. package/templates/ice-web/src/pages/demo/examples/MobileInput.tsx +0 -4
  489. package/templates/ice-web/src/pages/demo/examples/NumberInput.tsx +0 -4
  490. package/templates/ice-web/src/pages/demo/examples/PagingTable.tsx +0 -21
  491. package/templates/ice-web/src/pages/demo/examples/QrCode.tsx +0 -4
  492. package/templates/ice-web/src/pages/demo/examples/RangeNumber/1.tsx +0 -4
  493. package/templates/ice-web/src/pages/demo/examples/RangeNumber/2.tsx +0 -15
  494. package/templates/ice-web/src/pages/demo/examples/Required.tsx +0 -4
  495. package/templates/ice-web/src/pages/demo/examples/SearchLayout.tsx +0 -46
  496. package/templates/ice-web/src/pages/demo/examples/Table/1.tsx +0 -64
  497. package/templates/ice-web/src/pages/demo/examples/Table/2.tsx +0 -29
  498. package/templates/ice-web/src/pages/demo/examples/Table/3.tsx +0 -39
  499. package/templates/ice-web/src/pages/demo/examples/Table/4.tsx +0 -42
  500. package/templates/ice-web/src/pages/demo/examples/TimerButton.tsx +0 -4
  501. package/templates/ice-web/src/pages/demo/examples/Title/1.tsx +0 -4
  502. package/templates/ice-web/src/pages/demo/examples/Title/2.tsx +0 -5
  503. package/templates/ice-web/src/pages/demo/examples/WaterMark.tsx +0 -8
  504. package/templates/ice-web/src/pages/demo/examples/Wrapper.tsx +0 -40
  505. package/templates/ice-web/src/pages/demo/examples/usePreload.tsx +0 -9
  506. package/templates/ice-web/src/pages/demo/index.tsx +0 -135
  507. package/templates/ice-web/src/pages/index.tsx +0 -3
  508. package/templates/ice-web/src/routes.ts +0 -29
  509. package/templates/ice-web/src/types/user.d.ts +0 -3
  510. package/templates/ice-web/tsconfig.json +0 -3
  511. package/templates/ice-web/typings.d.ts +0 -1
  512. package/templates/ice-web-screen/.eslintrc +0 -6
  513. package/templates/ice-web-screen/.gitignore.tpl +0 -34
  514. package/templates/ice-web-screen/.icerc.ts +0 -3
  515. package/templates/ice-web-screen/.npmrc.tpl +0 -2
  516. package/templates/ice-web-screen/.prettierignore +0 -9
  517. package/templates/ice-web-screen/.prettierrc +0 -11
  518. package/templates/ice-web-screen/.stylelintrc +0 -3
  519. package/templates/ice-web-screen/README.md.tpl +0 -34
  520. package/templates/ice-web-screen/package.json.tpl +0 -17
  521. package/templates/ice-web-screen/public/favicon.ico +0 -0
  522. package/templates/ice-web-screen/public/index.html +0 -15
  523. package/templates/ice-web-screen/src/app.tsx +0 -5
  524. package/templates/ice-web-screen/src/common/request.ts +0 -3
  525. package/templates/ice-web-screen/src/common/util.ts +0 -15
  526. package/templates/ice-web-screen/src/components/index.ts +0 -1
  527. package/templates/ice-web-screen/src/components/resize-container/index.tsx +0 -95
  528. package/templates/ice-web-screen/src/components/resize-container/style.module.less +0 -3
  529. package/templates/ice-web-screen/src/constants.ts +0 -7
  530. package/templates/ice-web-screen/src/global.less +0 -31
  531. package/templates/ice-web-screen/src/hooks/use-size.ts +0 -18
  532. package/templates/ice-web-screen/src/layouts/16_9/fixed.less +0 -18
  533. package/templates/ice-web-screen/src/layouts/16_9/index.tsx +0 -34
  534. package/templates/ice-web-screen/src/layouts/16_9/style.module.less +0 -19
  535. package/templates/ice-web-screen/src/layouts/components/index.ts +0 -0
  536. package/templates/ice-web-screen/src/layouts/controller/index.tsx +0 -79
  537. package/templates/ice-web-screen/src/layouts/index.tsx +0 -11
  538. package/templates/ice-web-screen/src/pages/404.tsx +0 -17
  539. package/templates/ice-web-screen/src/pages/index.tsx +0 -3
  540. package/templates/ice-web-screen/src/pages/template/16_9/index.tsx +0 -13
  541. package/templates/ice-web-screen/src/pages/template/16_9/style.module.less +0 -7
  542. package/templates/ice-web-screen/src/pages/template/components/charts/demo-line/index.tsx +0 -274
  543. package/templates/ice-web-screen/src/pages/template/components/charts/index.ts +0 -1
  544. package/templates/ice-web-screen/src/pages/template/components/index.ts +0 -1
  545. package/templates/ice-web-screen/src/pages/template/controller/index.tsx +0 -85
  546. package/templates/ice-web-screen/src/pages/template/index.tsx +0 -15
  547. package/templates/ice-web-screen/src/pages/template/style.module.less +0 -3
  548. package/templates/ice-web-screen/src/routes.ts +0 -29
  549. package/templates/ice-web-screen/src/styles/vars.less +0 -5
  550. package/templates/ice-web-screen/src/types/user.d.ts +0 -3
  551. package/templates/ice-web-screen/tsconfig.json +0 -3
  552. package/templates/ice-web-screen/typings.d.ts +0 -1
  553. package/templates/miniprogram/.editorconfig +0 -12
  554. package/templates/miniprogram/.eslintrc +0 -6
  555. package/templates/miniprogram/.prettierrc +0 -12
  556. package/templates/miniprogram/src/pages/demo/index.module.scss.d.ts +0 -5
  557. package/templates/miniprogram/src/pages/index/index.module.scss.d.ts +0 -5
  558. package/templates/umi-mobile/.eslintrc +0 -6
  559. package/templates/umi-mobile/.prettierrc +0 -11
  560. package/templates/umi-mobile-h5+app/.eslintrc +0 -6
  561. package/templates/umi-mobile-h5+app/.prettierrc +0 -11
  562. package/templates/umi-mobile-native/.eslintrc +0 -6
  563. package/templates/umi-mobile-native/.prettierrc +0 -11
  564. package/templates/umi-web/.eslintrc +0 -6
  565. package/templates/umi-web/.prettierrc +0 -11
  566. package/templates/umi-web-screen/.eslintrc +0 -6
  567. package/templates/umi-web-screen/.prettierrc +0 -11
  568. /package/templates/miniprogram/src/pages/demo/{index.module.scss → style.scss} +0 -0
  569. /package/templates/miniprogram/src/pages/index/{index.module.scss → style.scss} +0 -0
  570. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/.npmrc.tpl +0 -0
  571. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/.stylelintrc +0 -0
  572. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/public/favicon.ico +0 -0
  573. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/common/request.ts +0 -0
  574. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/common/util.ts +0 -0
  575. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/components/index.ts +0 -0
  576. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/global.less +0 -0
  577. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/mock.ts +0 -0
package/es/yolk.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #! /usr/bin/env node
2
- import e from"@babel/runtime/helpers/toArray";import t from"@babel/runtime/helpers/defineProperty";import s from"lodash/isString";import o from"lodash/pick";import r from"lodash/floor";import i from"lodash/chunk";function n(e,t){var s=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),s.push.apply(s,o)}return s}function c(e){for(var s=1;s<arguments.length;s++){var o=null!=arguments[s]?arguments[s]:{};s%2?n(Object(o),!0).forEach((function(s){t(e,s,o[s])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):n(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}import{execSync as a,spawn as m}from"child_process";import l from"commander";import p from"fs";import d from"glob";import u from"inquirer";import f from"minimatch";import*as y from"miniprogram-ci";import g from"mkdirp";import h from"mustache";import b from"ora";import j from"os";import S from"path";import{format as v}from"prettier";import x from"rimraf";import k from"../package.json";const w=require("staged-git-files"),$=process.cwd(),P="##### CREATED BY YOLK #####",O={ts:"typescript",tsx:"typescript",less:"less",sass:"scss",scss:"scss",css:"css"},F="utf-8",E=60,B=["**/node_modules/**","**/.umi/**","**/.umi-production/**","**/.ice/**","**/build/**","**/dist/**","**/lib/**","**/es/**","**/public/**","**/assets/**","**/h5+app/**","**/android/**","**/ios/**","**/mock/**","**/yolk*/**"],D=b(),I=e=>e&&D.warn(Buffer.from(e,F).toString()),q=e=>e&&D.fail(Buffer.from(e,F).toString()),Q=e=>e&&D.succeed(Buffer.from(e,F).toString()),N=e=>e&&D.info(Buffer.from(e,F).toString()),R=e=>"win32"===process.platform?`${e}.cmd`:e,T=()=>{Q("yolk complete!"),process.exit(0)},_=()=>{I("yolk break!"),process.exit(0)},L=({command:e,args:t,complete:s,close:o,exit:r=!0})=>{const i=m(R(e),t||[],{stdio:"inherit"}).on("close",(e=>{e?(o&&o(),q("yolk close!"),process.exit(e)):(s&&s(),r&&T())}));process.on("SIGINT",(()=>{l.runningCommand&&l.runningCommand.kill("SIGKILL"),i.kill(),_()}))},A=(e,t,s)=>{u.prompt([{type:"list",name:"type",message:"\u9009\u62e9\u6a21\u7248",default:"web",choices:[{name:"web template(umi framework)",value:"umi-web"},{name:"web big screen template(umi framework)",value:"umi-web-screen"},{name:"mobile template(umi framework)",value:"umi-mobile"},{name:"mobile HBuilderX h5+app template(umi framework)",value:"umi-mobile-h5+app"},{name:"mobile native template(umi framework)",value:"umi-mobile-native"},{name:"web template(ice framework)",value:"ice-web"},{name:"web big screen template(ice framework)",value:"ice-web-screen"},{name:"mobile template(ice framework)",value:"ice-mobile"},{name:"mobile HBuilderX h5+app template(ice framework)",value:"ice-mobile-h5+app"},{name:"mobile native template(ice framework)",value:"ice-mobile-native"},{name:"miniprogram template",value:"miniprogram"}]},{type:"input",name:"projectName",message:"\u9879\u76ee\u540d\u79f0",default:S.basename(S.basename(process.cwd()))},{type:"list",name:"dependenciesInstallType",message:"\u9009\u62e9\u4f9d\u8d56\u5b89\u88c5\u65b9\u5f0f",default:"default",choices:[{name:"\u9ed8\u8ba4\u5b89\u88c5",value:"default"},{name:"\u8df3\u8fc7\u5b89\u88c5",value:!1},{name:"pnpm install",value:"pnpm"},{name:"yarn install",value:"yarn"},{name:"npm install",value:"npm"}]}]).then((o=>{const r={projectName:o.projectName,dependenciesInstallType:o.dependenciesInstallType,yolkVersion:k.version};t||(t=S.join(__dirname,`../templates/${o.type}`)),Q(`\u590d\u5236\u6a21\u7248 ${S.basename(t)}`);const i=d.sync("**/*",{cwd:t,dot:!0,ignore:["**/node_modules/**","**/.git/**","**/.DS_Store","**/.idea/**"]});if(i.forEach((s=>{if(!t)return;const o=S.join(t,s);if(!p.statSync(o).isDirectory())if(s.endsWith(".tpl")){const t=p.readFileSync(o,F),i=S.join(e,s.replace(/\.tpl$/u,"")),n=h.render(t,r);g.sync(S.dirname(i)),Q(`\u521b\u5efa ${S.relative(e,i)}`),p.writeFileSync(i,n,F)}else{Q(`\u521b\u5efa ${s}`);const t=S.join(e,s);g.sync(S.dirname(t)),p.copyFileSync(o,t)}})),Q("\u590d\u5236\u6a21\u7248 success!"),s&&p.existsSync(t)&&x(t,(()=>{Q(`\u7f13\u5b58\u5220\u9664 success! ${S.basename(t||"")}`)})),o.dependenciesInstallType)switch(Q("\u521d\u59cb\u5316\u4f9d\u8d56\u5305"),o.dependenciesInstallType){case"default":case"pnpm":L({command:"pnpm",args:["install"]});break;case"yarn":L({command:"yarn",args:["install"]});break;case"npm":L({command:"npm",args:["install"]});break;default:}Q("\u53ef\u67e5\u9605<<https://303394539.github.io/yolk-docs/>>\u4e86\u89e3\u76f8\u5173\u6587\u6863")}))},K=(e,t)=>A(e,t,!0),C=()=>{const e=d.sync("*.yolkrc*",{cwd:$,dot:!0});if(!e.length)return{};const t=S.join($,e[0]);if(!p.existsSync(t))return{};try{return JSON.parse(p.readFileSync(t,F))||{}}catch(s){return q(s.message||".yolkrc\u8f6c\u6362\u9519\u8bef"),{}}},J=()=>{const e=S.join($,".prettierrc");if(p.existsSync(e))try{return JSON.parse(p.readFileSync(e,F))||{}}catch(t){return q(t.message||".prettierrc\u8f6c\u6362\u9519\u8bef"),{}}return{singleQuote:!0,trailingComma:"all",printWidth:80,overrides:[{files:".prettierrc",options:{parser:"json"}}]}},H=()=>{const e=S.join($,"project.config.json");if(!p.existsSync(e))return{};try{return JSON.parse(p.readFileSync(e,F))||{}}catch(t){return q(t.message||"project.config.json\u8f6c\u6362\u9519\u8bef"),{}}},M=()=>{const e=S.join($,"package.json");if(!p.existsSync(e))return{};try{return JSON.parse(p.readFileSync(e,F))||{}}catch(t){return q(t.message||"package.json\u8f6c\u6362\u9519\u8bef"),{}}},U=()=>p.existsSync(S.join($,"project.config.json")),V=()=>p.existsSync(S.join($,".icerc.ts"))||p.existsSync(S.join($,".icerc.js"))||p.existsSync(S.join($,".ice.ts"))||p.existsSync(S.join($,".ice.js")),G=()=>{let e=p.existsSync(S.join($,"node_modules/.bin/max"));if(!e)try{e=p.existsSync(require.resolve("@umijs/max"))}catch(t){}if(!e)try{e=/umi@4\.(\d+)\.(\d+)/u.test(a("umi -v").toString())}catch(t){}if(!e){const s=S.join($,"node_modules","umi","package.json");if(p.existsSync(s))try{const t=JSON.parse(p.readFileSync(s,F))||{};e=t.version&&+t.version.split(".")[0]>3}catch(t){}}return e},W=()=>p.existsSync(S.join($,".icerc.ts"))?".icerc.ts":p.existsSync(S.join($,".icerc.js"))?".icerc.js":p.existsSync(S.join($,".ice.ts"))?".ice.ts":".ice.js",X=()=>{const e=S.join($,"project.config.json");if(p.existsSync(e)){const t=require(e);return t.appid}return""},Y=()=>p.existsSync(S.join($,"project.tt.json"))&&0===X().indexOf("tt"),z=()=>0===X().indexOf("20"),Z=()=>{const e=C();let t="";try{t=require.resolve("@baic/eslint-config-yolk")}catch(r){}const s=d.sync("*.eslintrc*",{cwd:$,dot:!0}),o=s[0];return!1===e.strict&&o&&p.existsSync(o)?o:t},ee=()=>{const e=d.sync("*.stylelintrc*",{cwd:$,dot:!0}),t=e[0];return t},te=()=>{const e=S.join($,".git/"),t=S.join($,".git/hooks"),s=S.join(t,"pre-commit"),o=p.existsSync(e),r=p.existsSync(s),i=r&&p.readFileSync(s,"utf8").includes(P);if(o&&(!r||!i)){g.sync(t),p.writeFileSync(s,["#!/usr/bin/env bash","npx yolk pre-commit","RESULT=$?","[ $RESULT -ne 0 ] && exit 1","exit 0",P].join(j.EOL),"utf8");try{p.chmodSync(s,"777")}catch(n){q(`chmod ${s} failed: ${n.message}`)}Q("Create pre-commit hook")}},se=()=>{const e=C(),t=!1!==e.strict,s=e.eslintIgnore,o=e.stylelintIgnore;w().then((e=>{const r=new Promise(((s,r)=>{const n=ee();if(n){const a=e.map((e=>e.filename)).filter((e=>/^(src|tests)/iu.test(e))).filter((e=>/\.(le|sa|sc|c)s{2}$/iu.test(e))).filter((e=>B.every((t=>!f(e,t,{matchBase:!0}))))).filter((e=>"string"===typeof o?!f(e,o,{matchBase:!0}):o instanceof RegExp?!o.test(e):!Array.isArray(o)||o.every((t=>"string"===typeof t?!f(e,t,{matchBase:!0}):!(t instanceof RegExp)||!t.test(e))))).map((e=>{const t=S.join($,e);return p.existsSync(t)?t:null})).filter((e=>!!e));if(a.forEach((e=>{if(e&&p.existsSync(e)){const t=S.extname(e).replace(/^\./u,""),s=p.readFileSync(e,"utf8"),o=v(s,c({parser:O[t]},J()));p.writeFileSync(e,o,"utf8")}})),Q("style prettier success!"),a.length>=E){const e=[];i(a,20).forEach((s=>{e.push(new Promise(((e,o)=>{L({command:"stylelint",args:[t?"--ignore-disables":"","--allow-empty-input","--config",n,...s],complete:e,close:o,exit:!1})})))}));const o=process.getMaxListeners(),c=i(e,o?o/2:2);let m=0;const l=()=>{m<c.length?Promise.all(c[m]).then((()=>{m++,l()})).catch(r):s()};l()}else a.length&&L({command:"stylelint",args:[t?"--ignore-disables":"","--allow-empty-input","--config",n,...a],complete:s,close:r,exit:!1})}else s()})),n=()=>{const o=e.map((e=>e.filename)).filter((e=>/^(src|tests)/iu.test(e))).filter((e=>/\.([t|j]sx?)$/iu.test(e))).map((e=>{const t=S.join($,e);return p.existsSync(t)?t:null})).filter((e=>!!e));if(o.length){o.forEach((e=>{if(e&&p.existsSync(e)){const t=S.extname(e).replace(/^\./u,""),s=p.readFileSync(e,"utf8"),o=v(s,c({parser:O[t]},J()));p.writeFileSync(e,o,"utf8")}})),Q("script prettier success!");const e=Z();if(e){const r=o.filter((e=>B.every((t=>!f(e,t,{matchBase:!0}))))).filter((e=>"string"===typeof s?!f(e,s,{matchBase:!0}):s instanceof RegExp?!s.test(e):!Array.isArray(s)||s.every((t=>"string"===typeof t?!f(e,t,{matchBase:!0}):!(t instanceof RegExp)||!t.test(e)))));if(t&&(I("git commit\u7981\u6b62eslint\u7684ignore\u65b9\u5f0f(eslint-disable\u3001.eslintrc*\u3001ignore\u7b49)\u3002"),s&&I(`\u901a\u8fc7yolkrc\u914d\u7f6eeslintIgnore\uff1a${s}\u3002`)),r.length>=E){const s=[];i(r,20).forEach((o=>{s.push(new Promise((s=>{L({command:"eslint",args:[t?"--no-inline-config --no-ignore":"","--no-error-on-unmatched-pattern","--config",e,...o],complete:s,exit:!1})})))}));const o=process.getMaxListeners(),n=i(s,o?o/2:2);let c=0;const a=()=>{c<n.length?Promise.all(n[c]).then((()=>{c++,a()})):T()};a()}else r.length&&L({command:"eslint",args:[t?"--no-inline-config --no-ignore":"","--no-error-on-unmatched-pattern","--config",e,...r]})}else I("\u6ca1\u6709eslint\u914d\u7f6e\u6587\u4ef6")}else T()};I("\u8981\u6c42\u7edf\u4e00\u4ee3\u7801\u89c4\u8303\uff0c\u8fdb\u884c\u4e25\u683c\u7684\u8bed\u6cd5\u68c0\u67e5\u3002"),r.then(n)}))},oe=({mProject:e,mPrivateKeyPath:t,mVersion:s,mDesc:o,mRobot:r,mQrcodeFormat:i,mQrcodeOutputDest:n,mPagePath:c,mSearchQuery:m})=>{const l=p.existsSync(S.join($,".git"))?a("git log -1 --pretty=format:%H").toString():"",d=H(),u=d.appid,f=e||S.join($,"dist"),g=t||S.join($,`private.${u}.key`);if(p.existsSync(f)){if(p.existsSync(g)){const e=M(),t=s||e.version||d.version||"1.0.0",a=o||e.description||d.description,p=`version: ${t};${l?` commit: ${l};`:""}${a?` description: ${a};`:""}`;l&&N(`commit: ${l}`),N(`dist: ${f}`),N(`key: ${g}`),N(`appid: ${u}`),N(`version: ${t}`),N(`desc: ${p}`);const h=new y.Project({appid:u,type:"miniProgram",projectPath:f,privateKeyPath:g,ignores:["node_modules/**/*","**/*.txt","**/*.key","**/*.less","**/*.sass","**/*.scss","**/*.css","**/*.jsx","**/*.ts","**/*.tsx","**/*.md"]});return{appid:u,options:{project:h,version:t,desc:p,setting:d.setting,robot:r,qrcodeFormat:i,qrcodeOutputDest:n,pagePath:c,searchQuery:m}}}throw Error(`\u6ca1\u6709\u627e\u5230\u4e0a\u4f20\u5bc6\u94a5(${g})`)}throw Error(`\u6ca1\u6709\u627e\u5230dist\u76ee\u5f55(${f})`)},re=()=>{te(),process.argv.length>2?l.version(k.version).usage("[command] [options]").option("--clone","\u901a\u8fc7git clone\u62c9\u53d6\u6a21\u7248").option("--template <template>","\u6a21\u7248\u540d\u79f0\u6216\u8005clone\u6a21\u5f0f\u7684git\u5730\u5740").option("--docs","\u542f\u52a8\u6587\u6863\u6a21\u5f0f").option("--mProject <project>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u5de5\u7a0b\u76ee\u5f55").option("--mPrivateKeyPath <privateKeyPath>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20key\u6587\u4ef6").option("--mVersion <version>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u7248\u672c\u53f7").option("--mDesc <desc>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u63cf\u8ff0").option("--mRobot <robot>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20ci\u673a\u5668\u4eba1~30").option("--mQrcodeFormat <qrcodeFormat>",'\u5c0f\u7a0b\u5e8f\u9884\u89c8\u8fd4\u56de\u4e8c\u7ef4\u7801\u6587\u4ef6\u7684\u683c\u5f0f "image" \u6216 "base64"\uff0c \u9ed8\u8ba4\u503c "terminal" \u4f9b\u8c03\u8bd5\u7528').option("--mQrcodeOutputDest <qrcodeOutputDest>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u4e8c\u7ef4\u7801\u6587\u4ef6\u4fdd\u5b58\u8def\u5f84").option("--mPagePath <pagePath>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u9884\u89c8\u9875\u9762\u8def\u5f84").option("--mSearchQuery <searchQuery>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u9884\u89c8\u9875\u9762\u8def\u5f84\u542f\u52a8\u53c2\u6570").action(((t,i)=>{const n=e(i),a=n[0],m=n.slice(1),l=t.clone,d=t.template,u=t.docs;if(a)switch(N(`yolk version: ${k.version}`),N(`node version: ${process.version}`),N(`platform: ${j.platform()}`),N(`memory: ${r(j.freemem()/1024/1024)} MB(${r(j.totalmem()/1024/1024)} MB)`),a){case"init":if(Q(`yolk ${a} \u5f00\u59cb`),l)if(d){const e=".yolk",t=S.join($,e);p.existsSync(t)&&x(t,(()=>{Q(`\u7f13\u5b58\u5220\u9664 success! ${t}`)})),L({command:"git",args:["clone","-b","master","--depth","1",d,e].concat(m)}),K($,t)}else q("--clone \u6a21\u5f0f\u5fc5\u987b\u6709--template");else A($);break;case"start":U()?Y()?L({command:"taro",args:["build","--type","tt","--watch"].concat(m)}):z()?L({command:"taro",args:["build","--type","alipay","--watch"].concat(m)}):L({command:"taro",args:["build","--type","weapp","--watch"].concat(m)}):u?L({command:"dumi",args:["dev"].concat(m)}):V()?L({command:"icejs",args:["start","--config",W()].concat(m)}):G()?L({command:"max",args:["dev"].concat(m)}):L({command:"umi",args:["dev"].concat(m)});break;case"build":U()?Y()?L({command:"taro",args:["build","--type","tt"].concat(m)}):z()?L({command:"taro",args:["build","--type","alipay"].concat(m)}):L({command:"taro",args:["build","--type","weapp"].concat(m)}):u?L({command:"dumi",args:["build"].concat(m)}):V()?L({command:"icejs",args:["build","--config",W()].concat(m)}):G()?L({command:"max",args:["build"].concat(m)}):L({command:"umi",args:["build"].concat(m)});break;case"pre-commit":se();break;case"test":L({command:"umi-test",args:["--no-cache","--update-snapshot","--runInBand","--detectOpenHandles"].concat(m)});break;case"miniapp-upload":case"miniprogram-upload":if(U())if(Y());else if(z());else{const e=oe(t),r=e.appid,i=e.options;N(`${r}\u4e0a\u4f20\u5f00\u59cb`),y.upload(c(c({},o(i,["project","version","desc","setting","robot"])),{},{onProgressUpdate:e=>{if(s(e))N(`task: ${e}`);else{const t=e.status,s=e.message;N(`task(${t}): ${s}`)}}})).then((()=>{Q(`${r}\u4e0a\u4f20\u5b8c\u6210`)}))}break;case"miniapp-preview":case"miniprogram-preview":if(U())if(Y());else if(z());else{const e=oe(t),r=e.appid,i=e.options;N(`${r}\u4e0a\u4f20\u9884\u89c8\u5f00\u59cb`),y.preview(c(c({},o(i,["project","version","desc","setting","robot","qrcodeFormat","qrcodeOutputDest","pagePath","searchQuery"])),{},{onProgressUpdate:e=>{if(s(e))N(`task: ${e}`);else{const t=e.status,s=e.message;N(`task(${t}): ${s}`)}}})).then((()=>{Q(`${r}\u4e0a\u4f20\u9884\u89c8\u5b8c\u6210`)}))}break;default:_()}})).parse(process.argv):_()};re();
2
+ var w=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(o,t)=>(typeof require<"u"?require:o)[t]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+e+'" is not supported')});import{execSync as F}from"node:child_process";import{chmodSync as ee,copyFileSync as te,existsSync as c,readFileSync as Q,statSync as oe,writeFileSync as q}from"node:fs";import D from"node:os";import{basename as j,dirname as M,join as m,relative as ie}from"node:path";import G from"lodash/floor";import H from"lodash/isString";import{globSync as ne}from"glob";import re from"inquirer";import*as S from"miniprogram-ci";import{mkdirpSync as J}from"mkdirp";import{program as h}from"../compiled/commander";import ae from"../compiled/mustache";import x from"../package.json";import{breakExit as se,cwd as d,ENCODING as k,error as A,execCommand as n,getPackageJSON as me,getProjectConfigJSON as ce,info as a,ready as l,rimrafSync as W,warn as X}from"./_util";var P="##### CREATED BY YOLK #####",Y=(e,o,t)=>{re.prompt([{type:"list",name:"type",message:"选择模版",default:"web",choices:[{name:"web template(umi framework)",value:"umi-web"},{name:"web big screen template(umi framework)",value:"umi-web-screen"},{name:"mobile template(umi framework)",value:"umi-mobile"},{name:"mobile HBuilderX h5+app template(umi framework)",value:"umi-mobile-h5+app"},{name:"mobile HBuilderX uni-app template(umi framework)",value:"umi-mobile-uni-app"},{name:"mobile native template(umi framework)",value:"umi-mobile-native"},{name:"miniprogram template",value:"miniprogram"}]},{type:"input",name:"projectName",message:"项目名称",default:j(j(process.cwd()))},{type:"list",name:"packageManager",message:"选择包管理器(默认:pnpm,推荐:pnpm)",default:"default",choices:[{name:"默认安装",value:"default"},{name:"跳过安装",value:!1},{name:"pnpm install",value:"pnpm"},{name:"yarn install",value:"yarn"},{name:"npm install",value:"npm"}]}]).then(({type:r,projectName:u,packageManager:g})=>{let s={projectName:u,packageManager:g==="default"?"pnpm":g,yolkVersion:x.version};if(r==="umi-mobile-uni-app"){X("暂不支持");return}let i=o||m(__dirname,`../templates/${r}`);if(l(`复制模版 ${j(i)}`),ne("**/*",{cwd:i,dot:!0,ignore:["**/node_modules/**","**/.git/**","**/.DS_Store","**/.idea/**"]}).forEach(f=>{if(!i)return;let y=m(i,f);if(!oe(y).isDirectory())if(f.endsWith(".tpl")){let p=Q(y,k),v=m(e,f.replace(/\.tpl$/,"")),b=ae.render(p,s);J(M(v)),l(`创建 ${ie(e,v)}`),q(v,b,k)}else{l(`创建 ${f}`);let p=m(e,f);J(M(p)),te(y,p)}}),l("复制模版 success!"),t&&c(i)&&W(i)&&l(`缓存删除 success! ${j(i||"")}`),g)switch(l("初始化依赖包"),g){case"default":case"pnpm":n({command:"pnpm",args:["install"]});break;case"yarn":n({command:"yarn",args:["install"]});break;case"npm":n({command:"npm",args:["install"]});break;default:}l("可查阅<<https://303394539.github.io/yolk-docs/>>了解相关文档")})},pe=(e,o)=>Y(e,o,!0),C=()=>c(m(d,"project.config.json")),U=()=>{let e=c(m(d,"node_modules/.bin/max"));if(!e)try{e=c(w.resolve("@umijs/max"))}catch{}if(!e)try{e=/umi@4\.(\d+)\.(\d+)/.test(F("umi -v").toString())}catch{}if(!e){let o=m(d,"node_modules","umi","package.json");if(c(o))try{let t=JSON.parse(Q(o,k))||{};e=t.version&&+t.version.split(".")[0]>3}catch{}}return e},z=()=>{let e=m(d,"project.config.json");return c(e)?w(e).appid:""},N=()=>c(m(d,"project.tt.json"))&&z().indexOf("tt")===0,E=()=>z().indexOf("20")===0,le=()=>{let e=m(d,".git/"),o=m(d,".git/hooks"),t=m(o,"pre-commit"),r=c(e),u=c(o),g=c(t);if(r){u||(J(o),l("create .git/hooks")),g||(q(t,"",k),l("create pre-commit"));try{ee(t,"777")}catch(i){A(`chmod ${t} failed: ${i.message}`)}let s=Q(t,k).toString();s.indexOf(P)>=0&&(s=`${s.substring(0,s.indexOf(P))}${s.substring(s.lastIndexOf(P)+P.length)}`.replace(/(\r|\n)+$/gu,"")),q(t,(s.indexOf("#!/")<0?["#!/bin/sh"]:[]).concat([s,P,"npx yolk pre-commit","RESULT=$?","[ $RESULT -ne 0 ] && exit 1","exit 0",P]).filter(i=>!!i).join(D.EOL),k)}},de=async()=>{X("统一代码规范,进行严格的语法检查。"),n({command:"lint-staged",args:["-c",w.resolve("./lintstagedrc")]})},B=({mAppid:e,mProject:o,mPrivateKeyPath:t,mVersion:r,mDesc:u,mRobot:g,mQrcodeFormat:s,mQrcodeOutputDest:i,mPagePath:$,mSearchQuery:f})=>{let y=c(m(d,".git"))?F("git log -1 --pretty=format:%H").toString():"",p=ce(),v=e||p.appid,b=o||m(d,"dist"),O=t||m(d,`private.${v}.key`);if(c(b))if(c(O)){let T=me(),K=r||T.version||p.version||"1.0.0",R=u||T.description||p.description,I=`${y?` commit: ${y};`:""}${R?` description: ${R};`:""}`;y&&a(`commit: ${y}`),a(`dist: ${b}`),a(`key: ${O}`),a(`appid: ${v}`),a(`version: ${K}`),a(`desc: ${I}`);let Z=new S.Project({appid:v,type:"miniProgram",projectPath:b,privateKeyPath:O,ignores:["node_modules/**/*","**/*.txt","**/*.key","**/*.less","**/*.sass","**/*.scss","**/*.css","**/*.jsx","**/*.ts","**/*.tsx","**/*.md"]});return{appid:v,options:{project:Z,version:K,desc:I,setting:{...p.setting,es6:!1,es7:!1,minifyJS:!1,minifyWXML:!1,minifyWXSS:!1,minify:!1},robot:g,qrcodeFormat:s,qrcodeOutputDest:i,pagePath:$,searchQuery:f}}}else throw Error(`没有找到上传密钥(${O})`);else throw Error(`没有找到dist目录(${b})`)},_=()=>{let e="";try{e=F(`npm view ${x.name} version`,{timeout:3e3}).toString().replace(/\n/g,"")}catch{}a(`yolk version: ${x.version}${e&&e!==x.version?`(last:${e})`:""}`),a(`node version: ${process.version}`),a(`platform: ${D.platform()}`),a(`memory: ${G(D.freemem()/1024/1024)} MB(${G(D.totalmem()/1024/1024)} MB)`)},L=e=>e.option("--appid, --mAppid <appid>","小程序appid").option("--project, --mProject <project>","小程序上传工程目录").option("--privateKeyPath, --mPrivateKeyPath <privateKeyPath>","小程序上传key文件,默认:{当前目录}/private.{appid}.key").option("--version, --mVersion <version>","小程序上传版本号").option("--desc, --mDesc <desc>","小程序上传描述").option("--robot, --mRobot <robot>","小程序上传ci机器人1~30").option("--qrcodeFormat, --mQrcodeFormat <qrcodeFormat>",'小程序预览返回二维码文件的格式 "image" 或 "base64", 默认值 "terminal" 供调试用').option("--qrcodeOutputDest, --mQrcodeOutputDest <qrcodeOutputDest>","小程序预览二维码文件保存路径").option("--pagePath, --mPagePath <pagePath>","小程序预览预览页面路径").option("--searchQuery, --mSearchQuery <searchQuery>","小程序预览预览页面路径启动参数"),ue=/(\w+)=('(.*)'|"(.*)"|(.*))/giu,V=e=>{process.env.DID_YOU_KNOW="none",process.env.VITE_CJS_IGNORE_WARNING="true";let o=[];return e==null||e.forEach(t=>{if(ue.test(t)){let[r,u]=t.split("=");process.env[r]=u,a(`设置环境变量:${r}=${u}`)}else o.push(t)}),o},ge=()=>{le(),process.argv.length>2?(h.version(x.version,"-v,--version","输出版本号").usage("[command] [options]"),h.command("init").description("初始化项目").option("--clone <template>","如果需要,可通过git clone拉取模版,默认取cli默认模版").action(({clone:e},{args:o})=>{if(_(),l("yolk init 开始"),e){let t=".yolk",r=m(d,t);c(r)&&W(r)&&l(`缓存删除 success! ${r}`),n({command:"git",args:["clone","-b","master","--depth","1",e,t].concat(o)}),pe(d,r)}else Y(d)}),h.command("start").description("启动项目").option("--docs","文档模式").action(({docs:e},{args:o})=>{_();let t=V(o);C()?N()?n({command:"taro",args:["build","--type","tt","--watch"].concat(t)}):E()?n({command:"taro",args:["build","--type","alipay","--watch"].concat(t)}):n({command:"taro",args:["build","--type","weapp","--watch"].concat(t)}):e?n({command:"dumi",args:["dev"].concat(t)}):U()?n({command:"max",args:["dev"].concat(t)}):n({command:"umi",args:["dev"].concat(t)})}),h.command("build").description("编译项目").option("--docs","文档模式").action(({docs:e},{args:o})=>{_();let t=V(o);C()?N()?n({command:"taro",args:["build","--type","tt"].concat(t)}):E()?n({command:"taro",args:["build","--type","alipay"].concat(t)}):n({command:"taro",args:["build","--type","weapp"].concat(t)}):e?n({command:"dumi",args:["build"].concat(t)}):U()?n({command:"max",args:["setup"].concat(t),complete:()=>n({command:"max",args:["build"].concat(t)}),exit:!1}):n({command:"umi",args:["build"].concat(t)})}),h.command("pre-commit").description("执行commit hook").action(de),L(h.command("miniprogram-upload").description("使用 miniprogram-ci 上传小程序")).action(e=>{if(C()){if(!N()){if(!E()){let{appid:o,options:{project:t,version:r,desc:u,setting:g,robot:s}}=B(e);a(`${o} 上传开始`),S.upload({project:t,version:r,desc:u,setting:g,robot:s,onProgressUpdate:i=>{if(H(i))a(`task: ${i}`);else{let{status:$,message:f}=i;a(`task(${$}): ${f}`)}}}).then(()=>{l(`${o} 上传完成`)})}}}else A("非小程序项目目录")}),L(h.command("miniprogram-preview").description("使用 miniprogram-ci 预览小程序")).action(e=>{if(C()){if(!N()){if(!E()){let{appid:o,options:{project:t,version:r,desc:u,setting:g,robot:s,qrcodeFormat:i,qrcodeOutputDest:$,pagePath:f,searchQuery:y}}=B(e);a(`${o} 上传预览开始`),S.preview({project:t,version:r,desc:u,setting:g,robot:s,qrcodeFormat:i,qrcodeOutputDest:$,pagePath:f,searchQuery:y,onProgressUpdate:p=>{if(H(p))a(`task: ${p}`);else{let{status:v,message:b}=p;a(`task(${v}): ${b}`)}}}).then(()=>{l(`${o} 上传预览完成`)})}}}else A("非小程序项目目录")}),h.command("exec").description("执行ts文件").argument("<path>","执行的ts文件").action(e=>{n({command:"tsx",args:[e]})}),h.parse(process.argv)):se()};ge();export{le as initPreCommit};
package/lib/_util.d.ts ADDED
@@ -0,0 +1,29 @@
1
+ export type YolkConfig = {
2
+ strict?: boolean;
3
+ eslintIgnorePattern?: string;
4
+ stylelintIgnorePattern?: string;
5
+ };
6
+ export declare const cwd: string;
7
+ export declare const ENCODING = "utf-8";
8
+ export declare const warn: (text?: string) => void | "" | undefined;
9
+ export declare const error: (text?: string) => void | "" | undefined;
10
+ export declare const ready: (text?: string) => void | "" | undefined;
11
+ export declare const info: (text?: string) => void | "" | undefined;
12
+ export declare const rimrafSync: (path: string) => boolean;
13
+ export declare const completeExit: () => never;
14
+ export declare const breakExit: () => never;
15
+ export declare const execCommand: ({ command, args, complete, close, exit, }: {
16
+ command: string;
17
+ args?: string[];
18
+ complete?: () => void;
19
+ close?: () => void;
20
+ exit?: boolean;
21
+ }) => void;
22
+ export declare const getYolkConfig: () => YolkConfig;
23
+ export declare const getProjectConfigJSON: () => any;
24
+ export declare const getPackageJSON: () => any;
25
+ export declare const getConfigFilePath: (type: "eslint" | "stylelint" | "prettier" | "biome") => string;
26
+ export declare const getEsLintConfigPath: () => string;
27
+ export declare const getStyleLintConfigPath: () => string;
28
+ export declare const getPrettierConfigPath: () => string;
29
+ export declare const getBiomeConfigPath: () => string;
package/lib/_util.js ADDED
@@ -0,0 +1 @@
1
+ var J=Object.create;var l=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var E=Object.getPrototypeOf,F=Object.prototype.hasOwnProperty;var L=(t,e)=>{for(var o in e)l(t,o,{get:e[o],enumerable:!0})},u=(t,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of v(e))!F.call(t,r)&&r!==o&&l(t,r,{get:()=>e[r],enumerable:!(n=I(e,r))||n.enumerable});return t};var m=(t,e,o)=>(o=t!=null?J(E(t)):{},u(e||!t||!t.__esModule?l(o,"default",{value:t,enumerable:!0}):o,t)),Y=t=>u(l({},"__esModule",{value:!0}),t);var H={};L(H,{ENCODING:()=>y,breakExit:()=>w,completeExit:()=>b,cwd:()=>i,error:()=>C,execCommand:()=>q,getBiomeConfigPath:()=>A,getConfigFilePath:()=>a,getEsLintConfigPath:()=>T,getPackageJSON:()=>D,getPrettierConfigPath:()=>z,getProjectConfigJSON:()=>B,getStyleLintConfigPath:()=>W,getYolkConfig:()=>O,info:()=>j,ready:()=>_,rimrafSync:()=>G,warn:()=>P});module.exports=Y(H);var d=require("node:child_process"),s=m(require("node:fs")),g=m(require("node:path")),c=m(require("chalk")),x=require("glob"),p=require("rimraf"),h=require("../compiled/commander"),i=process.cwd(),f=console,y="utf-8",P=t=>t&&f.log(c.default.yellow("warn -"),t),C=t=>t&&f.log(c.default.red("error -"),t),_=t=>t&&f.log(c.default.green("ready -"),t),j=t=>t&&f.log(c.default.blue("info -"),t),N=()=>process.platform==="win32",$=t=>N()?`${t}.cmd`:t,G=t=>N()?(0,p.windowsSync)(t):(0,p.rimrafSync)(t),b=()=>{j("yolk complete!"),process.exit(0)},w=()=>{P("yolk break!"),process.exit(0)},q=({command:t,args:e,complete:o,close:n,exit:r=!0})=>{let S=(0,d.spawn)($(t),e||[],{stdio:"inherit"}).on("close",k=>{k?(n&&n(),C("yolk close!"),process.exit(k)):(o&&o(),r&&b())});process.on("SIGINT",()=>{h.program.exitOverride(),S.kill(),w()})},O=()=>{let t=(0,x.globSync)("*.yolkrc*",{cwd:i,dot:!0});if(!t.length)return{};let e=g.default.join(i,t[0]);if(s.default.existsSync(e))try{return JSON.parse(s.default.readFileSync(e,y))||{}}catch(o){return o(o.message||".yolkrc转换错误"),{}}else return{}},B=()=>{let t=g.default.join(i,"project.config.json");if(s.default.existsSync(t))try{return JSON.parse(s.default.readFileSync(t,y))||{}}catch(e){return e(e.message||"project.config.json转换错误"),{}}else return{}},D=()=>{let t=g.default.join(i,"package.json");if(s.default.existsSync(t))try{return JSON.parse(s.default.readFileSync(t,y))||{}}catch(e){return e(e.message||"package.json转换错误"),{}}else return{}},a=t=>{let e=O(),o="";try{o=require.resolve(`@baic/${t}-config-yolk`)}catch{}let n=(0,x.globSync)(`*.${t}rc*`,{cwd:i,dot:!0}),r=n==null?void 0:n[0];return e.strict===!1&&r&&s.default.existsSync(r)?r:s.default.existsSync(o)?o:r},T=()=>a("eslint"),W=()=>a("stylelint"),z=()=>a("prettier"),A=()=>a("biome");0&&(module.exports={ENCODING,breakExit,completeExit,cwd,error,execCommand,getBiomeConfigPath,getConfigFilePath,getEsLintConfigPath,getPackageJSON,getPrettierConfigPath,getProjectConfigJSON,getStyleLintConfigPath,getYolkConfig,info,ready,rimrafSync,warn});
package/lib/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  #! /usr/bin/env node
2
- import './yolk';
package/lib/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #! /usr/bin/env node
2
- "use strict";require("./yolk");
2
+ require("../compiled/v8-compile-cache");require("./yolk");
@@ -0,0 +1 @@
1
+ var{join:e}=require("node:path"),{getBiomeConfigPath:p,getEsLintConfigPath:h,getPrettierConfigPath:u,getStyleLintConfigPath:$,getYolkConfig:m}=require("./_util"),l=["**/node_modules/**","**/build/**","**/dist/**","**/lib/**","**/es/**","**/mock/**","**/test/**","**/public/**","**/assets/**","**/.umi/**","**/.umi-production/**","**/h5+app/**","**/*uni*/**","**/android/**","**/ios/**","**/*.ignore/**"],{strict:g=!0,eslintIgnorePattern:c,stylelintIgnorePattern:i}=m(),o=e(process.cwd(),"node_modules",".cache"),t=`prettier --write --cache --cache-strategy=content --cache-location=${e(o,".prettiercache")} --config ${u()} --no-error-on-unmatched-pattern`,r=`eslint --fix ${g?"--no-inline-config":""} ${c?`--ignore-pattern ${c}`:""} --no-error-on-unmatched-pattern --cache --cache-strategy=content --cache-location=${e(o,".eslintcache")} --config ${h()} ${l.map(n=>`--ignore-pattern ${n}`).join(" ")}`,s=`stylelint --fix ${g?"--ignore-disables":""} ${i?`--ignore-pattern ${i}`:""} --allow-empty-input --cache --cache-strategy=content --cache-location=${e(o,".stylelintcache")} --config ${$()} ${l.map(n=>`--ignore-pattern ${n}`).join(" ")}`,d=`biome check --write --unsafe --no-errors-on-unmatched --log-level=error --files-ignore-unknown=true --config-path=${p()}`,a={"*.{md,json,jsonc}":[t],"*.css":[t,`${s} --custom-syntax postcss`],"*.less":[t,`${s} --custom-syntax postcss-less`],"*.{sass,scss}":[t,`${s} --custom-syntax postcss-scss`],"*.{js,jsx,cjs,mjs}":[t,r],"*.{ts,tsx,cts,mts}":[`${t} --parser=typescript`,r]};module.exports={...a,[`!(${Object.keys(a).join("|")})`]:[d]};
@@ -0,0 +1,2 @@
1
+ #! /usr/bin/env node
2
+ export {};
@@ -0,0 +1,2 @@
1
+ #! /usr/bin/env node
2
+ var i=require("./yolk");(0,i.initPreCommit)();
package/lib/yolk.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  #! /usr/bin/env node
2
- export {};
2
+ export declare const initPreCommit: () => void;
package/lib/yolk.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #! /usr/bin/env node
2
- "use strict";var e=require("@babel/runtime/helpers/interopRequireDefault");function t(){const n=e(require("@babel/runtime/helpers/toArray"));return t=function(){return n},n}function n(){const t=e(require("@babel/runtime/helpers/defineProperty"));return n=function(){return t},t}function r(){const t=e(require("lodash/isString"));return r=function(){return t},t}function a(){const t=e(require("lodash/pick"));return a=function(){return t},t}function i(){const t=e(require("lodash/floor"));return i=function(){return t},t}function o(){const t=e(require("lodash/chunk"));return o=function(){return t},t}function s(){const e=require("child_process");return s=function(){return e},e}function c(){const t=e(require("commander"));return c=function(){return t},t}function u(){const t=e(require("fs"));return u=function(){return t},t}function l(){const t=e(require("glob"));return l=function(){return t},t}function f(){const t=e(require("inquirer"));return f=function(){return t},t}function d(){const t=e(require("minimatch"));return d=function(){return t},t}function m(){const e=x(require("miniprogram-ci"));return m=function(){return e},e}function p(){const t=e(require("mkdirp"));return p=function(){return t},t}function y(){const t=e(require("mustache"));return y=function(){return t},t}function g(){const t=e(require("ora"));return g=function(){return t},t}function h(){const t=e(require("os"));return h=function(){return t},t}function b(){const t=e(require("path"));return b=function(){return t},t}function j(){const e=require("prettier");return j=function(){return e},e}function v(){const t=e(require("rimraf"));return v=function(){return t},t}var S=e(require("../package.json"));function w(e){if("function"!==typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(w=function(e){return e?n:t})(e)}function x(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==typeof e&&"function"!==typeof e)return{default:e};var n=w(t);if(n&&n.has(e))return n.get(e);var r={},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var o=a?Object.getOwnPropertyDescriptor(e,i):null;o&&(o.get||o.set)?Object.defineProperty(r,i,o):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function $(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?k(Object(r),!0).forEach((function(t){(0,n().default)(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):k(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}const O=require("staged-git-files"),P=process.cwd(),q="##### CREATED BY YOLK #####",F={ts:"typescript",tsx:"typescript",less:"less",sass:"scss",scss:"scss",css:"css"},E="utf-8",D=60,B=["**/node_modules/**","**/.umi/**","**/.umi-production/**","**/.ice/**","**/build/**","**/dist/**","**/lib/**","**/es/**","**/public/**","**/assets/**","**/h5+app/**","**/android/**","**/ios/**","**/mock/**","**/yolk*/**"],I=(0,g().default)(),_=e=>e&&I.warn(Buffer.from(e,E).toString()),Q=e=>e&&I.fail(Buffer.from(e,E).toString()),R=e=>e&&I.succeed(Buffer.from(e,E).toString()),N=e=>e&&I.info(Buffer.from(e,E).toString()),T=e=>"win32"===process.platform?`${e}.cmd`:e,L=()=>{R("yolk complete!"),process.exit(0)},M=()=>{_("yolk break!"),process.exit(0)},A=({command:e,args:t,complete:n,close:r,exit:a=!0})=>{const i=(0,s().spawn)(T(e),t||[],{stdio:"inherit"}).on("close",(e=>{e?(r&&r(),Q("yolk close!"),process.exit(e)):(n&&n(),a&&L())}));process.on("SIGINT",(()=>{c().default.runningCommand&&c().default.runningCommand.kill("SIGKILL"),i.kill(),M()}))},K=(e,t,n)=>{f().default.prompt([{type:"list",name:"type",message:"\u9009\u62e9\u6a21\u7248",default:"web",choices:[{name:"web template(umi framework)",value:"umi-web"},{name:"web big screen template(umi framework)",value:"umi-web-screen"},{name:"mobile template(umi framework)",value:"umi-mobile"},{name:"mobile HBuilderX h5+app template(umi framework)",value:"umi-mobile-h5+app"},{name:"mobile native template(umi framework)",value:"umi-mobile-native"},{name:"web template(ice framework)",value:"ice-web"},{name:"web big screen template(ice framework)",value:"ice-web-screen"},{name:"mobile template(ice framework)",value:"ice-mobile"},{name:"mobile HBuilderX h5+app template(ice framework)",value:"ice-mobile-h5+app"},{name:"mobile native template(ice framework)",value:"ice-mobile-native"},{name:"miniprogram template",value:"miniprogram"}]},{type:"input",name:"projectName",message:"\u9879\u76ee\u540d\u79f0",default:b().default.basename(b().default.basename(process.cwd()))},{type:"list",name:"dependenciesInstallType",message:"\u9009\u62e9\u4f9d\u8d56\u5b89\u88c5\u65b9\u5f0f",default:"default",choices:[{name:"\u9ed8\u8ba4\u5b89\u88c5",value:"default"},{name:"\u8df3\u8fc7\u5b89\u88c5",value:!1},{name:"pnpm install",value:"pnpm"},{name:"yarn install",value:"yarn"},{name:"npm install",value:"npm"}]}]).then((r=>{const a={projectName:r.projectName,dependenciesInstallType:r.dependenciesInstallType,yolkVersion:S.default.version};t||(t=b().default.join(__dirname,`../templates/${r.type}`)),R(`\u590d\u5236\u6a21\u7248 ${b().default.basename(t)}`);const i=l().default.sync("**/*",{cwd:t,dot:!0,ignore:["**/node_modules/**","**/.git/**","**/.DS_Store","**/.idea/**"]});if(i.forEach((n=>{if(!t)return;const r=b().default.join(t,n);if(!u().default.statSync(r).isDirectory())if(n.endsWith(".tpl")){const t=u().default.readFileSync(r,E),i=b().default.join(e,n.replace(/\.tpl$/u,"")),o=y().default.render(t,a);p().default.sync(b().default.dirname(i)),R(`\u521b\u5efa ${b().default.relative(e,i)}`),u().default.writeFileSync(i,o,E)}else{R(`\u521b\u5efa ${n}`);const t=b().default.join(e,n);p().default.sync(b().default.dirname(t)),u().default.copyFileSync(r,t)}})),R("\u590d\u5236\u6a21\u7248 success!"),n&&u().default.existsSync(t)&&(0,v().default)(t,(()=>{R(`\u7f13\u5b58\u5220\u9664 success! ${b().default.basename(t||"")}`)})),r.dependenciesInstallType)switch(R("\u521d\u59cb\u5316\u4f9d\u8d56\u5305"),r.dependenciesInstallType){case"default":case"pnpm":A({command:"pnpm",args:["install"]});break;case"yarn":A({command:"yarn",args:["install"]});break;case"npm":A({command:"npm",args:["install"]});break;default:}R("\u53ef\u67e5\u9605<<https://303394539.github.io/yolk-docs/>>\u4e86\u89e3\u76f8\u5173\u6587\u6863")}))},C=(e,t)=>K(e,t,!0),J=()=>{const e=l().default.sync("*.yolkrc*",{cwd:P,dot:!0});if(!e.length)return{};const t=b().default.join(P,e[0]);if(!u().default.existsSync(t))return{};try{return JSON.parse(u().default.readFileSync(t,E))||{}}catch(n){return Q(n.message||".yolkrc\u8f6c\u6362\u9519\u8bef"),{}}},W=()=>{const e=b().default.join(P,".prettierrc");if(u().default.existsSync(e))try{return JSON.parse(u().default.readFileSync(e,E))||{}}catch(t){return Q(t.message||".prettierrc\u8f6c\u6362\u9519\u8bef"),{}}return{singleQuote:!0,trailingComma:"all",printWidth:80,overrides:[{files:".prettierrc",options:{parser:"json"}}]}},H=()=>{const e=b().default.join(P,"project.config.json");if(!u().default.existsSync(e))return{};try{return JSON.parse(u().default.readFileSync(e,E))||{}}catch(t){return Q(t.message||"project.config.json\u8f6c\u6362\u9519\u8bef"),{}}},U=()=>{const e=b().default.join(P,"package.json");if(!u().default.existsSync(e))return{};try{return JSON.parse(u().default.readFileSync(e,E))||{}}catch(t){return Q(t.message||"package.json\u8f6c\u6362\u9519\u8bef"),{}}},V=()=>u().default.existsSync(b().default.join(P,"project.config.json")),G=()=>u().default.existsSync(b().default.join(P,".icerc.ts"))||u().default.existsSync(b().default.join(P,".icerc.js"))||u().default.existsSync(b().default.join(P,".ice.ts"))||u().default.existsSync(b().default.join(P,".ice.js")),X=()=>{let e=u().default.existsSync(b().default.join(P,"node_modules/.bin/max"));if(!e)try{e=u().default.existsSync(require.resolve("@umijs/max"))}catch(t){}if(!e)try{e=/umi@4\.(\d+)\.(\d+)/u.test((0,s().execSync)("umi -v").toString())}catch(t){}if(!e){const n=b().default.join(P,"node_modules","umi","package.json");if(u().default.existsSync(n))try{const t=JSON.parse(u().default.readFileSync(n,E))||{};e=t.version&&+t.version.split(".")[0]>3}catch(t){}}return e},Y=()=>u().default.existsSync(b().default.join(P,".icerc.ts"))?".icerc.ts":u().default.existsSync(b().default.join(P,".icerc.js"))?".icerc.js":u().default.existsSync(b().default.join(P,".ice.ts"))?".ice.ts":".ice.js",z=()=>{const e=b().default.join(P,"project.config.json");if(u().default.existsSync(e)){const t=require(e);return t.appid}return""},Z=()=>u().default.existsSync(b().default.join(P,"project.tt.json"))&&0===z().indexOf("tt"),ee=()=>0===z().indexOf("20"),te=()=>{const e=J();let t="";try{t=require.resolve("@baic/eslint-config-yolk")}catch(a){}const n=l().default.sync("*.eslintrc*",{cwd:P,dot:!0}),r=n[0];return!1===e.strict&&r&&u().default.existsSync(r)?r:t},ne=()=>{const e=l().default.sync("*.stylelintrc*",{cwd:P,dot:!0}),t=e[0];return t},re=()=>{const e=b().default.join(P,".git/"),t=b().default.join(P,".git/hooks"),n=b().default.join(t,"pre-commit"),r=u().default.existsSync(e),a=u().default.existsSync(n),i=a&&u().default.readFileSync(n,"utf8").includes(q);if(r&&(!a||!i)){p().default.sync(t),u().default.writeFileSync(n,["#!/usr/bin/env bash","npx yolk pre-commit","RESULT=$?","[ $RESULT -ne 0 ] && exit 1","exit 0",q].join(h().default.EOL),"utf8");try{u().default.chmodSync(n,"777")}catch(o){Q(`chmod ${n} failed: ${o.message}`)}R("Create pre-commit hook")}},ae=()=>{const e=J(),t=!1!==e.strict,n=e.eslintIgnore,r=e.stylelintIgnore;O().then((e=>{const a=new Promise(((n,a)=>{const i=ne();if(i){const s=e.map((e=>e.filename)).filter((e=>/^(src|tests)/iu.test(e))).filter((e=>/\.(le|sa|sc|c)s{2}$/iu.test(e))).filter((e=>B.every((t=>!(0,d().default)(e,t,{matchBase:!0}))))).filter((e=>"string"===typeof r?!(0,d().default)(e,r,{matchBase:!0}):r instanceof RegExp?!r.test(e):!Array.isArray(r)||r.every((t=>"string"===typeof t?!(0,d().default)(e,t,{matchBase:!0}):!(t instanceof RegExp)||!t.test(e))))).map((e=>{const t=b().default.join(P,e);return u().default.existsSync(t)?t:null})).filter((e=>!!e));if(s.forEach((e=>{if(e&&u().default.existsSync(e)){const t=b().default.extname(e).replace(/^\./u,""),n=u().default.readFileSync(e,"utf8"),r=(0,j().format)(n,$({parser:F[t]},W()));u().default.writeFileSync(e,r,"utf8")}})),R("style prettier success!"),s.length>=D){const e=[];(0,o().default)(s,20).forEach((n=>{e.push(new Promise(((e,r)=>{A({command:"stylelint",args:[t?"--ignore-disables":"","--allow-empty-input","--config",i,...n],complete:e,close:r,exit:!1})})))}));const r=process.getMaxListeners(),c=(0,o().default)(e,r?r/2:2);let u=0;const l=()=>{u<c.length?Promise.all(c[u]).then((()=>{u++,l()})).catch(a):n()};l()}else s.length&&A({command:"stylelint",args:[t?"--ignore-disables":"","--allow-empty-input","--config",i,...s],complete:n,close:a,exit:!1})}else n()})),i=()=>{const r=e.map((e=>e.filename)).filter((e=>/^(src|tests)/iu.test(e))).filter((e=>/\.([t|j]sx?)$/iu.test(e))).map((e=>{const t=b().default.join(P,e);return u().default.existsSync(t)?t:null})).filter((e=>!!e));if(r.length){r.forEach((e=>{if(e&&u().default.existsSync(e)){const t=b().default.extname(e).replace(/^\./u,""),n=u().default.readFileSync(e,"utf8"),r=(0,j().format)(n,$({parser:F[t]},W()));u().default.writeFileSync(e,r,"utf8")}})),R("script prettier success!");const e=te();if(e){const a=r.filter((e=>B.every((t=>!(0,d().default)(e,t,{matchBase:!0}))))).filter((e=>"string"===typeof n?!(0,d().default)(e,n,{matchBase:!0}):n instanceof RegExp?!n.test(e):!Array.isArray(n)||n.every((t=>"string"===typeof t?!(0,d().default)(e,t,{matchBase:!0}):!(t instanceof RegExp)||!t.test(e)))));if(t&&(_("git commit\u7981\u6b62eslint\u7684ignore\u65b9\u5f0f(eslint-disable\u3001.eslintrc*\u3001ignore\u7b49)\u3002"),n&&_(`\u901a\u8fc7yolkrc\u914d\u7f6eeslintIgnore\uff1a${n}\u3002`)),a.length>=D){const n=[];(0,o().default)(a,20).forEach((r=>{n.push(new Promise((n=>{A({command:"eslint",args:[t?"--no-inline-config --no-ignore":"","--no-error-on-unmatched-pattern","--config",e,...r],complete:n,exit:!1})})))}));const r=process.getMaxListeners(),i=(0,o().default)(n,r?r/2:2);let s=0;const c=()=>{s<i.length?Promise.all(i[s]).then((()=>{s++,c()})):L()};c()}else a.length&&A({command:"eslint",args:[t?"--no-inline-config --no-ignore":"","--no-error-on-unmatched-pattern","--config",e,...a]})}else _("\u6ca1\u6709eslint\u914d\u7f6e\u6587\u4ef6")}else L()};_("\u8981\u6c42\u7edf\u4e00\u4ee3\u7801\u89c4\u8303\uff0c\u8fdb\u884c\u4e25\u683c\u7684\u8bed\u6cd5\u68c0\u67e5\u3002"),a.then(i)}))},ie=({mProject:e,mPrivateKeyPath:t,mVersion:n,mDesc:r,mRobot:a,mQrcodeFormat:i,mQrcodeOutputDest:o,mPagePath:c,mSearchQuery:l})=>{const f=u().default.existsSync(b().default.join(P,".git"))?(0,s().execSync)("git log -1 --pretty=format:%H").toString():"",d=H(),p=d.appid,y=e||b().default.join(P,"dist"),g=t||b().default.join(P,`private.${p}.key`);if(u().default.existsSync(y)){if(u().default.existsSync(g)){const e=U(),t=n||e.version||d.version||"1.0.0",s=r||e.description||d.description,u=`version: ${t};${f?` commit: ${f};`:""}${s?` description: ${s};`:""}`;f&&N(`commit: ${f}`),N(`dist: ${y}`),N(`key: ${g}`),N(`appid: ${p}`),N(`version: ${t}`),N(`desc: ${u}`);const h=new(m().Project)({appid:p,type:"miniProgram",projectPath:y,privateKeyPath:g,ignores:["node_modules/**/*","**/*.txt","**/*.key","**/*.less","**/*.sass","**/*.scss","**/*.css","**/*.jsx","**/*.ts","**/*.tsx","**/*.md"]});return{appid:p,options:{project:h,version:t,desc:u,setting:d.setting,robot:a,qrcodeFormat:i,qrcodeOutputDest:o,pagePath:c,searchQuery:l}}}throw Error(`\u6ca1\u6709\u627e\u5230\u4e0a\u4f20\u5bc6\u94a5(${g})`)}throw Error(`\u6ca1\u6709\u627e\u5230dist\u76ee\u5f55(${y})`)},oe=()=>{re(),process.argv.length>2?c().default.version(S.default.version).usage("[command] [options]").option("--clone","\u901a\u8fc7git clone\u62c9\u53d6\u6a21\u7248").option("--template <template>","\u6a21\u7248\u540d\u79f0\u6216\u8005clone\u6a21\u5f0f\u7684git\u5730\u5740").option("--docs","\u542f\u52a8\u6587\u6863\u6a21\u5f0f").option("--mProject <project>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u5de5\u7a0b\u76ee\u5f55").option("--mPrivateKeyPath <privateKeyPath>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20key\u6587\u4ef6").option("--mVersion <version>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u7248\u672c\u53f7").option("--mDesc <desc>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20\u63cf\u8ff0").option("--mRobot <robot>","\u5c0f\u7a0b\u5e8f\u4e0a\u4f20ci\u673a\u5668\u4eba1~30").option("--mQrcodeFormat <qrcodeFormat>",'\u5c0f\u7a0b\u5e8f\u9884\u89c8\u8fd4\u56de\u4e8c\u7ef4\u7801\u6587\u4ef6\u7684\u683c\u5f0f "image" \u6216 "base64"\uff0c \u9ed8\u8ba4\u503c "terminal" \u4f9b\u8c03\u8bd5\u7528').option("--mQrcodeOutputDest <qrcodeOutputDest>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u4e8c\u7ef4\u7801\u6587\u4ef6\u4fdd\u5b58\u8def\u5f84").option("--mPagePath <pagePath>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u9884\u89c8\u9875\u9762\u8def\u5f84").option("--mSearchQuery <searchQuery>","\u5c0f\u7a0b\u5e8f\u9884\u89c8\u9884\u89c8\u9875\u9762\u8def\u5f84\u542f\u52a8\u53c2\u6570").action(((e,n)=>{const o=(0,t().default)(n),s=o[0],c=o.slice(1),l=e.clone,f=e.template,d=e.docs;if(s)switch(N(`yolk version: ${S.default.version}`),N(`node version: ${process.version}`),N(`platform: ${h().default.platform()}`),N(`memory: ${(0,i().default)(h().default.freemem()/1024/1024)} MB(${(0,i().default)(h().default.totalmem()/1024/1024)} MB)`),s){case"init":if(R(`yolk ${s} \u5f00\u59cb`),l)if(f){const e=".yolk",t=b().default.join(P,e);u().default.existsSync(t)&&(0,v().default)(t,(()=>{R(`\u7f13\u5b58\u5220\u9664 success! ${t}`)})),A({command:"git",args:["clone","-b","master","--depth","1",f,e].concat(c)}),C(P,t)}else Q("--clone \u6a21\u5f0f\u5fc5\u987b\u6709--template");else K(P);break;case"start":V()?Z()?A({command:"taro",args:["build","--type","tt","--watch"].concat(c)}):ee()?A({command:"taro",args:["build","--type","alipay","--watch"].concat(c)}):A({command:"taro",args:["build","--type","weapp","--watch"].concat(c)}):d?A({command:"dumi",args:["dev"].concat(c)}):G()?A({command:"icejs",args:["start","--config",Y()].concat(c)}):X()?A({command:"max",args:["dev"].concat(c)}):A({command:"umi",args:["dev"].concat(c)});break;case"build":V()?Z()?A({command:"taro",args:["build","--type","tt"].concat(c)}):ee()?A({command:"taro",args:["build","--type","alipay"].concat(c)}):A({command:"taro",args:["build","--type","weapp"].concat(c)}):d?A({command:"dumi",args:["build"].concat(c)}):G()?A({command:"icejs",args:["build","--config",Y()].concat(c)}):X()?A({command:"max",args:["build"].concat(c)}):A({command:"umi",args:["build"].concat(c)});break;case"pre-commit":ae();break;case"test":A({command:"umi-test",args:["--no-cache","--update-snapshot","--runInBand","--detectOpenHandles"].concat(c)});break;case"miniapp-upload":case"miniprogram-upload":if(V())if(Z());else if(ee());else{const t=ie(e),n=t.appid,i=t.options;N(`${n}\u4e0a\u4f20\u5f00\u59cb`),m().upload($($({},(0,a().default)(i,["project","version","desc","setting","robot"])),{},{onProgressUpdate:e=>{if((0,r().default)(e))N(`task: ${e}`);else{const t=e.status,n=e.message;N(`task(${t}): ${n}`)}}})).then((()=>{R(`${n}\u4e0a\u4f20\u5b8c\u6210`)}))}break;case"miniapp-preview":case"miniprogram-preview":if(V())if(Z());else if(ee());else{const t=ie(e),n=t.appid,i=t.options;N(`${n}\u4e0a\u4f20\u9884\u89c8\u5f00\u59cb`),m().preview($($({},(0,a().default)(i,["project","version","desc","setting","robot","qrcodeFormat","qrcodeOutputDest","pagePath","searchQuery"])),{},{onProgressUpdate:e=>{if((0,r().default)(e))N(`task: ${e}`);else{const t=e.status,n=e.message;N(`task(${t}): ${n}`)}}})).then((()=>{R(`${n}\u4e0a\u4f20\u9884\u89c8\u5b8c\u6210`)}))}break;default:M()}})).parse(process.argv):M()};oe();
2
+ var W=Object.create;var x=Object.defineProperty;var X=Object.getOwnPropertyDescriptor;var Y=Object.getOwnPropertyNames;var z=Object.getPrototypeOf,Z=Object.prototype.hasOwnProperty;var ee=(t,i)=>{for(var o in i)x(t,o,{get:i[o],enumerable:!0})},Q=(t,i,o,a)=>{if(i&&typeof i=="object"||typeof i=="function")for(let m of Y(i))!Z.call(t,m)&&m!==o&&x(t,m,{get:()=>i[m],enumerable:!(a=X(i,m))||a.enumerable});return t};var y=(t,i,o)=>(o=t!=null?W(z(t)):{},Q(i||!t||!t.__esModule?x(o,"default",{value:t,enumerable:!0}):o,t)),te=t=>Q(x({},"__esModule",{value:!0}),t);var ae={};ee(ae,{initPreCommit:()=>L});module.exports=te(ae);var N=require("node:child_process"),n=require("node:fs"),k=y(require("node:os")),r=require("node:path"),D=y(require("lodash/floor")),_=y(require("lodash/isString")),M=require("glob"),G=y(require("inquirer")),P=y(require("miniprogram-ci")),C=require("mkdirp"),f=require("../compiled/commander"),H=y(require("../compiled/mustache")),$=y(require("../package.json")),e=require("./_util"),b="##### CREATED BY YOLK #####",U=(t,i,o)=>{G.default.prompt([{type:"list",name:"type",message:"选择模版",default:"web",choices:[{name:"web template(umi framework)",value:"umi-web"},{name:"web big screen template(umi framework)",value:"umi-web-screen"},{name:"mobile template(umi framework)",value:"umi-mobile"},{name:"mobile HBuilderX h5+app template(umi framework)",value:"umi-mobile-h5+app"},{name:"mobile HBuilderX uni-app template(umi framework)",value:"umi-mobile-uni-app"},{name:"mobile native template(umi framework)",value:"umi-mobile-native"},{name:"miniprogram template",value:"miniprogram"}]},{type:"input",name:"projectName",message:"项目名称",default:(0,r.basename)((0,r.basename)(process.cwd()))},{type:"list",name:"packageManager",message:"选择包管理器(默认:pnpm,推荐:pnpm)",default:"default",choices:[{name:"默认安装",value:"default"},{name:"跳过安装",value:!1},{name:"pnpm install",value:"pnpm"},{name:"yarn install",value:"yarn"},{name:"npm install",value:"npm"}]}]).then(({type:a,projectName:m,packageManager:l})=>{let c={projectName:m,packageManager:l==="default"?"pnpm":l,yolkVersion:$.default.version};if(a==="umi-mobile-uni-app"){(0,e.warn)("暂不支持");return}let s=i||(0,r.join)(__dirname,`../templates/${a}`);if((0,e.ready)(`复制模版 ${(0,r.basename)(s)}`),(0,M.globSync)("**/*",{cwd:s,dot:!0,ignore:["**/node_modules/**","**/.git/**","**/.DS_Store","**/.idea/**"]}).forEach(d=>{if(!s)return;let u=(0,r.join)(s,d);if(!(0,n.statSync)(u).isDirectory())if(d.endsWith(".tpl")){let p=(0,n.readFileSync)(u,e.ENCODING),g=(0,r.join)(t,d.replace(/\.tpl$/,"")),v=H.default.render(p,c);(0,C.mkdirpSync)((0,r.dirname)(g)),(0,e.ready)(`创建 ${(0,r.relative)(t,g)}`),(0,n.writeFileSync)(g,v,e.ENCODING)}else{(0,e.ready)(`创建 ${d}`);let p=(0,r.join)(t,d);(0,C.mkdirpSync)((0,r.dirname)(p)),(0,n.copyFileSync)(u,p)}}),(0,e.ready)("复制模版 success!"),o&&(0,n.existsSync)(s)&&(0,e.rimrafSync)(s)&&(0,e.ready)(`缓存删除 success! ${(0,r.basename)(s||"")}`),l)switch((0,e.ready)("初始化依赖包"),l){case"default":case"pnpm":(0,e.execCommand)({command:"pnpm",args:["install"]});break;case"yarn":(0,e.execCommand)({command:"yarn",args:["install"]});break;case"npm":(0,e.execCommand)({command:"npm",args:["install"]});break;default:}(0,e.ready)("可查阅<<https://303394539.github.io/yolk-docs/>>了解相关文档")})},oe=(t,i)=>U(t,i,!0),O=()=>(0,n.existsSync)((0,r.join)(e.cwd,"project.config.json")),T=()=>{let t=(0,n.existsSync)((0,r.join)(e.cwd,"node_modules/.bin/max"));if(!t)try{t=(0,n.existsSync)(require.resolve("@umijs/max"))}catch{}if(!t)try{t=/umi@4\.(\d+)\.(\d+)/.test((0,N.execSync)("umi -v").toString())}catch{}if(!t){let i=(0,r.join)(e.cwd,"node_modules","umi","package.json");if((0,n.existsSync)(i))try{let o=JSON.parse((0,n.readFileSync)(i,e.ENCODING))||{};t=o.version&&+o.version.split(".")[0]>3}catch{}}return t},B=()=>{let t=(0,r.join)(e.cwd,"project.config.json");return(0,n.existsSync)(t)?require(t).appid:""},w=()=>(0,n.existsSync)((0,r.join)(e.cwd,"project.tt.json"))&&B().indexOf("tt")===0,j=()=>B().indexOf("20")===0,L=()=>{let t=(0,r.join)(e.cwd,".git/"),i=(0,r.join)(e.cwd,".git/hooks"),o=(0,r.join)(i,"pre-commit"),a=(0,n.existsSync)(t),m=(0,n.existsSync)(i),l=(0,n.existsSync)(o);if(a){m||((0,C.mkdirpSync)(i),(0,e.ready)("create .git/hooks")),l||((0,n.writeFileSync)(o,"",e.ENCODING),(0,e.ready)("create pre-commit"));try{(0,n.chmodSync)(o,"777")}catch(s){(0,e.error)(`chmod ${o} failed: ${s.message}`)}let c=(0,n.readFileSync)(o,e.ENCODING).toString();c.indexOf(b)>=0&&(c=`${c.substring(0,c.indexOf(b))}${c.substring(c.lastIndexOf(b)+b.length)}`.replace(/(\r|\n)+$/gu,"")),(0,n.writeFileSync)(o,(c.indexOf("#!/")<0?["#!/bin/sh"]:[]).concat([c,b,"npx yolk pre-commit","RESULT=$?","[ $RESULT -ne 0 ] && exit 1","exit 0",b]).filter(s=>!!s).join(k.default.EOL),e.ENCODING)}},ie=async()=>{(0,e.warn)("统一代码规范,进行严格的语法检查。"),(0,e.execCommand)({command:"lint-staged",args:["-c",require.resolve("./lintstagedrc")]})},K=({mAppid:t,mProject:i,mPrivateKeyPath:o,mVersion:a,mDesc:m,mRobot:l,mQrcodeFormat:c,mQrcodeOutputDest:s,mPagePath:h,mSearchQuery:d})=>{let u=(0,n.existsSync)((0,r.join)(e.cwd,".git"))?(0,N.execSync)("git log -1 --pretty=format:%H").toString():"",p=(0,e.getProjectConfigJSON)(),g=t||p.appid,v=i||(0,r.join)(e.cwd,"dist"),S=o||(0,r.join)(e.cwd,`private.${g}.key`);if((0,n.existsSync)(v))if((0,n.existsSync)(S)){let q=(0,e.getPackageJSON)(),J=a||q.version||p.version||"1.0.0",A=m||q.description||p.description,F=`${u?` commit: ${u};`:""}${A?` description: ${A};`:""}`;u&&(0,e.info)(`commit: ${u}`),(0,e.info)(`dist: ${v}`),(0,e.info)(`key: ${S}`),(0,e.info)(`appid: ${g}`),(0,e.info)(`version: ${J}`),(0,e.info)(`desc: ${F}`);let V=new P.Project({appid:g,type:"miniProgram",projectPath:v,privateKeyPath:S,ignores:["node_modules/**/*","**/*.txt","**/*.key","**/*.less","**/*.sass","**/*.scss","**/*.css","**/*.jsx","**/*.ts","**/*.tsx","**/*.md"]});return{appid:g,options:{project:V,version:J,desc:F,setting:{...p.setting,es6:!1,es7:!1,minifyJS:!1,minifyWXML:!1,minifyWXSS:!1,minify:!1},robot:l,qrcodeFormat:c,qrcodeOutputDest:s,pagePath:h,searchQuery:d}}}else throw Error(`没有找到上传密钥(${S})`);else throw Error(`没有找到dist目录(${v})`)},E=()=>{let t="";try{t=(0,N.execSync)(`npm view ${$.default.name} version`,{timeout:3e3}).toString().replace(/\n/g,"")}catch{}(0,e.info)(`yolk version: ${$.default.version}${t&&t!==$.default.version?`(last:${t})`:""}`),(0,e.info)(`node version: ${process.version}`),(0,e.info)(`platform: ${k.default.platform()}`),(0,e.info)(`memory: ${(0,D.default)(k.default.freemem()/1024/1024)} MB(${(0,D.default)(k.default.totalmem()/1024/1024)} MB)`)},R=t=>t.option("--appid, --mAppid <appid>","小程序appid").option("--project, --mProject <project>","小程序上传工程目录").option("--privateKeyPath, --mPrivateKeyPath <privateKeyPath>","小程序上传key文件,默认:{当前目录}/private.{appid}.key").option("--version, --mVersion <version>","小程序上传版本号").option("--desc, --mDesc <desc>","小程序上传描述").option("--robot, --mRobot <robot>","小程序上传ci机器人1~30").option("--qrcodeFormat, --mQrcodeFormat <qrcodeFormat>",'小程序预览返回二维码文件的格式 "image" 或 "base64", 默认值 "terminal" 供调试用').option("--qrcodeOutputDest, --mQrcodeOutputDest <qrcodeOutputDest>","小程序预览二维码文件保存路径").option("--pagePath, --mPagePath <pagePath>","小程序预览预览页面路径").option("--searchQuery, --mSearchQuery <searchQuery>","小程序预览预览页面路径启动参数"),ne=/(\w+)=('(.*)'|"(.*)"|(.*))/giu,I=t=>{process.env.DID_YOU_KNOW="none",process.env.VITE_CJS_IGNORE_WARNING="true";let i=[];return t==null||t.forEach(o=>{if(ne.test(o)){let[a,m]=o.split("=");process.env[a]=m,(0,e.info)(`设置环境变量:${a}=${m}`)}else i.push(o)}),i},re=()=>{L(),process.argv.length>2?(f.program.version($.default.version,"-v,--version","输出版本号").usage("[command] [options]"),f.program.command("init").description("初始化项目").option("--clone <template>","如果需要,可通过git clone拉取模版,默认取cli默认模版").action(({clone:t},{args:i})=>{if(E(),(0,e.ready)("yolk init 开始"),t){let o=".yolk",a=(0,r.join)(e.cwd,o);(0,n.existsSync)(a)&&(0,e.rimrafSync)(a)&&(0,e.ready)(`缓存删除 success! ${a}`),(0,e.execCommand)({command:"git",args:["clone","-b","master","--depth","1",t,o].concat(i)}),oe(e.cwd,a)}else U(e.cwd)}),f.program.command("start").description("启动项目").option("--docs","文档模式").action(({docs:t},{args:i})=>{E();let o=I(i);O()?w()?(0,e.execCommand)({command:"taro",args:["build","--type","tt","--watch"].concat(o)}):j()?(0,e.execCommand)({command:"taro",args:["build","--type","alipay","--watch"].concat(o)}):(0,e.execCommand)({command:"taro",args:["build","--type","weapp","--watch"].concat(o)}):t?(0,e.execCommand)({command:"dumi",args:["dev"].concat(o)}):T()?(0,e.execCommand)({command:"max",args:["dev"].concat(o)}):(0,e.execCommand)({command:"umi",args:["dev"].concat(o)})}),f.program.command("build").description("编译项目").option("--docs","文档模式").action(({docs:t},{args:i})=>{E();let o=I(i);O()?w()?(0,e.execCommand)({command:"taro",args:["build","--type","tt"].concat(o)}):j()?(0,e.execCommand)({command:"taro",args:["build","--type","alipay"].concat(o)}):(0,e.execCommand)({command:"taro",args:["build","--type","weapp"].concat(o)}):t?(0,e.execCommand)({command:"dumi",args:["build"].concat(o)}):T()?(0,e.execCommand)({command:"max",args:["setup"].concat(o),complete:()=>(0,e.execCommand)({command:"max",args:["build"].concat(o)}),exit:!1}):(0,e.execCommand)({command:"umi",args:["build"].concat(o)})}),f.program.command("pre-commit").description("执行commit hook").action(ie),R(f.program.command("miniprogram-upload").description("使用 miniprogram-ci 上传小程序")).action(t=>{if(O()){if(!w()){if(!j()){let{appid:i,options:{project:o,version:a,desc:m,setting:l,robot:c}}=K(t);(0,e.info)(`${i} 上传开始`),P.upload({project:o,version:a,desc:m,setting:l,robot:c,onProgressUpdate:s=>{if((0,_.default)(s))(0,e.info)(`task: ${s}`);else{let{status:h,message:d}=s;(0,e.info)(`task(${h}): ${d}`)}}}).then(()=>{(0,e.ready)(`${i} 上传完成`)})}}}else(0,e.error)("非小程序项目目录")}),R(f.program.command("miniprogram-preview").description("使用 miniprogram-ci 预览小程序")).action(t=>{if(O()){if(!w()){if(!j()){let{appid:i,options:{project:o,version:a,desc:m,setting:l,robot:c,qrcodeFormat:s,qrcodeOutputDest:h,pagePath:d,searchQuery:u}}=K(t);(0,e.info)(`${i} 上传预览开始`),P.preview({project:o,version:a,desc:m,setting:l,robot:c,qrcodeFormat:s,qrcodeOutputDest:h,pagePath:d,searchQuery:u,onProgressUpdate:p=>{if((0,_.default)(p))(0,e.info)(`task: ${p}`);else{let{status:g,message:v}=p;(0,e.info)(`task(${g}): ${v}`)}}}).then(()=>{(0,e.ready)(`${i} 上传预览完成`)})}}}else(0,e.error)("非小程序项目目录")}),f.program.command("exec").description("执行ts文件").argument("<path>","执行的ts文件").action(t=>{(0,e.execCommand)({command:"tsx",args:[t]})}),f.program.parse(process.argv)):(0,e.breakExit)()};re();0&&(module.exports={initPreCommit});
package/package.json CHANGED
@@ -1,44 +1,65 @@
1
1
  {
2
2
  "name": "@baic/yolk-cli",
3
- "version": "2.1.0-alpha.24",
4
- "author": "Baic <303394539@qq.com>",
5
- "license": "MIT",
6
- "bin": {
7
- "yolk": "lib/index.js"
3
+ "version": "2.1.0-alpha.241",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/303394539/yolk.git"
8
7
  },
8
+ "license": "MIT",
9
+ "author": "Baic <303394539@qq.com>",
9
10
  "main": "lib/index.js",
10
11
  "module": "es/index.js",
11
12
  "typings": "lib/index.d.ts",
13
+ "bin": {
14
+ "yolk": "lib/index.js"
15
+ },
12
16
  "files": [
17
+ "compiled",
13
18
  "lib",
14
19
  "es",
15
20
  "templates"
16
21
  ],
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/303394539/yolk.git"
22
+ "scripts": {
23
+ "build": "father build",
24
+ "ncu": "ncu",
25
+ "prebundle": "father prebundle"
20
26
  },
21
27
  "dependencies": {
22
- "@types/glob": "~7.2.0",
23
- "@types/inquirer": "~8.2.1",
24
- "@types/lodash": "~4.x",
25
- "@types/mkdirp": "~1.0.2",
26
- "@types/mustache": "~4.1.3",
27
- "@types/prettier": "~2.6.3",
28
- "@types/rimraf": "~3.0.2",
29
- "commander": "~6.x",
30
- "glob": "~8.0.3",
31
- "inquirer": "~8.x",
32
- "lodash": "~4.x",
33
- "miniprogram-ci": "~1.8.25",
34
- "mkdirp": "~1.0.4",
35
- "mustache": "~4.2.0",
36
- "prettier": "~2.x",
37
- "rimraf": "~3.0.2",
38
- "staged-git-files": "~1.3.0"
28
+ "@baic/biome-config-yolk": "2.1.0-alpha.241",
29
+ "@baic/eslint-config-yolk": "2.1.0-alpha.241",
30
+ "@baic/prettier-config-yolk": "2.1.0-alpha.241",
31
+ "@baic/stylelint-config-yolk": "2.1.0-alpha.241",
32
+ "@democrance/imagemin-lint-staged": "3.0.x",
33
+ "@types/lodash": "4.x",
34
+ "chalk": "4.x",
35
+ "eslint": "8.x",
36
+ "glob": "10.4.x",
37
+ "inquirer": "8.x",
38
+ "lint-staged": "15.2.x",
39
+ "lodash": "4.x",
40
+ "miniprogram-ci": "1.9.x",
41
+ "mkdirp": "3.0.x",
42
+ "postcss": "8.4.x",
43
+ "postcss-less": "6.0.x",
44
+ "postcss-scss": "4.0.x",
45
+ "prettier": "2.x",
46
+ "rimraf": "5.0.x",
47
+ "stylelint": "14.x",
48
+ "tsx": "4.x"
49
+ },
50
+ "devDependencies": {
51
+ "@types/inquirer": "8.x",
52
+ "@types/lint-staged": "13.3.x",
53
+ "@types/mustache": "4.2.x",
54
+ "commander": "12.1.x",
55
+ "mustache": "4.2.x",
56
+ "v8-compile-cache": "2.4.x"
57
+ },
58
+ "engines": {
59
+ "node": ">=16"
39
60
  },
40
61
  "publishConfig": {
41
62
  "access": "public"
42
63
  },
43
- "gitHead": "351e2fa675622b2880dc42e8c2f725170e8bfcb8"
64
+ "gitHead": "fb49567b3ec3f7442419c1b98ff651809beac519"
44
65
  }
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ extends: '@baic/eslint-config-yolk',
3
+ parserOptions: {
4
+ project: './tsconfig.json',
5
+ tsconfigRootDir: __dirname,
6
+ },
7
+ };
@@ -1,21 +1,18 @@
1
1
  # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
2
 
3
3
  # dependencies
4
- /node_modules
4
+ node_modules/
5
5
  npm-debug.log*
6
6
  npm-error.log*
7
- package-lock.json
8
- yarn.lock
9
7
  yarn-debug.log*
10
8
  yarn-error.log*
11
- pnpm-lock.yaml
12
9
 
13
10
  # testing
14
11
  /coverage
15
12
 
16
13
  # production
17
14
  /build
18
- dist/
15
+ /dist
19
16
 
20
17
  # misc
21
18
  .DS_Store
@@ -25,6 +22,7 @@ dist/
25
22
  .env.production.local
26
23
 
27
24
  # temp
25
+ .swc/
28
26
  .temp/
29
27
  .rn_temp/
30
28
  deploy_versions/
@@ -34,4 +32,7 @@ deploy_versions/
34
32
  .eslintcache
35
33
  .stylelintcache
36
34
  .vscode
37
- project.private.config.json
35
+ project.private.config.json
36
+
37
+ # ide
38
+ .vscode
@@ -2,4 +2,8 @@
2
2
  **/*.svg
3
3
  **/*.ejs
4
4
  **/*.html
5
- package.json
5
+ package-lock.json
6
+ yarn.lock
7
+ yarn-debug.log
8
+ yarn-error.log
9
+ pnpm-lock.yaml
@@ -0,0 +1 @@
1
+ module.exports = require('@baic/prettier-config-yolk');
@@ -1,21 +1,22 @@
1
- MIT License
1
+ MIT LICENSE
2
2
 
3
- Copyright (c) 2020 Baic
3
+ Copyright (c) 2024 Baic<303394539@qq.com>
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
11
12
 
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
14
15
 
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -4,20 +4,20 @@
4
4
 
5
5
  Install dependencies,
6
6
 
7
- {{ #dependenciesInstallType }}
7
+ {{ #packageManager }}
8
8
 
9
9
  ```bash
10
- $ {{ dependenciesInstallType }} install
10
+ $ {{ packageManager }} install
11
11
  ```
12
12
 
13
- {{ /dependenciesInstallType }}
14
- {{ ^dependenciesInstallType }}
13
+ {{ /packageManager }}
14
+ {{ ^packageManager }}
15
15
 
16
16
  ```bash
17
17
  $ pnpm install
18
18
  ```
19
19
 
20
- {{ /dependenciesInstallType }}
20
+ {{ /packageManager }}
21
21
 
22
22
  Start the dev server,
23
23
 
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["@baic/biome-config-yolk"]
3
+ }
@@ -1,4 +1,4 @@
1
- import path from 'path';
1
+ import path from 'node:path';
2
2
  import { config } from '@baic/yolk-taro';
3
3
 
4
4
  export default (merge) =>
@@ -1,33 +1 @@
1
- declare module '*.png';
2
- declare module '*.gif';
3
- declare module '*.jpg';
4
- declare module '*.jpeg';
5
- declare module '*.svg' {
6
- export function ReactComponent(
7
- props: React.SVGProps<SVGSVGElement>,
8
- ): React.ReactElement;
9
- const url: string;
10
- export default url;
11
- }
12
- declare module '*.css';
13
- declare module '*.less';
14
- declare module '*.scss';
15
- declare module '*.sass';
16
- declare module '*.styl';
17
-
18
- // @ts-ignore
19
- declare const process: NodeJS.Process & {
20
- env: {
21
- TARO_ENV:
22
- | 'weapp'
23
- | 'swan'
24
- | 'alipay'
25
- | 'h5'
26
- | 'rn'
27
- | 'tt'
28
- | 'quickapp'
29
- | 'qq'
30
- | 'jd';
31
- [key: string]: any;
32
- };
33
- };
1
+ import "@baic/yolk-taro/project.typings";
@@ -18,6 +18,10 @@
18
18
  "dependencies": {
19
19
  "@baic/preset-yolk-taro-miniprogram": "~{{ yolkVersion }}"
20
20
  },
21
+ "devDependencies": {
22
+ "@types/react": "17.x",
23
+ "react": "17.x",
24
+ },
21
25
  "pnpm": {
22
26
  "peerDependencyRules": {
23
27
  "ignoreMissing": "*"
@@ -5,7 +5,7 @@
5
5
  "appid": "touristappid",
6
6
  "setting": {
7
7
  "urlCheck": true,
8
- "es6": true,
8
+ "es6": false,
9
9
  "enhance": false,
10
10
  "postcss": true,
11
11
  "preloadBackgroundData": false,
@@ -42,12 +42,14 @@
42
42
  "showES6CompileOption": false,
43
43
  "disableUseStrict": false,
44
44
  "useCompilerPlugins": false,
45
- "minifyWXML": true
45
+ "minifyWXML": true,
46
+ "condition": false,
47
+ "bigPackageSizeSupport": true
46
48
  },
47
49
  "compileType": "miniprogram",
48
50
  "simulatorType": "wechat",
49
51
  "simulatorPluginLibVersion": {},
50
- "libVersion": "2.13.0",
52
+ "libVersion": "2.32.0",
51
53
  "condition": {},
52
54
  "srcMiniprogramRoot": "dist/",
53
55
  "packOptions": {
@@ -1,4 +1,4 @@
1
- import { AppConfig } from '@tarojs/taro/types/index';
1
+ import { AppConfig } from '@tarojs/taro';
2
2
 
3
3
  export default {
4
4
  pages: ['pages/index/index', 'pages/demo/index'],
@@ -1,2 +1 @@
1
- @import "./theme.scss";
2
1
  @import "~taro-ui/dist/style/index.scss";
@@ -1,14 +1,12 @@
1
- import * as React from 'react';
1
+ import './app.scss';
2
+
3
+ import React, { PropsWithChildren } from 'react';
2
4
 
3
5
  import { Provider } from '@baic/yolk-miniprogram';
4
6
 
5
7
  import request from '@/common/request';
6
8
 
7
- import './app.scss';
8
-
9
- interface Props {
10
- children: React.ReactNode;
11
- }
9
+ type Props = PropsWithChildren<Record<string, unknown>>;
12
10
 
13
11
  export default ({ children }: Props) => (
14
12
  <Provider request={request} inputMaxLength={40}>
@@ -1,3 +1,11 @@
1
- import * as React from 'react';
2
- import { Input } from '@baic/yolk-miniprogram';
3
- export default () => <Input />;
1
+ import { Form, FormItem, Input, useForm } from '@baic/yolk-miniprogram';
2
+ export default () => {
3
+ const [form] = useForm();
4
+ return (
5
+ <Form form={form}>
6
+ <FormItem name="input" rules="required">
7
+ <Input />
8
+ </FormItem>
9
+ </Form>
10
+ );
11
+ };
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
1
  import { MobileInput } from '@baic/yolk-miniprogram';
3
2
  export default () => <MobileInput />;
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
1
  import { MoneyInput } from '@baic/yolk-miniprogram';
3
2
  export default () => <MoneyInput />;
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
1
  import { NumberInput } from '@baic/yolk-miniprogram';
3
2
  export default () => <NumberInput />;
@@ -1,3 +1,12 @@
1
- import * as React from 'react';
2
- import { Textarea } from '@baic/yolk-miniprogram';
3
- export default () => <Textarea />;
1
+ import { Form, FormItem, Textarea, useForm } from '@baic/yolk-miniprogram';
2
+
3
+ export default () => {
4
+ const [form] = useForm();
5
+ return (
6
+ <Form form={form}>
7
+ <FormItem name="textarea" rules="required">
8
+ <Textarea />
9
+ </FormItem>
10
+ </Form>
11
+ );
12
+ };