@baic/yolk-cli 2.1.0-alpha.27 → 2.1.0-alpha.271

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 (631) hide show
  1. package/LICENSE +18 -17
  2. package/README.md +5 -5
  3. package/compiled/commander/index.d.ts +968 -0
  4. package/compiled/commander/index.js +1 -0
  5. package/compiled/commander/package.json +1 -0
  6. package/compiled/js-yaml/index.d.ts +148 -0
  7. package/compiled/js-yaml/index.js +1 -0
  8. package/compiled/js-yaml/package.json +1 -0
  9. package/compiled/mustache/index.d.ts +431 -0
  10. package/compiled/mustache/index.js +5 -0
  11. package/compiled/mustache/package.json +1 -0
  12. package/es/_util.d.ts +43 -0
  13. package/es/_util.js +1 -0
  14. package/es/lintstagedrc.js +1 -0
  15. package/es/yolk.js +1 -1
  16. package/lib/_util.d.ts +43 -0
  17. package/lib/_util.js +1 -0
  18. package/lib/lintstagedrc.js +1 -0
  19. package/lib/yolk.js +1 -1
  20. package/package.json +53 -27
  21. package/templates/taro-miniprogram/.eslintignore +4 -0
  22. package/templates/taro-miniprogram/.eslintrc.js +8 -0
  23. package/templates/{miniprogram → taro-miniprogram}/.gitignore.tpl +12 -6
  24. package/templates/taro-miniprogram/.prettierignore +9 -0
  25. package/templates/taro-miniprogram/.prettierrc.js +2 -0
  26. package/templates/taro-miniprogram/.stylelintignore +4 -0
  27. package/templates/taro-miniprogram/.stylelintrc.js +4 -0
  28. package/templates/taro-miniprogram/LICENSE +22 -0
  29. package/templates/{ice-mobile-h5+app → taro-miniprogram}/README.md.tpl +5 -5
  30. package/templates/taro-miniprogram/biome.json +3 -0
  31. package/templates/{miniprogram → taro-miniprogram}/config/index.ts.tpl +1 -1
  32. package/templates/taro-miniprogram/global.d.ts +1 -0
  33. package/templates/{miniprogram → taro-miniprogram}/package.json.tpl +4 -0
  34. package/templates/{miniprogram → taro-miniprogram}/project.config.json.tpl +4 -2
  35. package/templates/{miniprogram → taro-miniprogram}/src/app.config.ts +1 -1
  36. package/templates/taro-miniprogram/src/app.scss +1 -0
  37. package/templates/{miniprogram → taro-miniprogram}/src/app.tsx +4 -6
  38. package/templates/taro-miniprogram/src/constants.ts +1 -0
  39. package/templates/taro-miniprogram/src/pages/demo/examples/Input.tsx +11 -0
  40. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/examples/MobileInput.tsx +0 -1
  41. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/examples/MoneyInput.tsx +0 -1
  42. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/examples/NumberInput.tsx +0 -1
  43. package/templates/taro-miniprogram/src/pages/demo/examples/Textarea.tsx +12 -0
  44. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/examples/TimerButton.tsx +0 -1
  45. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/examples/usePreload.tsx +0 -1
  46. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/index.config.ts +1 -1
  47. package/templates/{miniprogram → taro-miniprogram}/src/pages/demo/index.tsx +6 -5
  48. package/templates/{miniprogram → taro-miniprogram}/src/pages/index/index.config.ts +1 -1
  49. package/templates/{miniprogram → taro-miniprogram}/src/pages/index/index.tsx +1 -1
  50. package/templates/taro-miniprogram/src/types/user.d.ts +5 -0
  51. package/templates/taro-miniprogram/tsconfig.json +11 -0
  52. package/templates/umi-mobile/.eslintignore +6 -0
  53. package/templates/umi-mobile/.eslintrc.js +8 -0
  54. package/templates/umi-mobile/.gitignore.tpl +9 -7
  55. package/templates/umi-mobile/.prettierignore +6 -2
  56. package/templates/umi-mobile/.prettierrc.js +2 -0
  57. package/templates/umi-mobile/.stylelintignore +6 -0
  58. package/templates/umi-mobile/.stylelintrc.js +4 -0
  59. package/templates/umi-mobile/.umirc.ts.tpl +0 -1
  60. package/templates/umi-mobile/LICENSE +18 -17
  61. package/templates/umi-mobile/README.md.tpl +5 -5
  62. package/templates/umi-mobile/biome.json +3 -0
  63. package/templates/umi-mobile/package.json.tpl +9 -2
  64. package/templates/umi-mobile/src/app.tsx +2 -3
  65. package/templates/umi-mobile/src/pages/404.tsx +0 -1
  66. package/templates/umi-mobile/src/pages/demo/examples/BarCode.tsx +0 -1
  67. package/templates/umi-mobile/src/pages/demo/examples/Iconfont.tsx +1 -2
  68. package/templates/umi-mobile/src/pages/demo/examples/Input.tsx +1 -3
  69. package/templates/umi-mobile/src/pages/demo/examples/List/1.tsx +1 -2
  70. package/templates/umi-mobile/src/pages/demo/examples/List/2.tsx +1 -1
  71. package/templates/umi-mobile/src/pages/demo/examples/List/3.tsx +1 -1
  72. package/templates/umi-mobile/src/pages/demo/examples/List/4.tsx +12 -13
  73. package/templates/umi-mobile/src/pages/demo/examples/Loading.tsx +0 -1
  74. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/1.tsx +1 -3
  75. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/2.tsx +1 -3
  76. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/3.tsx +1 -3
  77. package/templates/umi-mobile/src/pages/demo/examples/NumberInput/4.tsx +1 -3
  78. package/templates/umi-mobile/src/pages/demo/examples/PagingList/1.tsx +1 -2
  79. package/templates/umi-mobile/src/pages/demo/examples/QrCode.tsx +0 -1
  80. package/templates/umi-mobile/src/pages/demo/examples/Required.tsx +0 -1
  81. package/templates/umi-mobile/src/pages/demo/examples/TimerButton.tsx +0 -1
  82. package/templates/umi-mobile/src/pages/demo/examples/usePreload.tsx +1 -1
  83. package/templates/umi-mobile/src/pages/demo/index.tsx +10 -10
  84. package/templates/umi-mobile/src/pages/index.tsx +0 -2
  85. package/templates/umi-mobile/src/types/user.d.ts +2 -2
  86. package/templates/umi-mobile/tsconfig.json +9 -1
  87. package/templates/umi-mobile/yest.config.ts +10 -0
  88. package/templates/umi-mobile-h5+app/.eslintignore +6 -0
  89. package/templates/umi-mobile-h5+app/.eslintrc.js +8 -0
  90. package/templates/umi-mobile-h5+app/.gitignore.tpl +9 -7
  91. package/templates/umi-mobile-h5+app/.prettierignore +6 -2
  92. package/templates/umi-mobile-h5+app/.prettierrc.js +2 -0
  93. package/templates/umi-mobile-h5+app/.stylelintignore +6 -0
  94. package/templates/umi-mobile-h5+app/.stylelintrc.js +4 -0
  95. package/templates/umi-mobile-h5+app/.umirc.ts.tpl +0 -1
  96. package/templates/umi-mobile-h5+app/LICENSE +18 -17
  97. package/templates/umi-mobile-h5+app/README.md.tpl +5 -5
  98. package/templates/umi-mobile-h5+app/biome.json +3 -0
  99. package/templates/umi-mobile-h5+app/package.json.tpl +8 -1
  100. package/templates/umi-mobile-h5+app/src/app.tsx +2 -3
  101. package/templates/umi-mobile-h5+app/src/pages/404.tsx +0 -1
  102. package/templates/umi-mobile-h5+app/src/pages/demo/examples/Input.tsx +1 -2
  103. package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/4.tsx +7 -7
  104. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +1 -2
  105. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +1 -2
  106. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/3.tsx +1 -2
  107. package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +1 -2
  108. package/templates/umi-mobile-h5+app/src/pages/demo/index.tsx +8 -7
  109. package/templates/umi-mobile-h5+app/src/pages/index.tsx +0 -2
  110. package/templates/umi-mobile-h5+app/src/types/user.d.ts +2 -2
  111. package/templates/umi-mobile-h5+app/tsconfig.json +9 -1
  112. package/templates/umi-mobile-h5+app/yest.config.ts +10 -0
  113. package/templates/umi-mobile-native/.eslintignore +6 -0
  114. package/templates/umi-mobile-native/.eslintrc.js +8 -0
  115. package/templates/umi-mobile-native/.gitignore.tpl +9 -7
  116. package/templates/umi-mobile-native/.prettierignore +6 -2
  117. package/templates/umi-mobile-native/.prettierrc.js +2 -0
  118. package/templates/umi-mobile-native/.stylelintignore +6 -0
  119. package/templates/umi-mobile-native/.stylelintrc.js +4 -0
  120. package/templates/umi-mobile-native/.umirc.ts.tpl +0 -1
  121. package/templates/umi-mobile-native/LICENSE +18 -17
  122. package/templates/umi-mobile-native/README.md.tpl +5 -5
  123. package/templates/umi-mobile-native/android/app/build.gradle +19 -4
  124. package/templates/umi-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
  125. package/templates/umi-mobile-native/android/gradle.properties +1 -1
  126. package/templates/umi-mobile-native/biome.json +3 -0
  127. package/templates/umi-mobile-native/package.json.tpl +8 -1
  128. package/templates/umi-mobile-native/src/app.tsx +2 -3
  129. package/templates/umi-mobile-native/src/common/Xprinter.ts +4 -4
  130. package/templates/umi-mobile-native/src/common/bluetooth.ts +14 -14
  131. package/templates/umi-mobile-native/src/common/bridge.ts +6 -6
  132. package/templates/umi-mobile-native/src/pages/404.tsx +0 -1
  133. package/templates/umi-mobile-native/src/pages/demo/examples/Input.tsx +1 -2
  134. package/templates/umi-mobile-native/src/pages/demo/examples/List/4.tsx +7 -7
  135. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/1.tsx +1 -2
  136. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +1 -2
  137. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +1 -2
  138. package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +1 -2
  139. package/templates/umi-mobile-native/src/pages/demo/index.tsx +8 -7
  140. package/templates/umi-mobile-native/src/types/user.d.ts +2 -2
  141. package/templates/umi-mobile-native/tsconfig.json +9 -1
  142. package/templates/umi-mobile-native/yest.config.ts +10 -0
  143. package/templates/umi-mobile-uni-app/.eslintignore +6 -0
  144. package/templates/umi-mobile-uni-app/.eslintrc.js +8 -0
  145. package/templates/umi-mobile-uni-app/.gitignore.tpl +39 -0
  146. package/templates/umi-mobile-uni-app/.prettierignore +12 -0
  147. package/templates/umi-mobile-uni-app/.prettierrc.js +2 -0
  148. package/templates/umi-mobile-uni-app/.stylelintignore +6 -0
  149. package/templates/umi-mobile-uni-app/.stylelintrc.js +4 -0
  150. package/templates/umi-mobile-uni-app/.umirc.ts.tpl +7 -0
  151. package/templates/umi-mobile-uni-app/LICENSE +22 -0
  152. package/templates/{ice-web-screen → umi-mobile-uni-app}/README.md.tpl +5 -5
  153. package/templates/umi-mobile-uni-app/biome.json +3 -0
  154. package/templates/umi-mobile-uni-app/package.json.tpl +23 -0
  155. package/templates/umi-mobile-uni-app/src/app.tsx +18 -0
  156. package/templates/umi-mobile-uni-app/src/layouts/index.tsx +3 -0
  157. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/404.tsx +0 -1
  158. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/BarCode.tsx +0 -1
  159. package/templates/{ice-web → umi-mobile-uni-app}/src/pages/demo/examples/Iconfont.tsx +1 -2
  160. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/Input.tsx +1 -3
  161. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/List/1.tsx +1 -2
  162. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/2.tsx +1 -1
  163. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/List/3.tsx +1 -1
  164. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/4.tsx +12 -13
  165. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/Loading.tsx +0 -1
  166. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/1.tsx +1 -3
  167. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/2.tsx +1 -3
  168. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/3.tsx +1 -3
  169. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/NumberInput/4.tsx +1 -3
  170. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/PagingList/1.tsx +1 -2
  171. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/QrCode.tsx +0 -1
  172. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/demo/examples/Required.tsx +0 -1
  173. package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/TimerButton.tsx +0 -1
  174. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/examples/usePreload.tsx +1 -1
  175. package/templates/{ice-mobile → umi-mobile-uni-app}/src/pages/demo/index.tsx +10 -10
  176. package/templates/{ice-mobile-native → umi-mobile-uni-app}/src/pages/index.tsx +0 -2
  177. package/templates/umi-mobile-uni-app/src/types/user.d.ts +3 -0
  178. package/templates/umi-mobile-uni-app/tsconfig.json +11 -0
  179. package/templates/umi-mobile-uni-app/typings.d.ts +1 -0
  180. package/templates/umi-mobile-uni-app/uni-app/AndroidManifest.xml +8 -0
  181. package/templates/umi-mobile-uni-app/uni-app/App.vue +28 -0
  182. package/templates/umi-mobile-uni-app/uni-app/androidPrivacy.json +22 -0
  183. package/templates/umi-mobile-uni-app/uni-app/assets/apple-app-site-association +11 -0
  184. package/templates/umi-mobile-uni-app/uni-app/common/constants.ts +5 -0
  185. package/templates/umi-mobile-uni-app/uni-app/common/request.ts +118 -0
  186. package/templates/umi-mobile-uni-app/uni-app/common/util.ts +27 -0
  187. package/templates/umi-mobile-uni-app/uni-app/components/webview/webview.vue +61 -0
  188. package/templates/umi-mobile-uni-app/uni-app/hybrid/html/error.html +24 -0
  189. package/templates/umi-mobile-uni-app/uni-app/images/index.ts +2 -0
  190. package/templates/umi-mobile-uni-app/uni-app/index.html +20 -0
  191. package/templates/{ice-mobile-native/ios/HBuilder/HBuilder.entitlements → umi-mobile-uni-app/uni-app/info.plist} +3 -2
  192. package/templates/umi-mobile-uni-app/uni-app/main.js +22 -0
  193. package/templates/umi-mobile-uni-app/uni-app/manifest.json +207 -0
  194. package/templates/umi-mobile-uni-app/uni-app/pages/index/index.vue +17 -0
  195. package/templates/umi-mobile-uni-app/uni-app/pages/webview/index.vue +19 -0
  196. package/templates/umi-mobile-uni-app/uni-app/pages.json +22 -0
  197. package/templates/umi-mobile-uni-app/uni-app/uni.promisify.adaptor.js +16 -0
  198. package/templates/umi-mobile-uni-app/uni-app/uni.scss +76 -0
  199. package/templates/umi-mobile-uni-app/yest.config.ts +10 -0
  200. package/templates/umi-web/.eslintignore +6 -0
  201. package/templates/umi-web/.eslintrc.js +8 -0
  202. package/templates/umi-web/.gitignore.tpl +9 -7
  203. package/templates/umi-web/.prettierignore +6 -2
  204. package/templates/umi-web/.prettierrc.js +2 -0
  205. package/templates/umi-web/.stylelintignore +6 -0
  206. package/templates/umi-web/.stylelintrc.js +4 -0
  207. package/templates/umi-web/.umirc.ts.tpl +1 -1
  208. package/templates/umi-web/LICENSE +18 -17
  209. package/templates/umi-web/README.md.tpl +5 -5
  210. package/templates/umi-web/biome.json +3 -0
  211. package/templates/umi-web/package.json.tpl +8 -1
  212. package/templates/umi-web/src/app.tsx +2 -3
  213. package/templates/umi-web/src/pages/404.tsx +2 -3
  214. package/templates/umi-web/src/pages/demo/examples/BankInput.tsx +1 -2
  215. package/templates/umi-web/src/pages/demo/examples/Grid/4.tsx +1 -1
  216. package/templates/umi-web/src/pages/demo/examples/Grid/5.tsx +1 -2
  217. package/templates/umi-web/src/pages/demo/examples/Input/2.tsx +2 -1
  218. package/templates/umi-web/src/pages/demo/examples/RangeNumber/2.tsx +1 -2
  219. package/templates/umi-web/src/pages/demo/examples/SearchLayout.tsx +2 -2
  220. package/templates/umi-web/src/pages/demo/examples/Wrapper.tsx +2 -2
  221. package/templates/umi-web/src/pages/demo/index.tsx +11 -9
  222. package/templates/umi-web/src/pages/index.tsx +0 -2
  223. package/templates/umi-web/src/types/user.d.ts +2 -2
  224. package/templates/umi-web/tsconfig.json +9 -1
  225. package/templates/umi-web/yest.config.ts +8 -0
  226. package/templates/umi-web-screen/.eslintignore +6 -0
  227. package/templates/umi-web-screen/.eslintrc.js +8 -0
  228. package/templates/umi-web-screen/.gitignore.tpl +9 -7
  229. package/templates/umi-web-screen/.prettierignore +6 -2
  230. package/templates/umi-web-screen/.prettierrc.js +2 -0
  231. package/templates/umi-web-screen/.stylelintignore +6 -0
  232. package/templates/umi-web-screen/.stylelintrc.js +4 -0
  233. package/templates/umi-web-screen/.umirc.ts.tpl +2 -2
  234. package/templates/umi-web-screen/LICENSE +18 -17
  235. package/templates/umi-web-screen/README.md.tpl +5 -5
  236. package/templates/umi-web-screen/biome.json +3 -0
  237. package/templates/umi-web-screen/package.json.tpl +8 -1
  238. package/templates/umi-web-screen/src/app.tsx +2 -3
  239. package/templates/umi-web-screen/src/components/resize-container/index.tsx +18 -18
  240. package/templates/umi-web-screen/src/constants.ts +4 -4
  241. package/templates/umi-web-screen/src/layouts/controller/index.tsx +6 -10
  242. package/templates/umi-web-screen/src/pages/404.tsx +2 -3
  243. package/templates/umi-web-screen/src/pages/index.tsx +0 -2
  244. package/templates/umi-web-screen/src/pages/template/components/charts/demo-line/index.tsx +2 -3
  245. package/templates/umi-web-screen/src/pages/template/controller/index.tsx +11 -12
  246. package/templates/umi-web-screen/src/types/user.d.ts +2 -2
  247. package/templates/umi-web-screen/tsconfig.json +9 -1
  248. package/templates/umi-web-screen/yest.config.ts +8 -0
  249. package/templates/ice-mobile/.eslintrc +0 -6
  250. package/templates/ice-mobile/.gitignore.tpl +0 -34
  251. package/templates/ice-mobile/.icerc.ts +0 -3
  252. package/templates/ice-mobile/.npmrc.tpl +0 -2
  253. package/templates/ice-mobile/.prettierignore +0 -9
  254. package/templates/ice-mobile/.prettierrc +0 -11
  255. package/templates/ice-mobile/.stylelintrc +0 -3
  256. package/templates/ice-mobile/README.md.tpl +0 -34
  257. package/templates/ice-mobile/package.json.tpl +0 -16
  258. package/templates/ice-mobile/public/favicon.ico +0 -0
  259. package/templates/ice-mobile/public/index.html +0 -15
  260. package/templates/ice-mobile/src/app.tsx +0 -5
  261. package/templates/ice-mobile/src/common/request.ts +0 -3
  262. package/templates/ice-mobile/src/common/util.ts +0 -7
  263. package/templates/ice-mobile/src/global.less +0 -3
  264. package/templates/ice-mobile/src/layouts/index.tsx +0 -5
  265. package/templates/ice-mobile/src/pages/404.tsx +0 -10
  266. package/templates/ice-mobile/src/pages/demo/examples/BarCode.tsx +0 -4
  267. package/templates/ice-mobile/src/pages/demo/examples/Iconfont.tsx +0 -18
  268. package/templates/ice-mobile/src/pages/demo/examples/List/1.tsx +0 -12
  269. package/templates/ice-mobile/src/pages/demo/examples/List/2.tsx +0 -29
  270. package/templates/ice-mobile/src/pages/demo/examples/List/4.tsx +0 -55
  271. package/templates/ice-mobile/src/pages/demo/examples/List/mock.ts +0 -30
  272. package/templates/ice-mobile/src/pages/demo/examples/NumberInput/1.tsx +0 -17
  273. package/templates/ice-mobile/src/pages/demo/examples/NumberInput/3.tsx +0 -17
  274. package/templates/ice-mobile/src/pages/demo/examples/QrCode.tsx +0 -4
  275. package/templates/ice-mobile/src/pages/demo/examples/Required.tsx +0 -4
  276. package/templates/ice-mobile/src/pages/demo/examples/TimerButton.tsx +0 -4
  277. package/templates/ice-mobile/src/pages/index.tsx +0 -3
  278. package/templates/ice-mobile/src/routes.ts +0 -29
  279. package/templates/ice-mobile/src/types/user.d.ts +0 -3
  280. package/templates/ice-mobile/tsconfig.json +0 -3
  281. package/templates/ice-mobile/typings.d.ts +0 -1
  282. package/templates/ice-mobile-h5+app/.eslintrc +0 -6
  283. package/templates/ice-mobile-h5+app/.gitignore.tpl +0 -34
  284. package/templates/ice-mobile-h5+app/.icerc.ts +0 -6
  285. package/templates/ice-mobile-h5+app/.prettierignore +0 -9
  286. package/templates/ice-mobile-h5+app/.prettierrc +0 -11
  287. package/templates/ice-mobile-h5+app/.stylelintrc +0 -3
  288. package/templates/ice-mobile-h5+app/h5+app/manifest.json +0 -87
  289. package/templates/ice-mobile-h5+app/package.json.tpl +0 -16
  290. package/templates/ice-mobile-h5+app/public/index.html +0 -15
  291. package/templates/ice-mobile-h5+app/src/app.tsx +0 -5
  292. package/templates/ice-mobile-h5+app/src/layouts/index.tsx +0 -5
  293. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Iconfont.tsx +0 -18
  294. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Input.tsx +0 -17
  295. package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/1.tsx +0 -12
  296. package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/3.tsx +0 -29
  297. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Loading.tsx +0 -12
  298. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +0 -17
  299. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +0 -17
  300. package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +0 -17
  301. package/templates/ice-mobile-h5+app/src/pages/demo/examples/PagingList/1.tsx +0 -6
  302. package/templates/ice-mobile-h5+app/src/pages/demo/examples/Required.tsx +0 -4
  303. package/templates/ice-mobile-h5+app/src/pages/demo/examples/usePreload.tsx +0 -9
  304. package/templates/ice-mobile-h5+app/src/pages/demo/index.tsx +0 -87
  305. package/templates/ice-mobile-h5+app/src/pages/index.tsx +0 -3
  306. package/templates/ice-mobile-h5+app/src/routes.ts +0 -29
  307. package/templates/ice-mobile-h5+app/src/types/user.d.ts +0 -3
  308. package/templates/ice-mobile-h5+app/tsconfig.json +0 -3
  309. package/templates/ice-mobile-h5+app/typings.d.ts +0 -1
  310. package/templates/ice-mobile-native/.eslintrc +0 -6
  311. package/templates/ice-mobile-native/.gitignore.tpl +0 -39
  312. package/templates/ice-mobile-native/.icerc.ts +0 -8
  313. package/templates/ice-mobile-native/.prettierignore +0 -9
  314. package/templates/ice-mobile-native/.prettierrc +0 -11
  315. package/templates/ice-mobile-native/.stylelintrc +0 -3
  316. package/templates/ice-mobile-native/README.md.tpl +0 -34
  317. package/templates/ice-mobile-native/android/app/6209ba977ffec7d62675a4e254ebc209.keystore +0 -0
  318. package/templates/ice-mobile-native/android/app/build.gradle +0 -66
  319. package/templates/ice-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
  320. package/templates/ice-mobile-native/android/app/libs/PosPrinterSDK.jar +0 -0
  321. package/templates/ice-mobile-native/android/app/libs/android-gif-drawable-release@1.2.23.aar +0 -0
  322. package/templates/ice-mobile-native/android/app/libs/lib.5plus.base-release.aar +0 -0
  323. package/templates/ice-mobile-native/android/app/libs/oaid_sdk_1.0.25.aar +0 -0
  324. package/templates/ice-mobile-native/android/app/libs/webview-x5-release.aar +0 -0
  325. package/templates/ice-mobile-native/android/app/proguard-rules.pro +0 -303
  326. package/templates/ice-mobile-native/android/app/src/main/AndroidManifest.xml +0 -98
  327. package/templates/ice-mobile-native/android/app/src/main/assets/apps/H5ECA1DEE/www/manifest.json +0 -89
  328. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_control.xml +0 -6
  329. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_error.html +0 -92
  330. package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_properties.xml +0 -19
  331. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/JSBridge/FunctionCreator.java +0 -119
  332. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/MPandoraEntryActivity.java +0 -17
  333. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Creator.java +0 -17
  334. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Error.java +0 -26
  335. package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/JSPlugin.java +0 -265
  336. package/templates/ice-mobile-native/android/app/src/main/res/drawable/icon.png +0 -0
  337. package/templates/ice-mobile-native/android/app/src/main/res/values/colors.xml +0 -5
  338. package/templates/ice-mobile-native/android/app/src/main/res/values/strings.xml +0 -3
  339. package/templates/ice-mobile-native/android/build.gradle +0 -9
  340. package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  341. package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.properties +0 -6
  342. package/templates/ice-mobile-native/android/gradle.properties +0 -22
  343. package/templates/ice-mobile-native/android/gradlew +0 -185
  344. package/templates/ice-mobile-native/android/gradlew.bat +0 -89
  345. package/templates/ice-mobile-native/android/settings.gradle +0 -16
  346. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/1024x1024.png +0 -0
  347. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120-1.png +0 -0
  348. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120.png +0 -0
  349. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/180x180.png +0 -0
  350. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/40x40.png +0 -0
  351. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/58x58.png +0 -0
  352. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/60x60.png +0 -0
  353. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/80x80.png +0 -0
  354. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/87x87.png +0 -0
  355. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/Contents.json +0 -62
  356. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Contents.json +0 -6
  357. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Image.imageset/Contents.json +0 -20
  358. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/120x120.png +0 -0
  359. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/180x180.png +0 -0
  360. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/60x60.png +0 -0
  361. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/Contents.json +0 -26
  362. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/Contents.json +0 -21
  363. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/brightness@2x.png +0 -0
  364. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/Contents.json +0 -22
  365. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@2x.png +0 -0
  366. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@3x.png +0 -0
  367. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset/Contents.json +0 -22
  368. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211-1.png +0 -0
  369. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211.png +0 -0
  370. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset/Contents.json +0 -22
  371. 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
  372. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206.png +0 -0
  373. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset/Contents.json +0 -21
  374. 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
  375. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset/Contents.json +0 -22
  376. 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
  377. 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
  378. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/Contents.json +0 -22
  379. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@2x.png +0 -0
  380. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@3x.png +0 -0
  381. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/Contents.json +0 -23
  382. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play.png +0 -0
  383. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@2x.png +0 -0
  384. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@3x.png +0 -0
  385. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/Contents.json +0 -23
  386. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back.png +0 -0
  387. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@2x.png +0 -0
  388. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@3x.png +0 -0
  389. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/Contents.json +0 -23
  390. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play.png +0 -0
  391. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@2x.png +0 -0
  392. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@3x.png +0 -0
  393. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/Contents.json +0 -23
  394. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop.png +0 -0
  395. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@2x.png +0 -0
  396. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@3x.png +0 -0
  397. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/Contents.json +0 -22
  398. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@2x.png +0 -0
  399. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@3x.png +0 -0
  400. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/Contents.json +0 -22
  401. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@2x.png +0 -0
  402. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@3x.png +0 -0
  403. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/Contents.json +0 -22
  404. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@2x.png +0 -0
  405. package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@3x.png +0 -0
  406. package/templates/ice-mobile-native/ios/HBuilder-Hello/120x120.png +0 -0
  407. package/templates/ice-mobile-native/ios/HBuilder-Hello/180x180.png +0 -0
  408. package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.h +0 -16
  409. package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.m +0 -225
  410. package/templates/ice-mobile-native/ios/HBuilder-Hello/Base.lproj/LaunchScreen.storyboard +0 -65
  411. package/templates/ice-mobile-native/ios/HBuilder-Hello/English.lproj/Localizable.strings +0 -13
  412. package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Info.plist +0 -486
  413. package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Prefix.pch +0 -16
  414. package/templates/ice-mobile-native/ios/HBuilder-Hello/LaunchScreen.storyboard +0 -67
  415. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/manifest.json +0 -79
  416. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/1024x1024.png +0 -0
  417. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/120x120.png +0 -0
  418. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/144x144.png +0 -0
  419. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/152x152.png +0 -0
  420. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/167x167.png +0 -0
  421. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/180x180.png +0 -0
  422. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/192x192.png +0 -0
  423. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/20x20.png +0 -0
  424. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/29x29.png +0 -0
  425. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/40x40.png +0 -0
  426. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/58x58.png +0 -0
  427. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/60x60.png +0 -0
  428. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/72x72.png +0 -0
  429. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/76x76.png +0 -0
  430. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/80x80.png +0 -0
  431. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/87x87.png +0 -0
  432. package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/96x96.png +0 -0
  433. package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.h +0 -19
  434. package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.m +0 -161
  435. package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.h +0 -19
  436. package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.m +0 -235
  437. package/templates/ice-mobile-native/ios/HBuilder-Hello/control.xml +0 -107
  438. package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/InfoPlist.strings +0 -4
  439. package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/Localizable.strings +0 -12
  440. package/templates/ice-mobile-native/ios/HBuilder-Hello/main.m +0 -18
  441. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/InfoPlist.strings +0 -4
  442. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/LaunchScreen.strings +0 -3
  443. package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/Localizable.strings +0 -13
  444. package/templates/ice-mobile-native/ios/HBuilder-Hello.xcodeproj/project.pbxproj +0 -1607
  445. package/templates/ice-mobile-native/package.json.tpl +0 -16
  446. package/templates/ice-mobile-native/public/favicon.ico +0 -0
  447. package/templates/ice-mobile-native/public/index.html +0 -15
  448. package/templates/ice-mobile-native/src/app.tsx +0 -5
  449. package/templates/ice-mobile-native/src/common/Xprinter.ts +0 -58
  450. package/templates/ice-mobile-native/src/common/bluetooth.ts +0 -354
  451. package/templates/ice-mobile-native/src/common/bridge.ts +0 -59
  452. package/templates/ice-mobile-native/src/common/request.ts +0 -3
  453. package/templates/ice-mobile-native/src/common/util.ts +0 -7
  454. package/templates/ice-mobile-native/src/global.less +0 -3
  455. package/templates/ice-mobile-native/src/layouts/index.tsx +0 -5
  456. package/templates/ice-mobile-native/src/pages/404.tsx +0 -10
  457. package/templates/ice-mobile-native/src/pages/demo/examples/BarCode.tsx +0 -4
  458. package/templates/ice-mobile-native/src/pages/demo/examples/Iconfont.tsx +0 -18
  459. package/templates/ice-mobile-native/src/pages/demo/examples/Input.tsx +0 -17
  460. package/templates/ice-mobile-native/src/pages/demo/examples/List/2.tsx +0 -29
  461. package/templates/ice-mobile-native/src/pages/demo/examples/List/3.tsx +0 -29
  462. package/templates/ice-mobile-native/src/pages/demo/examples/List/4.tsx +0 -55
  463. package/templates/ice-mobile-native/src/pages/demo/examples/List/mock.ts +0 -30
  464. package/templates/ice-mobile-native/src/pages/demo/examples/Loading.tsx +0 -12
  465. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +0 -17
  466. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +0 -17
  467. package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +0 -17
  468. package/templates/ice-mobile-native/src/pages/demo/examples/PagingList/1.tsx +0 -6
  469. package/templates/ice-mobile-native/src/pages/demo/examples/QrCode.tsx +0 -4
  470. package/templates/ice-mobile-native/src/pages/demo/examples/TimerButton.tsx +0 -4
  471. package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/index.tsx +0 -64
  472. package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/style.less +0 -16
  473. package/templates/ice-mobile-native/src/pages/demo/examples/usePreload.tsx +0 -9
  474. package/templates/ice-mobile-native/src/pages/demo/index.tsx +0 -89
  475. package/templates/ice-mobile-native/src/routes.ts +0 -29
  476. package/templates/ice-mobile-native/src/types/user.d.ts +0 -3
  477. package/templates/ice-mobile-native/tsconfig.json +0 -3
  478. package/templates/ice-mobile-native/typings.d.ts +0 -1
  479. package/templates/ice-web/.eslintrc +0 -6
  480. package/templates/ice-web/.gitignore.tpl +0 -34
  481. package/templates/ice-web/.icerc.ts +0 -3
  482. package/templates/ice-web/.npmrc.tpl +0 -2
  483. package/templates/ice-web/.prettierignore +0 -9
  484. package/templates/ice-web/.prettierrc +0 -11
  485. package/templates/ice-web/.stylelintrc +0 -3
  486. package/templates/ice-web/README.md.tpl +0 -34
  487. package/templates/ice-web/package.json.tpl +0 -16
  488. package/templates/ice-web/public/favicon.ico +0 -0
  489. package/templates/ice-web/public/index.html +0 -15
  490. package/templates/ice-web/src/app.tsx +0 -5
  491. package/templates/ice-web/src/common/request.ts +0 -3
  492. package/templates/ice-web/src/common/util.ts +0 -7
  493. package/templates/ice-web/src/components/index.ts +0 -0
  494. package/templates/ice-web/src/global.less +0 -5
  495. package/templates/ice-web/src/layouts/index.tsx +0 -5
  496. package/templates/ice-web/src/pages/404.tsx +0 -17
  497. package/templates/ice-web/src/pages/demo/examples/BankInput.tsx +0 -13
  498. package/templates/ice-web/src/pages/demo/examples/BarCode.tsx +0 -4
  499. package/templates/ice-web/src/pages/demo/examples/Collapse.tsx +0 -4
  500. package/templates/ice-web/src/pages/demo/examples/DatePicker.tsx +0 -4
  501. package/templates/ice-web/src/pages/demo/examples/Flex.tsx +0 -10
  502. package/templates/ice-web/src/pages/demo/examples/Grid/1.tsx +0 -25
  503. package/templates/ice-web/src/pages/demo/examples/Grid/2.tsx +0 -26
  504. package/templates/ice-web/src/pages/demo/examples/Grid/3.tsx +0 -37
  505. package/templates/ice-web/src/pages/demo/examples/Grid/4.tsx +0 -43
  506. package/templates/ice-web/src/pages/demo/examples/Grid/5.tsx +0 -36
  507. package/templates/ice-web/src/pages/demo/examples/Grid/6.tsx +0 -28
  508. package/templates/ice-web/src/pages/demo/examples/ImagePreview.tsx +0 -20
  509. package/templates/ice-web/src/pages/demo/examples/Input/1.tsx +0 -4
  510. package/templates/ice-web/src/pages/demo/examples/Input/2.tsx +0 -80
  511. package/templates/ice-web/src/pages/demo/examples/LinkButton/1.tsx +0 -4
  512. package/templates/ice-web/src/pages/demo/examples/LinkButton/2.tsx +0 -9
  513. package/templates/ice-web/src/pages/demo/examples/LinkButton/3.tsx +0 -12
  514. package/templates/ice-web/src/pages/demo/examples/Loading.tsx +0 -12
  515. package/templates/ice-web/src/pages/demo/examples/MobileInput.tsx +0 -4
  516. package/templates/ice-web/src/pages/demo/examples/NumberInput.tsx +0 -4
  517. package/templates/ice-web/src/pages/demo/examples/PagingTable.tsx +0 -21
  518. package/templates/ice-web/src/pages/demo/examples/QrCode.tsx +0 -4
  519. package/templates/ice-web/src/pages/demo/examples/RangeNumber/1.tsx +0 -4
  520. package/templates/ice-web/src/pages/demo/examples/RangeNumber/2.tsx +0 -15
  521. package/templates/ice-web/src/pages/demo/examples/Required.tsx +0 -4
  522. package/templates/ice-web/src/pages/demo/examples/SearchLayout.tsx +0 -46
  523. package/templates/ice-web/src/pages/demo/examples/Table/1.tsx +0 -64
  524. package/templates/ice-web/src/pages/demo/examples/Table/2.tsx +0 -29
  525. package/templates/ice-web/src/pages/demo/examples/Table/3.tsx +0 -39
  526. package/templates/ice-web/src/pages/demo/examples/Table/4.tsx +0 -42
  527. package/templates/ice-web/src/pages/demo/examples/TimerButton.tsx +0 -4
  528. package/templates/ice-web/src/pages/demo/examples/Title/1.tsx +0 -4
  529. package/templates/ice-web/src/pages/demo/examples/Title/2.tsx +0 -5
  530. package/templates/ice-web/src/pages/demo/examples/WaterMark.tsx +0 -8
  531. package/templates/ice-web/src/pages/demo/examples/Wrapper.tsx +0 -40
  532. package/templates/ice-web/src/pages/demo/examples/usePreload.tsx +0 -9
  533. package/templates/ice-web/src/pages/demo/index.tsx +0 -135
  534. package/templates/ice-web/src/pages/index.tsx +0 -3
  535. package/templates/ice-web/src/routes.ts +0 -29
  536. package/templates/ice-web/src/types/user.d.ts +0 -3
  537. package/templates/ice-web/tsconfig.json +0 -3
  538. package/templates/ice-web/typings.d.ts +0 -1
  539. package/templates/ice-web-screen/.eslintrc +0 -6
  540. package/templates/ice-web-screen/.gitignore.tpl +0 -34
  541. package/templates/ice-web-screen/.icerc.ts +0 -3
  542. package/templates/ice-web-screen/.npmrc.tpl +0 -2
  543. package/templates/ice-web-screen/.prettierignore +0 -9
  544. package/templates/ice-web-screen/.prettierrc +0 -11
  545. package/templates/ice-web-screen/.stylelintrc +0 -3
  546. package/templates/ice-web-screen/package.json.tpl +0 -17
  547. package/templates/ice-web-screen/public/favicon.ico +0 -0
  548. package/templates/ice-web-screen/public/index.html +0 -15
  549. package/templates/ice-web-screen/src/app.tsx +0 -5
  550. package/templates/ice-web-screen/src/common/request.ts +0 -3
  551. package/templates/ice-web-screen/src/common/util.ts +0 -15
  552. package/templates/ice-web-screen/src/components/index.ts +0 -1
  553. package/templates/ice-web-screen/src/components/resize-container/index.tsx +0 -95
  554. package/templates/ice-web-screen/src/components/resize-container/style.module.less +0 -3
  555. package/templates/ice-web-screen/src/constants.ts +0 -7
  556. package/templates/ice-web-screen/src/global.less +0 -31
  557. package/templates/ice-web-screen/src/hooks/use-size.ts +0 -18
  558. package/templates/ice-web-screen/src/layouts/16_9/fixed.less +0 -18
  559. package/templates/ice-web-screen/src/layouts/16_9/index.tsx +0 -34
  560. package/templates/ice-web-screen/src/layouts/16_9/style.module.less +0 -19
  561. package/templates/ice-web-screen/src/layouts/components/index.ts +0 -0
  562. package/templates/ice-web-screen/src/layouts/controller/index.tsx +0 -79
  563. package/templates/ice-web-screen/src/layouts/index.tsx +0 -11
  564. package/templates/ice-web-screen/src/pages/404.tsx +0 -17
  565. package/templates/ice-web-screen/src/pages/index.tsx +0 -3
  566. package/templates/ice-web-screen/src/pages/template/16_9/index.tsx +0 -13
  567. package/templates/ice-web-screen/src/pages/template/16_9/style.module.less +0 -7
  568. package/templates/ice-web-screen/src/pages/template/components/charts/demo-line/index.tsx +0 -274
  569. package/templates/ice-web-screen/src/pages/template/components/charts/index.ts +0 -1
  570. package/templates/ice-web-screen/src/pages/template/components/index.ts +0 -1
  571. package/templates/ice-web-screen/src/pages/template/controller/index.tsx +0 -85
  572. package/templates/ice-web-screen/src/pages/template/index.tsx +0 -15
  573. package/templates/ice-web-screen/src/pages/template/style.module.less +0 -3
  574. package/templates/ice-web-screen/src/routes.ts +0 -29
  575. package/templates/ice-web-screen/src/styles/vars.less +0 -5
  576. package/templates/ice-web-screen/src/types/user.d.ts +0 -3
  577. package/templates/ice-web-screen/tsconfig.json +0 -3
  578. package/templates/ice-web-screen/typings.d.ts +0 -1
  579. package/templates/miniprogram/.editorconfig +0 -12
  580. package/templates/miniprogram/.eslintrc +0 -6
  581. package/templates/miniprogram/.npmrc.tpl +0 -2
  582. package/templates/miniprogram/.prettierignore +0 -5
  583. package/templates/miniprogram/.prettierrc +0 -12
  584. package/templates/miniprogram/.stylelintrc +0 -3
  585. package/templates/miniprogram/LICENSE +0 -21
  586. package/templates/miniprogram/README.md.tpl +0 -34
  587. package/templates/miniprogram/global.d.ts +0 -33
  588. package/templates/miniprogram/src/app.scss +0 -2
  589. package/templates/miniprogram/src/components/index.ts +0 -0
  590. package/templates/miniprogram/src/constants.ts +0 -1
  591. package/templates/miniprogram/src/hooks/index.ts +0 -0
  592. package/templates/miniprogram/src/pages/demo/examples/Input.tsx +0 -3
  593. package/templates/miniprogram/src/pages/demo/examples/Textarea.tsx +0 -3
  594. package/templates/miniprogram/src/pages/demo/index.module.scss.d.ts +0 -5
  595. package/templates/miniprogram/src/pages/index/index.module.scss.d.ts +0 -5
  596. package/templates/miniprogram/src/types/user.d.ts +0 -3
  597. package/templates/miniprogram/tsconfig.json +0 -28
  598. package/templates/umi-mobile/.eslintrc +0 -6
  599. package/templates/umi-mobile/.prettierrc +0 -11
  600. package/templates/umi-mobile/.stylelintrc +0 -3
  601. package/templates/umi-mobile-h5+app/.eslintrc +0 -6
  602. package/templates/umi-mobile-h5+app/.prettierrc +0 -11
  603. package/templates/umi-mobile-h5+app/.stylelintrc +0 -3
  604. package/templates/umi-mobile-native/.eslintrc +0 -6
  605. package/templates/umi-mobile-native/.prettierrc +0 -11
  606. package/templates/umi-mobile-native/.stylelintrc +0 -3
  607. package/templates/umi-web/.eslintrc +0 -6
  608. package/templates/umi-web/.prettierrc +0 -11
  609. package/templates/umi-web/.stylelintrc +0 -3
  610. package/templates/umi-web-screen/.eslintrc +0 -6
  611. package/templates/umi-web-screen/.prettierrc +0 -11
  612. package/templates/umi-web-screen/.stylelintrc +0 -3
  613. /package/templates/{ice-mobile-h5+app → taro-miniprogram}/.npmrc.tpl +0 -0
  614. /package/templates/{miniprogram → taro-miniprogram}/babel.config.js +0 -0
  615. /package/templates/{miniprogram → taro-miniprogram}/project.tt.json.tpl +0 -0
  616. /package/templates/{miniprogram → taro-miniprogram}/src/common/request.ts +0 -0
  617. /package/templates/{miniprogram → taro-miniprogram}/src/common/util.ts +0 -0
  618. /package/templates/{ice-mobile-h5+app → taro-miniprogram}/src/components/index.ts +0 -0
  619. /package/templates/{ice-mobile-native/src/components → taro-miniprogram/src/hooks}/index.ts +0 -0
  620. /package/templates/{miniprogram → taro-miniprogram}/src/images/empty.gif +0 -0
  621. /package/templates/{miniprogram → taro-miniprogram}/src/index.html +0 -0
  622. /package/templates/{miniprogram/src/pages/demo/index.module.scss → taro-miniprogram/src/pages/demo/style.scss} +0 -0
  623. /package/templates/{miniprogram/src/pages/index/index.module.scss → taro-miniprogram/src/pages/index/style.scss} +0 -0
  624. /package/templates/{miniprogram → taro-miniprogram}/src/theme.scss +0 -0
  625. /package/templates/{ice-mobile-native → umi-mobile-uni-app}/.npmrc.tpl +0 -0
  626. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/public/favicon.ico +0 -0
  627. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/common/request.ts +0 -0
  628. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/common/util.ts +0 -0
  629. /package/templates/{ice-mobile → umi-mobile-uni-app}/src/components/index.ts +0 -0
  630. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/global.less +0 -0
  631. /package/templates/{ice-mobile-h5+app → umi-mobile-uni-app}/src/pages/demo/examples/List/mock.ts +0 -0
@@ -0,0 +1 @@
1
+ (function(){var t={718:function(t){"use strict";t.exports=require("node:child_process")},673:function(t){"use strict";t.exports=require("node:events")},561:function(t){"use strict";t.exports=require("node:fs")},411:function(t){"use strict";t.exports=require("node:path")},742:function(t){"use strict";t.exports=require("node:process")},142:function(t,e,i){const{InvalidArgumentError:n}=i(841);class Argument{constructor(t,e){this.description=e||"";this.variadic=false;this.parseArg=undefined;this.defaultValue=undefined;this.defaultValueDescription=undefined;this.argChoices=undefined;switch(t[0]){case"<":this.required=true;this._name=t.slice(1,-1);break;case"[":this.required=false;this._name=t.slice(1,-1);break;default:this.required=true;this._name=t;break}if(this._name.length>3&&this._name.slice(-3)==="..."){this.variadic=true;this._name=this._name.slice(0,-3)}}name(){return this._name}_concatValue(t,e){if(e===this.defaultValue||!Array.isArray(e)){return[t]}return e.concat(t)}default(t,e){this.defaultValue=t;this.defaultValueDescription=e;return this}argParser(t){this.parseArg=t;return this}choices(t){this.argChoices=t.slice();this.parseArg=(t,e)=>{if(!this.argChoices.includes(t)){throw new n(`Allowed choices are ${this.argChoices.join(", ")}.`)}if(this.variadic){return this._concatValue(t,e)}return t};return this}argRequired(){this.required=true;return this}argOptional(){this.required=false;return this}}function humanReadableArgName(t){const e=t.name()+(t.variadic===true?"...":"");return t.required?"<"+e+">":"["+e+"]"}e.Argument=Argument;e.humanReadableArgName=humanReadableArgName},728:function(t,e,i){const n=i(673).EventEmitter;const s=i(718);const r=i(411);const o=i(561);const a=i(742);const{Argument:h,humanReadableArgName:l}=i(142);const{CommanderError:u}=i(841);const{Help:c}=i(202);const{Option:p,DualOptions:d}=i(257);const{suggestSimilar:m}=i(824);class Command extends n{constructor(t){super();this.commands=[];this.options=[];this.parent=null;this._allowUnknownOption=false;this._allowExcessArguments=true;this.registeredArguments=[];this._args=this.registeredArguments;this.args=[];this.rawArgs=[];this.processedArgs=[];this._scriptPath=null;this._name=t||"";this._optionValues={};this._optionValueSources={};this._storeOptionsAsProperties=false;this._actionHandler=null;this._executableHandler=false;this._executableFile=null;this._executableDir=null;this._defaultCommandName=null;this._exitCallback=null;this._aliases=[];this._combineFlagAndOptionalValue=true;this._description="";this._summary="";this._argsDescription=undefined;this._enablePositionalOptions=false;this._passThroughOptions=false;this._lifeCycleHooks={};this._showHelpAfterError=false;this._showSuggestionAfterError=true;this._outputConfiguration={writeOut:t=>a.stdout.write(t),writeErr:t=>a.stderr.write(t),getOutHelpWidth:()=>a.stdout.isTTY?a.stdout.columns:undefined,getErrHelpWidth:()=>a.stderr.isTTY?a.stderr.columns:undefined,outputError:(t,e)=>e(t)};this._hidden=false;this._helpOption=undefined;this._addImplicitHelpCommand=undefined;this._helpCommand=undefined;this._helpConfiguration={}}copyInheritedSettings(t){this._outputConfiguration=t._outputConfiguration;this._helpOption=t._helpOption;this._helpCommand=t._helpCommand;this._helpConfiguration=t._helpConfiguration;this._exitCallback=t._exitCallback;this._storeOptionsAsProperties=t._storeOptionsAsProperties;this._combineFlagAndOptionalValue=t._combineFlagAndOptionalValue;this._allowExcessArguments=t._allowExcessArguments;this._enablePositionalOptions=t._enablePositionalOptions;this._showHelpAfterError=t._showHelpAfterError;this._showSuggestionAfterError=t._showSuggestionAfterError;return this}_getCommandAndAncestors(){const t=[];for(let e=this;e;e=e.parent){t.push(e)}return t}command(t,e,i){let n=e;let s=i;if(typeof n==="object"&&n!==null){s=n;n=null}s=s||{};const[,r,o]=t.match(/([^ ]+) *(.*)/);const a=this.createCommand(r);if(n){a.description(n);a._executableHandler=true}if(s.isDefault)this._defaultCommandName=a._name;a._hidden=!!(s.noHelp||s.hidden);a._executableFile=s.executableFile||null;if(o)a.arguments(o);this._registerCommand(a);a.parent=this;a.copyInheritedSettings(this);if(n)return this;return a}createCommand(t){return new Command(t)}createHelp(){return Object.assign(new c,this.configureHelp())}configureHelp(t){if(t===undefined)return this._helpConfiguration;this._helpConfiguration=t;return this}configureOutput(t){if(t===undefined)return this._outputConfiguration;Object.assign(this._outputConfiguration,t);return this}showHelpAfterError(t=true){if(typeof t!=="string")t=!!t;this._showHelpAfterError=t;return this}showSuggestionAfterError(t=true){this._showSuggestionAfterError=!!t;return this}addCommand(t,e){if(!t._name){throw new Error(`Command passed to .addCommand() must have a name\n- specify the name in Command constructor or using .name()`)}e=e||{};if(e.isDefault)this._defaultCommandName=t._name;if(e.noHelp||e.hidden)t._hidden=true;this._registerCommand(t);t.parent=this;t._checkForBrokenPassThrough();return this}createArgument(t,e){return new h(t,e)}argument(t,e,i,n){const s=this.createArgument(t,e);if(typeof i==="function"){s.default(n).argParser(i)}else{s.default(i)}this.addArgument(s);return this}arguments(t){t.trim().split(/ +/).forEach((t=>{this.argument(t)}));return this}addArgument(t){const e=this.registeredArguments.slice(-1)[0];if(e&&e.variadic){throw new Error(`only the last argument can be variadic '${e.name()}'`)}if(t.required&&t.defaultValue!==undefined&&t.parseArg===undefined){throw new Error(`a default value for a required argument is never used: '${t.name()}'`)}this.registeredArguments.push(t);return this}helpCommand(t,e){if(typeof t==="boolean"){this._addImplicitHelpCommand=t;return this}t=t??"help [command]";const[,i,n]=t.match(/([^ ]+) *(.*)/);const s=e??"display help for command";const r=this.createCommand(i);r.helpOption(false);if(n)r.arguments(n);if(s)r.description(s);this._addImplicitHelpCommand=true;this._helpCommand=r;return this}addHelpCommand(t,e){if(typeof t!=="object"){this.helpCommand(t,e);return this}this._addImplicitHelpCommand=true;this._helpCommand=t;return this}_getHelpCommand(){const t=this._addImplicitHelpCommand??(this.commands.length&&!this._actionHandler&&!this._findCommand("help"));if(t){if(this._helpCommand===undefined){this.helpCommand(undefined,undefined)}return this._helpCommand}return null}hook(t,e){const i=["preSubcommand","preAction","postAction"];if(!i.includes(t)){throw new Error(`Unexpected value for event passed to hook : '${t}'.\nExpecting one of '${i.join("', '")}'`)}if(this._lifeCycleHooks[t]){this._lifeCycleHooks[t].push(e)}else{this._lifeCycleHooks[t]=[e]}return this}exitOverride(t){if(t){this._exitCallback=t}else{this._exitCallback=t=>{if(t.code!=="commander.executeSubCommandAsync"){throw t}else{}}}return this}_exit(t,e,i){if(this._exitCallback){this._exitCallback(new u(t,e,i))}a.exit(t)}action(t){const listener=e=>{const i=this.registeredArguments.length;const n=e.slice(0,i);if(this._storeOptionsAsProperties){n[i]=this}else{n[i]=this.opts()}n.push(this);return t.apply(this,n)};this._actionHandler=listener;return this}createOption(t,e){return new p(t,e)}_callParseArg(t,e,i,n){try{return t.parseArg(e,i)}catch(t){if(t.code==="commander.invalidArgument"){const e=`${n} ${t.message}`;this.error(e,{exitCode:t.exitCode,code:t.code})}throw t}}_registerOption(t){const e=t.short&&this._findOption(t.short)||t.long&&this._findOption(t.long);if(e){const i=t.long&&this._findOption(t.long)?t.long:t.short;throw new Error(`Cannot add option '${t.flags}'${this._name&&` to command '${this._name}'`} due to conflicting flag '${i}'\n- already used by option '${e.flags}'`)}this.options.push(t)}_registerCommand(t){const knownBy=t=>[t.name()].concat(t.aliases());const e=knownBy(t).find((t=>this._findCommand(t)));if(e){const i=knownBy(this._findCommand(e)).join("|");const n=knownBy(t).join("|");throw new Error(`cannot add command '${n}' as already have command '${i}'`)}this.commands.push(t)}addOption(t){this._registerOption(t);const e=t.name();const i=t.attributeName();if(t.negate){const e=t.long.replace(/^--no-/,"--");if(!this._findOption(e)){this.setOptionValueWithSource(i,t.defaultValue===undefined?true:t.defaultValue,"default")}}else if(t.defaultValue!==undefined){this.setOptionValueWithSource(i,t.defaultValue,"default")}const handleOptionValue=(e,n,s)=>{if(e==null&&t.presetArg!==undefined){e=t.presetArg}const r=this.getOptionValue(i);if(e!==null&&t.parseArg){e=this._callParseArg(t,e,r,n)}else if(e!==null&&t.variadic){e=t._concatValue(e,r)}if(e==null){if(t.negate){e=false}else if(t.isBoolean()||t.optional){e=true}else{e=""}}this.setOptionValueWithSource(i,e,s)};this.on("option:"+e,(e=>{const i=`error: option '${t.flags}' argument '${e}' is invalid.`;handleOptionValue(e,i,"cli")}));if(t.envVar){this.on("optionEnv:"+e,(e=>{const i=`error: option '${t.flags}' value '${e}' from env '${t.envVar}' is invalid.`;handleOptionValue(e,i,"env")}))}return this}_optionEx(t,e,i,n,s){if(typeof e==="object"&&e instanceof p){throw new Error("To add an Option object use addOption() instead of option() or requiredOption()")}const r=this.createOption(e,i);r.makeOptionMandatory(!!t.mandatory);if(typeof n==="function"){r.default(s).argParser(n)}else if(n instanceof RegExp){const t=n;n=(e,i)=>{const n=t.exec(e);return n?n[0]:i};r.default(s).argParser(n)}else{r.default(n)}return this.addOption(r)}option(t,e,i,n){return this._optionEx({},t,e,i,n)}requiredOption(t,e,i,n){return this._optionEx({mandatory:true},t,e,i,n)}combineFlagAndOptionalValue(t=true){this._combineFlagAndOptionalValue=!!t;return this}allowUnknownOption(t=true){this._allowUnknownOption=!!t;return this}allowExcessArguments(t=true){this._allowExcessArguments=!!t;return this}enablePositionalOptions(t=true){this._enablePositionalOptions=!!t;return this}passThroughOptions(t=true){this._passThroughOptions=!!t;this._checkForBrokenPassThrough();return this}_checkForBrokenPassThrough(){if(this.parent&&this._passThroughOptions&&!this.parent._enablePositionalOptions){throw new Error(`passThroughOptions cannot be used for '${this._name}' without turning on enablePositionalOptions for parent command(s)`)}}storeOptionsAsProperties(t=true){if(this.options.length){throw new Error("call .storeOptionsAsProperties() before adding options")}if(Object.keys(this._optionValues).length){throw new Error("call .storeOptionsAsProperties() before setting option values")}this._storeOptionsAsProperties=!!t;return this}getOptionValue(t){if(this._storeOptionsAsProperties){return this[t]}return this._optionValues[t]}setOptionValue(t,e){return this.setOptionValueWithSource(t,e,undefined)}setOptionValueWithSource(t,e,i){if(this._storeOptionsAsProperties){this[t]=e}else{this._optionValues[t]=e}this._optionValueSources[t]=i;return this}getOptionValueSource(t){return this._optionValueSources[t]}getOptionValueSourceWithGlobals(t){let e;this._getCommandAndAncestors().forEach((i=>{if(i.getOptionValueSource(t)!==undefined){e=i.getOptionValueSource(t)}}));return e}_prepareUserArgs(t,e){if(t!==undefined&&!Array.isArray(t)){throw new Error("first parameter to parse must be array or undefined")}e=e||{};if(t===undefined&&e.from===undefined){if(a.versions?.electron){e.from="electron"}const t=a.execArgv??[];if(t.includes("-e")||t.includes("--eval")||t.includes("-p")||t.includes("--print")){e.from="eval"}}if(t===undefined){t=a.argv}this.rawArgs=t.slice();let i;switch(e.from){case undefined:case"node":this._scriptPath=t[1];i=t.slice(2);break;case"electron":if(a.defaultApp){this._scriptPath=t[1];i=t.slice(2)}else{i=t.slice(1)}break;case"user":i=t.slice(0);break;case"eval":i=t.slice(1);break;default:throw new Error(`unexpected parse option { from: '${e.from}' }`)}if(!this._name&&this._scriptPath)this.nameFromFilename(this._scriptPath);this._name=this._name||"program";return i}parse(t,e){const i=this._prepareUserArgs(t,e);this._parseCommand([],i);return this}async parseAsync(t,e){const i=this._prepareUserArgs(t,e);await this._parseCommand([],i);return this}_executeSubCommand(t,e){e=e.slice();let i=false;const n=[".js",".ts",".tsx",".mjs",".cjs"];function findFile(t,e){const i=r.resolve(t,e);if(o.existsSync(i))return i;if(n.includes(r.extname(e)))return undefined;const s=n.find((t=>o.existsSync(`${i}${t}`)));if(s)return`${i}${s}`;return undefined}this._checkForMissingMandatoryOptions();this._checkForConflictingOptions();let h=t._executableFile||`${this._name}-${t._name}`;let l=this._executableDir||"";if(this._scriptPath){let t;try{t=o.realpathSync(this._scriptPath)}catch(e){t=this._scriptPath}l=r.resolve(r.dirname(t),l)}if(l){let e=findFile(l,h);if(!e&&!t._executableFile&&this._scriptPath){const i=r.basename(this._scriptPath,r.extname(this._scriptPath));if(i!==this._name){e=findFile(l,`${i}-${t._name}`)}}h=e||h}i=n.includes(r.extname(h));let c;if(a.platform!=="win32"){if(i){e.unshift(h);e=incrementNodeInspectorPort(a.execArgv).concat(e);c=s.spawn(a.argv[0],e,{stdio:"inherit"})}else{c=s.spawn(h,e,{stdio:"inherit"})}}else{e.unshift(h);e=incrementNodeInspectorPort(a.execArgv).concat(e);c=s.spawn(a.execPath,e,{stdio:"inherit"})}if(!c.killed){const t=["SIGUSR1","SIGUSR2","SIGTERM","SIGINT","SIGHUP"];t.forEach((t=>{a.on(t,(()=>{if(c.killed===false&&c.exitCode===null){c.kill(t)}}))}))}const p=this._exitCallback;c.on("close",(t=>{t=t??1;if(!p){a.exit(t)}else{p(new u(t,"commander.executeSubCommandAsync","(close)"))}}));c.on("error",(e=>{if(e.code==="ENOENT"){const e=l?`searched for local subcommand relative to directory '${l}'`:"no directory for search for local subcommand, use .executableDir() to supply a custom directory";const i=`'${h}' does not exist\n - if '${t._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead\n - if the default executable name is not suitable, use the executableFile option to supply a custom name or path\n - ${e}`;throw new Error(i)}else if(e.code==="EACCES"){throw new Error(`'${h}' not executable`)}if(!p){a.exit(1)}else{const t=new u(1,"commander.executeSubCommandAsync","(error)");t.nestedError=e;p(t)}}));this.runningCommand=c}_dispatchSubcommand(t,e,i){const n=this._findCommand(t);if(!n)this.help({error:true});let s;s=this._chainOrCallSubCommandHook(s,n,"preSubcommand");s=this._chainOrCall(s,(()=>{if(n._executableHandler){this._executeSubCommand(n,e.concat(i))}else{return n._parseCommand(e,i)}}));return s}_dispatchHelpCommand(t){if(!t){this.help()}const e=this._findCommand(t);if(e&&!e._executableHandler){e.help()}return this._dispatchSubcommand(t,[],[this._getHelpOption()?.long??this._getHelpOption()?.short??"--help"])}_checkNumberOfArguments(){this.registeredArguments.forEach(((t,e)=>{if(t.required&&this.args[e]==null){this.missingArgument(t.name())}}));if(this.registeredArguments.length>0&&this.registeredArguments[this.registeredArguments.length-1].variadic){return}if(this.args.length>this.registeredArguments.length){this._excessArguments(this.args)}}_processArguments(){const myParseArg=(t,e,i)=>{let n=e;if(e!==null&&t.parseArg){const s=`error: command-argument value '${e}' is invalid for argument '${t.name()}'.`;n=this._callParseArg(t,e,i,s)}return n};this._checkNumberOfArguments();const t=[];this.registeredArguments.forEach(((e,i)=>{let n=e.defaultValue;if(e.variadic){if(i<this.args.length){n=this.args.slice(i);if(e.parseArg){n=n.reduce(((t,i)=>myParseArg(e,i,t)),e.defaultValue)}}else if(n===undefined){n=[]}}else if(i<this.args.length){n=this.args[i];if(e.parseArg){n=myParseArg(e,n,e.defaultValue)}}t[i]=n}));this.processedArgs=t}_chainOrCall(t,e){if(t&&t.then&&typeof t.then==="function"){return t.then((()=>e()))}return e()}_chainOrCallHooks(t,e){let i=t;const n=[];this._getCommandAndAncestors().reverse().filter((t=>t._lifeCycleHooks[e]!==undefined)).forEach((t=>{t._lifeCycleHooks[e].forEach((e=>{n.push({hookedCommand:t,callback:e})}))}));if(e==="postAction"){n.reverse()}n.forEach((t=>{i=this._chainOrCall(i,(()=>t.callback(t.hookedCommand,this)))}));return i}_chainOrCallSubCommandHook(t,e,i){let n=t;if(this._lifeCycleHooks[i]!==undefined){this._lifeCycleHooks[i].forEach((t=>{n=this._chainOrCall(n,(()=>t(this,e)))}))}return n}_parseCommand(t,e){const i=this.parseOptions(e);this._parseOptionsEnv();this._parseOptionsImplied();t=t.concat(i.operands);e=i.unknown;this.args=t.concat(e);if(t&&this._findCommand(t[0])){return this._dispatchSubcommand(t[0],t.slice(1),e)}if(this._getHelpCommand()&&t[0]===this._getHelpCommand().name()){return this._dispatchHelpCommand(t[1])}if(this._defaultCommandName){this._outputHelpIfRequested(e);return this._dispatchSubcommand(this._defaultCommandName,t,e)}if(this.commands.length&&this.args.length===0&&!this._actionHandler&&!this._defaultCommandName){this.help({error:true})}this._outputHelpIfRequested(i.unknown);this._checkForMissingMandatoryOptions();this._checkForConflictingOptions();const checkForUnknownOptions=()=>{if(i.unknown.length>0){this.unknownOption(i.unknown[0])}};const n=`command:${this.name()}`;if(this._actionHandler){checkForUnknownOptions();this._processArguments();let i;i=this._chainOrCallHooks(i,"preAction");i=this._chainOrCall(i,(()=>this._actionHandler(this.processedArgs)));if(this.parent){i=this._chainOrCall(i,(()=>{this.parent.emit(n,t,e)}))}i=this._chainOrCallHooks(i,"postAction");return i}if(this.parent&&this.parent.listenerCount(n)){checkForUnknownOptions();this._processArguments();this.parent.emit(n,t,e)}else if(t.length){if(this._findCommand("*")){return this._dispatchSubcommand("*",t,e)}if(this.listenerCount("command:*")){this.emit("command:*",t,e)}else if(this.commands.length){this.unknownCommand()}else{checkForUnknownOptions();this._processArguments()}}else if(this.commands.length){checkForUnknownOptions();this.help({error:true})}else{checkForUnknownOptions();this._processArguments()}}_findCommand(t){if(!t)return undefined;return this.commands.find((e=>e._name===t||e._aliases.includes(t)))}_findOption(t){return this.options.find((e=>e.is(t)))}_checkForMissingMandatoryOptions(){this._getCommandAndAncestors().forEach((t=>{t.options.forEach((e=>{if(e.mandatory&&t.getOptionValue(e.attributeName())===undefined){t.missingMandatoryOptionValue(e)}}))}))}_checkForConflictingLocalOptions(){const t=this.options.filter((t=>{const e=t.attributeName();if(this.getOptionValue(e)===undefined){return false}return this.getOptionValueSource(e)!=="default"}));const e=t.filter((t=>t.conflictsWith.length>0));e.forEach((e=>{const i=t.find((t=>e.conflictsWith.includes(t.attributeName())));if(i){this._conflictingOption(e,i)}}))}_checkForConflictingOptions(){this._getCommandAndAncestors().forEach((t=>{t._checkForConflictingLocalOptions()}))}parseOptions(t){const e=[];const i=[];let n=e;const s=t.slice();function maybeOption(t){return t.length>1&&t[0]==="-"}let r=null;while(s.length){const t=s.shift();if(t==="--"){if(n===i)n.push(t);n.push(...s);break}if(r&&!maybeOption(t)){this.emit(`option:${r.name()}`,t);continue}r=null;if(maybeOption(t)){const e=this._findOption(t);if(e){if(e.required){const t=s.shift();if(t===undefined)this.optionMissingArgument(e);this.emit(`option:${e.name()}`,t)}else if(e.optional){let t=null;if(s.length>0&&!maybeOption(s[0])){t=s.shift()}this.emit(`option:${e.name()}`,t)}else{this.emit(`option:${e.name()}`)}r=e.variadic?e:null;continue}}if(t.length>2&&t[0]==="-"&&t[1]!=="-"){const e=this._findOption(`-${t[1]}`);if(e){if(e.required||e.optional&&this._combineFlagAndOptionalValue){this.emit(`option:${e.name()}`,t.slice(2))}else{this.emit(`option:${e.name()}`);s.unshift(`-${t.slice(2)}`)}continue}}if(/^--[^=]+=/.test(t)){const e=t.indexOf("=");const i=this._findOption(t.slice(0,e));if(i&&(i.required||i.optional)){this.emit(`option:${i.name()}`,t.slice(e+1));continue}}if(maybeOption(t)){n=i}if((this._enablePositionalOptions||this._passThroughOptions)&&e.length===0&&i.length===0){if(this._findCommand(t)){e.push(t);if(s.length>0)i.push(...s);break}else if(this._getHelpCommand()&&t===this._getHelpCommand().name()){e.push(t);if(s.length>0)e.push(...s);break}else if(this._defaultCommandName){i.push(t);if(s.length>0)i.push(...s);break}}if(this._passThroughOptions){n.push(t);if(s.length>0)n.push(...s);break}n.push(t)}return{operands:e,unknown:i}}opts(){if(this._storeOptionsAsProperties){const t={};const e=this.options.length;for(let i=0;i<e;i++){const e=this.options[i].attributeName();t[e]=e===this._versionOptionName?this._version:this[e]}return t}return this._optionValues}optsWithGlobals(){return this._getCommandAndAncestors().reduce(((t,e)=>Object.assign(t,e.opts())),{})}error(t,e){this._outputConfiguration.outputError(`${t}\n`,this._outputConfiguration.writeErr);if(typeof this._showHelpAfterError==="string"){this._outputConfiguration.writeErr(`${this._showHelpAfterError}\n`)}else if(this._showHelpAfterError){this._outputConfiguration.writeErr("\n");this.outputHelp({error:true})}const i=e||{};const n=i.exitCode||1;const s=i.code||"commander.error";this._exit(n,s,t)}_parseOptionsEnv(){this.options.forEach((t=>{if(t.envVar&&t.envVar in a.env){const e=t.attributeName();if(this.getOptionValue(e)===undefined||["default","config","env"].includes(this.getOptionValueSource(e))){if(t.required||t.optional){this.emit(`optionEnv:${t.name()}`,a.env[t.envVar])}else{this.emit(`optionEnv:${t.name()}`)}}}}))}_parseOptionsImplied(){const t=new d(this.options);const hasCustomOptionValue=t=>this.getOptionValue(t)!==undefined&&!["default","implied"].includes(this.getOptionValueSource(t));this.options.filter((e=>e.implied!==undefined&&hasCustomOptionValue(e.attributeName())&&t.valueFromOption(this.getOptionValue(e.attributeName()),e))).forEach((t=>{Object.keys(t.implied).filter((t=>!hasCustomOptionValue(t))).forEach((e=>{this.setOptionValueWithSource(e,t.implied[e],"implied")}))}))}missingArgument(t){const e=`error: missing required argument '${t}'`;this.error(e,{code:"commander.missingArgument"})}optionMissingArgument(t){const e=`error: option '${t.flags}' argument missing`;this.error(e,{code:"commander.optionMissingArgument"})}missingMandatoryOptionValue(t){const e=`error: required option '${t.flags}' not specified`;this.error(e,{code:"commander.missingMandatoryOptionValue"})}_conflictingOption(t,e){const findBestOptionFromValue=t=>{const e=t.attributeName();const i=this.getOptionValue(e);const n=this.options.find((t=>t.negate&&e===t.attributeName()));const s=this.options.find((t=>!t.negate&&e===t.attributeName()));if(n&&(n.presetArg===undefined&&i===false||n.presetArg!==undefined&&i===n.presetArg)){return n}return s||t};const getErrorMessage=t=>{const e=findBestOptionFromValue(t);const i=e.attributeName();const n=this.getOptionValueSource(i);if(n==="env"){return`environment variable '${e.envVar}'`}return`option '${e.flags}'`};const i=`error: ${getErrorMessage(t)} cannot be used with ${getErrorMessage(e)}`;this.error(i,{code:"commander.conflictingOption"})}unknownOption(t){if(this._allowUnknownOption)return;let e="";if(t.startsWith("--")&&this._showSuggestionAfterError){let i=[];let n=this;do{const t=n.createHelp().visibleOptions(n).filter((t=>t.long)).map((t=>t.long));i=i.concat(t);n=n.parent}while(n&&!n._enablePositionalOptions);e=m(t,i)}const i=`error: unknown option '${t}'${e}`;this.error(i,{code:"commander.unknownOption"})}_excessArguments(t){if(this._allowExcessArguments)return;const e=this.registeredArguments.length;const i=e===1?"":"s";const n=this.parent?` for '${this.name()}'`:"";const s=`error: too many arguments${n}. Expected ${e} argument${i} but got ${t.length}.`;this.error(s,{code:"commander.excessArguments"})}unknownCommand(){const t=this.args[0];let e="";if(this._showSuggestionAfterError){const i=[];this.createHelp().visibleCommands(this).forEach((t=>{i.push(t.name());if(t.alias())i.push(t.alias())}));e=m(t,i)}const i=`error: unknown command '${t}'${e}`;this.error(i,{code:"commander.unknownCommand"})}version(t,e,i){if(t===undefined)return this._version;this._version=t;e=e||"-V, --version";i=i||"output the version number";const n=this.createOption(e,i);this._versionOptionName=n.attributeName();this._registerOption(n);this.on("option:"+n.name(),(()=>{this._outputConfiguration.writeOut(`${t}\n`);this._exit(0,"commander.version",t)}));return this}description(t,e){if(t===undefined&&e===undefined)return this._description;this._description=t;if(e){this._argsDescription=e}return this}summary(t){if(t===undefined)return this._summary;this._summary=t;return this}alias(t){if(t===undefined)return this._aliases[0];let e=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler){e=this.commands[this.commands.length-1]}if(t===e._name)throw new Error("Command alias can't be the same as its name");const i=this.parent?._findCommand(t);if(i){const e=[i.name()].concat(i.aliases()).join("|");throw new Error(`cannot add alias '${t}' to command '${this.name()}' as already have command '${e}'`)}e._aliases.push(t);return this}aliases(t){if(t===undefined)return this._aliases;t.forEach((t=>this.alias(t)));return this}usage(t){if(t===undefined){if(this._usage)return this._usage;const t=this.registeredArguments.map((t=>l(t)));return[].concat(this.options.length||this._helpOption!==null?"[options]":[],this.commands.length?"[command]":[],this.registeredArguments.length?t:[]).join(" ")}this._usage=t;return this}name(t){if(t===undefined)return this._name;this._name=t;return this}nameFromFilename(t){this._name=r.basename(t,r.extname(t));return this}executableDir(t){if(t===undefined)return this._executableDir;this._executableDir=t;return this}helpInformation(t){const e=this.createHelp();if(e.helpWidth===undefined){e.helpWidth=t&&t.error?this._outputConfiguration.getErrHelpWidth():this._outputConfiguration.getOutHelpWidth()}return e.formatHelp(this,e)}_getHelpContext(t){t=t||{};const e={error:!!t.error};let i;if(e.error){i=t=>this._outputConfiguration.writeErr(t)}else{i=t=>this._outputConfiguration.writeOut(t)}e.write=t.write||i;e.command=this;return e}outputHelp(t){let e;if(typeof t==="function"){e=t;t=undefined}const i=this._getHelpContext(t);this._getCommandAndAncestors().reverse().forEach((t=>t.emit("beforeAllHelp",i)));this.emit("beforeHelp",i);let n=this.helpInformation(i);if(e){n=e(n);if(typeof n!=="string"&&!Buffer.isBuffer(n)){throw new Error("outputHelp callback must return a string or a Buffer")}}i.write(n);if(this._getHelpOption()?.long){this.emit(this._getHelpOption().long)}this.emit("afterHelp",i);this._getCommandAndAncestors().forEach((t=>t.emit("afterAllHelp",i)))}helpOption(t,e){if(typeof t==="boolean"){if(t){this._helpOption=this._helpOption??undefined}else{this._helpOption=null}return this}t=t??"-h, --help";e=e??"display help for command";this._helpOption=this.createOption(t,e);return this}_getHelpOption(){if(this._helpOption===undefined){this.helpOption(undefined,undefined)}return this._helpOption}addHelpOption(t){this._helpOption=t;return this}help(t){this.outputHelp(t);let e=a.exitCode||0;if(e===0&&t&&typeof t!=="function"&&t.error){e=1}this._exit(e,"commander.help","(outputHelp)")}addHelpText(t,e){const i=["beforeAll","before","after","afterAll"];if(!i.includes(t)){throw new Error(`Unexpected value for position to addHelpText.\nExpecting one of '${i.join("', '")}'`)}const n=`${t}Help`;this.on(n,(t=>{let i;if(typeof e==="function"){i=e({error:t.error,command:t.command})}else{i=e}if(i){t.write(`${i}\n`)}}));return this}_outputHelpIfRequested(t){const e=this._getHelpOption();const i=e&&t.find((t=>e.is(t)));if(i){this.outputHelp();this._exit(0,"commander.helpDisplayed","(outputHelp)")}}}function incrementNodeInspectorPort(t){return t.map((t=>{if(!t.startsWith("--inspect")){return t}let e;let i="127.0.0.1";let n="9229";let s;if((s=t.match(/^(--inspect(-brk)?)$/))!==null){e=s[1]}else if((s=t.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null){e=s[1];if(/^\d+$/.test(s[3])){n=s[3]}else{i=s[3]}}else if((s=t.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null){e=s[1];i=s[3];n=s[4]}if(e&&n!=="0"){return`${e}=${i}:${parseInt(n)+1}`}return t}))}e.Command=Command},841:function(t,e){class CommanderError extends Error{constructor(t,e,i){super(i);Error.captureStackTrace(this,this.constructor);this.name=this.constructor.name;this.code=e;this.exitCode=t;this.nestedError=undefined}}class InvalidArgumentError extends CommanderError{constructor(t){super(1,"commander.invalidArgument",t);Error.captureStackTrace(this,this.constructor);this.name=this.constructor.name}}e.CommanderError=CommanderError;e.InvalidArgumentError=InvalidArgumentError},202:function(t,e,i){const{humanReadableArgName:n}=i(142);class Help{constructor(){this.helpWidth=undefined;this.sortSubcommands=false;this.sortOptions=false;this.showGlobalOptions=false}visibleCommands(t){const e=t.commands.filter((t=>!t._hidden));const i=t._getHelpCommand();if(i&&!i._hidden){e.push(i)}if(this.sortSubcommands){e.sort(((t,e)=>t.name().localeCompare(e.name())))}return e}compareOptions(t,e){const getSortKey=t=>t.short?t.short.replace(/^-/,""):t.long.replace(/^--/,"");return getSortKey(t).localeCompare(getSortKey(e))}visibleOptions(t){const e=t.options.filter((t=>!t.hidden));const i=t._getHelpOption();if(i&&!i.hidden){const n=i.short&&t._findOption(i.short);const s=i.long&&t._findOption(i.long);if(!n&&!s){e.push(i)}else if(i.long&&!s){e.push(t.createOption(i.long,i.description))}else if(i.short&&!n){e.push(t.createOption(i.short,i.description))}}if(this.sortOptions){e.sort(this.compareOptions)}return e}visibleGlobalOptions(t){if(!this.showGlobalOptions)return[];const e=[];for(let i=t.parent;i;i=i.parent){const t=i.options.filter((t=>!t.hidden));e.push(...t)}if(this.sortOptions){e.sort(this.compareOptions)}return e}visibleArguments(t){if(t._argsDescription){t.registeredArguments.forEach((e=>{e.description=e.description||t._argsDescription[e.name()]||""}))}if(t.registeredArguments.find((t=>t.description))){return t.registeredArguments}return[]}subcommandTerm(t){const e=t.registeredArguments.map((t=>n(t))).join(" ");return t._name+(t._aliases[0]?"|"+t._aliases[0]:"")+(t.options.length?" [options]":"")+(e?" "+e:"")}optionTerm(t){return t.flags}argumentTerm(t){return t.name()}longestSubcommandTermLength(t,e){return e.visibleCommands(t).reduce(((t,i)=>Math.max(t,e.subcommandTerm(i).length)),0)}longestOptionTermLength(t,e){return e.visibleOptions(t).reduce(((t,i)=>Math.max(t,e.optionTerm(i).length)),0)}longestGlobalOptionTermLength(t,e){return e.visibleGlobalOptions(t).reduce(((t,i)=>Math.max(t,e.optionTerm(i).length)),0)}longestArgumentTermLength(t,e){return e.visibleArguments(t).reduce(((t,i)=>Math.max(t,e.argumentTerm(i).length)),0)}commandUsage(t){let e=t._name;if(t._aliases[0]){e=e+"|"+t._aliases[0]}let i="";for(let e=t.parent;e;e=e.parent){i=e.name()+" "+i}return i+e+" "+t.usage()}commandDescription(t){return t.description()}subcommandDescription(t){return t.summary()||t.description()}optionDescription(t){const e=[];if(t.argChoices){e.push(`choices: ${t.argChoices.map((t=>JSON.stringify(t))).join(", ")}`)}if(t.defaultValue!==undefined){const i=t.required||t.optional||t.isBoolean()&&typeof t.defaultValue==="boolean";if(i){e.push(`default: ${t.defaultValueDescription||JSON.stringify(t.defaultValue)}`)}}if(t.presetArg!==undefined&&t.optional){e.push(`preset: ${JSON.stringify(t.presetArg)}`)}if(t.envVar!==undefined){e.push(`env: ${t.envVar}`)}if(e.length>0){return`${t.description} (${e.join(", ")})`}return t.description}argumentDescription(t){const e=[];if(t.argChoices){e.push(`choices: ${t.argChoices.map((t=>JSON.stringify(t))).join(", ")}`)}if(t.defaultValue!==undefined){e.push(`default: ${t.defaultValueDescription||JSON.stringify(t.defaultValue)}`)}if(e.length>0){const i=`(${e.join(", ")})`;if(t.description){return`${t.description} ${i}`}return i}return t.description}formatHelp(t,e){const i=e.padWidth(t,e);const n=e.helpWidth||80;const s=2;const r=2;function formatItem(t,o){if(o){const a=`${t.padEnd(i+r)}${o}`;return e.wrap(a,n-s,i+r)}return t}function formatList(t){return t.join("\n").replace(/^/gm," ".repeat(s))}let o=[`Usage: ${e.commandUsage(t)}`,""];const a=e.commandDescription(t);if(a.length>0){o=o.concat([e.wrap(a,n,0),""])}const h=e.visibleArguments(t).map((t=>formatItem(e.argumentTerm(t),e.argumentDescription(t))));if(h.length>0){o=o.concat(["Arguments:",formatList(h),""])}const l=e.visibleOptions(t).map((t=>formatItem(e.optionTerm(t),e.optionDescription(t))));if(l.length>0){o=o.concat(["Options:",formatList(l),""])}if(this.showGlobalOptions){const i=e.visibleGlobalOptions(t).map((t=>formatItem(e.optionTerm(t),e.optionDescription(t))));if(i.length>0){o=o.concat(["Global Options:",formatList(i),""])}}const u=e.visibleCommands(t).map((t=>formatItem(e.subcommandTerm(t),e.subcommandDescription(t))));if(u.length>0){o=o.concat(["Commands:",formatList(u),""])}return o.join("\n")}padWidth(t,e){return Math.max(e.longestOptionTermLength(t,e),e.longestGlobalOptionTermLength(t,e),e.longestSubcommandTermLength(t,e),e.longestArgumentTermLength(t,e))}wrap(t,e,i,n=40){const s=" \\f\\t\\v   -    \ufeff";const r=new RegExp(`[\\n][${s}]+`);if(t.match(r))return t;const o=e-i;if(o<n)return t;const a=t.slice(0,i);const h=t.slice(i).replace("\r\n","\n");const l=" ".repeat(i);const u="​";const c=`\\s${u}`;const p=new RegExp(`\n|.{1,${o-1}}([${c}]|$)|[^${c}]+?([${c}]|$)`,"g");const d=h.match(p)||[];return a+d.map(((t,e)=>{if(t==="\n")return"";return(e>0?l:"")+t.trimEnd()})).join("\n")}}e.Help=Help},257:function(t,e,i){const{InvalidArgumentError:n}=i(841);class Option{constructor(t,e){this.flags=t;this.description=e||"";this.required=t.includes("<");this.optional=t.includes("[");this.variadic=/\w\.\.\.[>\]]$/.test(t);this.mandatory=false;const i=splitOptionFlags(t);this.short=i.shortFlag;this.long=i.longFlag;this.negate=false;if(this.long){this.negate=this.long.startsWith("--no-")}this.defaultValue=undefined;this.defaultValueDescription=undefined;this.presetArg=undefined;this.envVar=undefined;this.parseArg=undefined;this.hidden=false;this.argChoices=undefined;this.conflictsWith=[];this.implied=undefined}default(t,e){this.defaultValue=t;this.defaultValueDescription=e;return this}preset(t){this.presetArg=t;return this}conflicts(t){this.conflictsWith=this.conflictsWith.concat(t);return this}implies(t){let e=t;if(typeof t==="string"){e={[t]:true}}this.implied=Object.assign(this.implied||{},e);return this}env(t){this.envVar=t;return this}argParser(t){this.parseArg=t;return this}makeOptionMandatory(t=true){this.mandatory=!!t;return this}hideHelp(t=true){this.hidden=!!t;return this}_concatValue(t,e){if(e===this.defaultValue||!Array.isArray(e)){return[t]}return e.concat(t)}choices(t){this.argChoices=t.slice();this.parseArg=(t,e)=>{if(!this.argChoices.includes(t)){throw new n(`Allowed choices are ${this.argChoices.join(", ")}.`)}if(this.variadic){return this._concatValue(t,e)}return t};return this}name(){if(this.long){return this.long.replace(/^--/,"")}return this.short.replace(/^-/,"")}attributeName(){return camelcase(this.name().replace(/^no-/,""))}is(t){return this.short===t||this.long===t}isBoolean(){return!this.required&&!this.optional&&!this.negate}}class DualOptions{constructor(t){this.positiveOptions=new Map;this.negativeOptions=new Map;this.dualOptions=new Set;t.forEach((t=>{if(t.negate){this.negativeOptions.set(t.attributeName(),t)}else{this.positiveOptions.set(t.attributeName(),t)}}));this.negativeOptions.forEach(((t,e)=>{if(this.positiveOptions.has(e)){this.dualOptions.add(e)}}))}valueFromOption(t,e){const i=e.attributeName();if(!this.dualOptions.has(i))return true;const n=this.negativeOptions.get(i).presetArg;const s=n!==undefined?n:false;return e.negate===(s===t)}}function camelcase(t){return t.split("-").reduce(((t,e)=>t+e[0].toUpperCase()+e.slice(1)))}function splitOptionFlags(t){let e;let i;const n=t.split(/[ |,]+/);if(n.length>1&&!/^[[<]/.test(n[1]))e=n.shift();i=n.shift();if(!e&&/^-[^-]$/.test(i)){e=i;i=undefined}return{shortFlag:e,longFlag:i}}e.Option=Option;e.DualOptions=DualOptions},824:function(t,e){const i=3;function editDistance(t,e){if(Math.abs(t.length-e.length)>i)return Math.max(t.length,e.length);const n=[];for(let e=0;e<=t.length;e++){n[e]=[e]}for(let t=0;t<=e.length;t++){n[0][t]=t}for(let i=1;i<=e.length;i++){for(let s=1;s<=t.length;s++){let r=1;if(t[s-1]===e[i-1]){r=0}else{r=1}n[s][i]=Math.min(n[s-1][i]+1,n[s][i-1]+1,n[s-1][i-1]+r);if(s>1&&i>1&&t[s-1]===e[i-2]&&t[s-2]===e[i-1]){n[s][i]=Math.min(n[s][i],n[s-2][i-2]+1)}}}return n[t.length][e.length]}function suggestSimilar(t,e){if(!e||e.length===0)return"";e=Array.from(new Set(e));const n=t.startsWith("--");if(n){t=t.slice(2);e=e.map((t=>t.slice(2)))}let s=[];let r=i;const o=.4;e.forEach((e=>{if(e.length<=1)return;const i=editDistance(t,e);const n=Math.max(t.length,e.length);const a=(n-i)/n;if(a>o){if(i<r){r=i;s=[e]}else if(i===r){s.push(e)}}}));s.sort(((t,e)=>t.localeCompare(e)));if(n){s=s.map((t=>`--${t}`))}if(s.length>1){return`\n(Did you mean one of ${s.join(", ")}?)`}if(s.length===1){return`\n(Did you mean ${s[0]}?)`}return""}e.suggestSimilar=suggestSimilar}};var e={};function __nccwpck_require__(i){var n=e[i];if(n!==undefined){return n.exports}var s=e[i]={exports:{}};var r=true;try{t[i](s,s.exports,__nccwpck_require__);r=false}finally{if(r)delete e[i]}return s.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var i={};!function(){var t=i;const{Argument:e}=__nccwpck_require__(142);const{Command:n}=__nccwpck_require__(728);const{CommanderError:s,InvalidArgumentError:r}=__nccwpck_require__(841);const{Help:o}=__nccwpck_require__(202);const{Option:a}=__nccwpck_require__(257);t.program=new n;t.createCommand=t=>new n(t);t.createOption=(t,e)=>new a(t,e);t.createArgument=(t,i)=>new e(t,i);t.Command=n;t.Option=a;t.Argument=e;t.Help=o;t.CommanderError=s;t.InvalidArgumentError=r;t.InvalidOptionArgumentError=r}();module.exports=i})();
@@ -0,0 +1 @@
1
+ {"name":"commander","version":"12.1.0","author":"TJ Holowaychuk <tj@vision-media.ca>","license":"MIT","_lastModified":"2025-06-05T07:08:22.152Z"}
@@ -0,0 +1,148 @@
1
+ /** same as JSON_SCHEMA: http://www.yaml.org/spec/1.2/spec.html#id2804923 */
2
+ export declare let CORE_SCHEMA: Schema;
3
+
4
+ /** all supported YAML types */
5
+ export declare let DEFAULT_SCHEMA: Schema;
6
+
7
+ export declare function dump(obj: any, opts?: DumpOptions): string;
8
+
9
+ export declare interface DumpOptions {
10
+ /** indentation width to use (in spaces). */
11
+ indent?: number | undefined;
12
+ /** when true, will not add an indentation level to array elements */
13
+ noArrayIndent?: boolean | undefined;
14
+ /** do not throw on invalid types (like function in the safe schema) and skip pairs and single values with such types. */
15
+ skipInvalid?: boolean | undefined;
16
+ /** specifies level of nesting, when to switch from block to flow style for collections. -1 means block style everwhere */
17
+ flowLevel?: number | undefined;
18
+ /** Each tag may have own set of styles. - "tag" => "style" map. */
19
+ styles?: { [x: string]: any } | undefined;
20
+ /** specifies a schema to use. */
21
+ schema?: Schema | undefined;
22
+ /** if true, sort keys when dumping YAML. If a function, use the function to sort the keys. (default: false) */
23
+ sortKeys?: boolean | ((a: any, b: any) => number) | undefined;
24
+ /** set max line width. (default: 80) */
25
+ lineWidth?: number | undefined;
26
+ /** if true, don't convert duplicate objects into references (default: false) */
27
+ noRefs?: boolean | undefined;
28
+ /** if true don't try to be compatible with older yaml versions. Currently: don't quote "yes", "no" and so on, as required for YAML 1.1 (default: false) */
29
+ noCompatMode?: boolean | undefined;
30
+ /**
31
+ * if true flow sequences will be condensed, omitting the space between `key: value` or `a, b`. Eg. `'[a,b]'` or `{a:{b:c}}`.
32
+ * Can be useful when using yaml for pretty URL query params as spaces are %-encoded. (default: false).
33
+ */
34
+ condenseFlow?: boolean | undefined;
35
+ /** strings will be quoted using this quoting style. If you specify single quotes, double quotes will still be used for non-printable characters. (default: `'`) */
36
+ quotingType?: "'" | "\"" | undefined;
37
+ /** if true, all non-key strings will be quoted even if they normally don't need to. (default: false) */
38
+ forceQuotes?: boolean | undefined;
39
+ /** callback `function (key, value)` called recursively on each key/value in source object (see `replacer` docs for `JSON.stringify`). */
40
+ replacer?: ((key: string, value: any) => any) | undefined;
41
+ }
42
+
43
+ export declare type EventType = "open" | "close";
44
+
45
+ /** only strings, arrays and plain objects: http://www.yaml.org/spec/1.2/spec.html#id2802346 */
46
+ export declare let FAILSAFE_SCHEMA: Schema;
47
+
48
+ /** only strings, arrays and plain objects: http://www.yaml.org/spec/1.2/spec.html#id2802346 */
49
+ export declare let JSON_SCHEMA: Schema;
50
+
51
+ export declare function load(str: string, opts?: LoadOptions): unknown;
52
+
53
+ export declare function loadAll(str: string, iterator?: null, opts?: LoadOptions): unknown[];
54
+
55
+ export declare function loadAll(str: string, iterator: (doc: unknown) => void, opts?: LoadOptions): void;
56
+
57
+ export declare interface LoadOptions {
58
+ /** string to be used as a file path in error/warning messages. */
59
+ filename?: string | undefined;
60
+ /** function to call on warning messages. */
61
+ onWarning?(this: null, e: YAMLException): void;
62
+ /** specifies a schema to use. */
63
+ schema?: Schema | undefined;
64
+ /** compatibility with JSON.parse behaviour. */
65
+ json?: boolean | undefined;
66
+ /** listener for parse events */
67
+ listener?(this: State, eventType: EventType, state: State): void;
68
+ }
69
+
70
+ export declare interface Mark {
71
+ buffer: string;
72
+ column: number;
73
+ line: number;
74
+ name: string;
75
+ position: number;
76
+ snippet: string;
77
+ }
78
+
79
+ export declare class Schema {
80
+ constructor(definition: SchemaDefinition | Type[] | Type);
81
+ extend(types: SchemaDefinition | Type[] | Type): Schema;
82
+ }
83
+
84
+ export declare interface SchemaDefinition {
85
+ implicit?: Type[] | undefined;
86
+ explicit?: Type[] | undefined;
87
+ }
88
+
89
+ export declare interface State {
90
+ input: string;
91
+ filename: string | null;
92
+ schema: Schema;
93
+ onWarning: (this: null, e: YAMLException) => void;
94
+ json: boolean;
95
+ length: number;
96
+ position: number;
97
+ line: number;
98
+ lineStart: number;
99
+ lineIndent: number;
100
+ version: null | number;
101
+ checkLineBreaks: boolean;
102
+ kind: string;
103
+ result: any;
104
+ implicitTypes: Type[];
105
+ }
106
+
107
+ export declare class Type {
108
+ constructor(tag: string, opts?: TypeConstructorOptions);
109
+ kind: "sequence" | "scalar" | "mapping" | null;
110
+ resolve(data: any): boolean;
111
+ construct(data: any, type?: string): any;
112
+ instanceOf: object | null;
113
+ predicate: ((data: object) => boolean) | null;
114
+ represent: ((data: object) => any) | { [x: string]: (data: object) => any } | null;
115
+ representName: ((data: object) => any) | null;
116
+ defaultStyle: string | null;
117
+ multi: boolean;
118
+ styleAliases: { [x: string]: any };
119
+ }
120
+
121
+ export declare interface TypeConstructorOptions {
122
+ kind?: "sequence" | "scalar" | "mapping" | undefined;
123
+ resolve?: ((data: any) => boolean) | undefined;
124
+ construct?: ((data: any, type?: string) => any) | undefined;
125
+ instanceOf?: object | undefined;
126
+ predicate?: ((data: object) => boolean) | undefined;
127
+ represent?: ((data: object) => any) | { [x: string]: (data: object) => any } | undefined;
128
+ representName?: ((data: object) => any) | undefined;
129
+ defaultStyle?: string | undefined;
130
+ multi?: boolean | undefined;
131
+ styleAliases?: { [x: string]: any } | undefined;
132
+ }
133
+
134
+ export declare class YAMLException extends Error {
135
+ constructor(reason?: string, mark?: Mark);
136
+
137
+ toString(compact?: boolean): string;
138
+
139
+ name: string;
140
+
141
+ reason: string;
142
+
143
+ message: string;
144
+
145
+ mark: Mark;
146
+ }
147
+
148
+ export { }
@@ -0,0 +1 @@
1
+ (function(){"use strict";var e={509:function(e,t,r){var n=r(756);var i=r(818);function renamed(e,t){return function(){throw new Error("Function yaml."+e+" is removed in js-yaml 4. "+"Use yaml."+t+" instead, which is now safe by default.")}}e.exports.Type=r(498);e.exports.Schema=r(915);e.exports.FAILSAFE_SCHEMA=r(9);e.exports.JSON_SCHEMA=r(854);e.exports.CORE_SCHEMA=r(645);e.exports.DEFAULT_SCHEMA=r(518);e.exports.load=n.load;e.exports.loadAll=n.loadAll;e.exports.dump=i.dump;e.exports.YAMLException=r(574);e.exports.types={binary:r(385),float:r(650),map:r(671),null:r(336),pairs:r(886),set:r(938),timestamp:r(413),bool:r(568),int:r(222),merge:r(690),omap:r(590),seq:r(369),str:r(299)};e.exports.safeLoad=renamed("safeLoad","load");e.exports.safeLoadAll=renamed("safeLoadAll","loadAll");e.exports.safeDump=renamed("safeDump","dump")},234:function(e){function isNothing(e){return typeof e==="undefined"||e===null}function isObject(e){return typeof e==="object"&&e!==null}function toArray(e){if(Array.isArray(e))return e;else if(isNothing(e))return[];return[e]}function extend(e,t){var r,n,i,o;if(t){o=Object.keys(t);for(r=0,n=o.length;r<n;r+=1){i=o[r];e[i]=t[i]}}return e}function repeat(e,t){var r="",n;for(n=0;n<t;n+=1){r+=e}return r}function isNegativeZero(e){return e===0&&Number.NEGATIVE_INFINITY===1/e}e.exports.isNothing=isNothing;e.exports.isObject=isObject;e.exports.toArray=toArray;e.exports.repeat=repeat;e.exports.isNegativeZero=isNegativeZero;e.exports.extend=extend},818:function(e,t,r){var n=r(234);var i=r(574);var o=r(518);var a=Object.prototype.toString;var l=Object.prototype.hasOwnProperty;var s=65279;var c=9;var u=10;var f=13;var p=32;var d=33;var h=34;var m=35;var g=37;var v=38;var w=39;var y=42;var S=44;var A=45;var b=58;var x=61;var k=62;var E=63;var _=64;var O=91;var C=93;var I=96;var L=123;var N=124;var T=125;var F={};F[0]="\\0";F[7]="\\a";F[8]="\\b";F[9]="\\t";F[10]="\\n";F[11]="\\v";F[12]="\\f";F[13]="\\r";F[27]="\\e";F[34]='\\"';F[92]="\\\\";F[133]="\\N";F[160]="\\_";F[8232]="\\L";F[8233]="\\P";var M=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"];var j=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function compileStyleMap(e,t){var r,n,i,o,a,s,c;if(t===null)return{};r={};n=Object.keys(t);for(i=0,o=n.length;i<o;i+=1){a=n[i];s=String(t[a]);if(a.slice(0,2)==="!!"){a="tag:yaml.org,2002:"+a.slice(2)}c=e.compiledTypeMap["fallback"][a];if(c&&l.call(c.styleAliases,s)){s=c.styleAliases[s]}r[a]=s}return r}function encodeHex(e){var t,r,o;t=e.toString(16).toUpperCase();if(e<=255){r="x";o=2}else if(e<=65535){r="u";o=4}else if(e<=4294967295){r="U";o=8}else{throw new i("code point within a string may not be greater than 0xFFFFFFFF")}return"\\"+r+n.repeat("0",o-t.length)+t}var Y=1,P=2;function State(e){this.schema=e["schema"]||o;this.indent=Math.max(1,e["indent"]||2);this.noArrayIndent=e["noArrayIndent"]||false;this.skipInvalid=e["skipInvalid"]||false;this.flowLevel=n.isNothing(e["flowLevel"])?-1:e["flowLevel"];this.styleMap=compileStyleMap(this.schema,e["styles"]||null);this.sortKeys=e["sortKeys"]||false;this.lineWidth=e["lineWidth"]||80;this.noRefs=e["noRefs"]||false;this.noCompatMode=e["noCompatMode"]||false;this.condenseFlow=e["condenseFlow"]||false;this.quotingType=e["quotingType"]==='"'?P:Y;this.forceQuotes=e["forceQuotes"]||false;this.replacer=typeof e["replacer"]==="function"?e["replacer"]:null;this.implicitTypes=this.schema.compiledImplicit;this.explicitTypes=this.schema.compiledExplicit;this.tag=null;this.result="";this.duplicates=[];this.usedDuplicates=null}function indentString(e,t){var r=n.repeat(" ",t),i=0,o=-1,a="",l,s=e.length;while(i<s){o=e.indexOf("\n",i);if(o===-1){l=e.slice(i);i=s}else{l=e.slice(i,o+1);i=o+1}if(l.length&&l!=="\n")a+=r;a+=l}return a}function generateNextLine(e,t){return"\n"+n.repeat(" ",e.indent*t)}function testImplicitResolving(e,t){var r,n,i;for(r=0,n=e.implicitTypes.length;r<n;r+=1){i=e.implicitTypes[r];if(i.resolve(t)){return true}}return false}function isWhitespace(e){return e===p||e===c}function isPrintable(e){return 32<=e&&e<=126||161<=e&&e<=55295&&e!==8232&&e!==8233||57344<=e&&e<=65533&&e!==s||65536<=e&&e<=1114111}function isNsCharOrWhitespace(e){return isPrintable(e)&&e!==s&&e!==f&&e!==u}function isPlainSafe(e,t,r){var n=isNsCharOrWhitespace(e);var i=n&&!isWhitespace(e);return(r?n:n&&e!==S&&e!==O&&e!==C&&e!==L&&e!==T)&&e!==m&&!(t===b&&!i)||isNsCharOrWhitespace(t)&&!isWhitespace(t)&&e===m||t===b&&i}function isPlainSafeFirst(e){return isPrintable(e)&&e!==s&&!isWhitespace(e)&&e!==A&&e!==E&&e!==b&&e!==S&&e!==O&&e!==C&&e!==L&&e!==T&&e!==m&&e!==v&&e!==y&&e!==d&&e!==N&&e!==x&&e!==k&&e!==w&&e!==h&&e!==g&&e!==_&&e!==I}function isPlainSafeLast(e){return!isWhitespace(e)&&e!==b}function codePointAt(e,t){var r=e.charCodeAt(t),n;if(r>=55296&&r<=56319&&t+1<e.length){n=e.charCodeAt(t+1);if(n>=56320&&n<=57343){return(r-55296)*1024+n-56320+65536}}return r}function needIndentIndicator(e){var t=/^\n* /;return t.test(e)}var W=1,D=2,B=3,R=4,q=5;function chooseScalarStyle(e,t,r,n,i,o,a,l){var s;var c=0;var f=null;var p=false;var d=false;var h=n!==-1;var m=-1;var g=isPlainSafeFirst(codePointAt(e,0))&&isPlainSafeLast(codePointAt(e,e.length-1));if(t||a){for(s=0;s<e.length;c>=65536?s+=2:s++){c=codePointAt(e,s);if(!isPrintable(c)){return q}g=g&&isPlainSafe(c,f,l);f=c}}else{for(s=0;s<e.length;c>=65536?s+=2:s++){c=codePointAt(e,s);if(c===u){p=true;if(h){d=d||s-m-1>n&&e[m+1]!==" ";m=s}}else if(!isPrintable(c)){return q}g=g&&isPlainSafe(c,f,l);f=c}d=d||h&&(s-m-1>n&&e[m+1]!==" ")}if(!p&&!d){if(g&&!a&&!i(e)){return W}return o===P?q:D}if(r>9&&needIndentIndicator(e)){return q}if(!a){return d?R:B}return o===P?q:D}function writeScalar(e,t,r,n,o){e.dump=function(){if(t.length===0){return e.quotingType===P?'""':"''"}if(!e.noCompatMode){if(M.indexOf(t)!==-1||j.test(t)){return e.quotingType===P?'"'+t+'"':"'"+t+"'"}}var a=e.indent*Math.max(1,r);var l=e.lineWidth===-1?-1:Math.max(Math.min(e.lineWidth,40),e.lineWidth-a);var s=n||e.flowLevel>-1&&r>=e.flowLevel;function testAmbiguity(t){return testImplicitResolving(e,t)}switch(chooseScalarStyle(t,s,e.indent,l,testAmbiguity,e.quotingType,e.forceQuotes&&!n,o)){case W:return t;case D:return"'"+t.replace(/'/g,"''")+"'";case B:return"|"+blockHeader(t,e.indent)+dropEndingNewline(indentString(t,a));case R:return">"+blockHeader(t,e.indent)+dropEndingNewline(indentString(foldString(t,l),a));case q:return'"'+escapeString(t,l)+'"';default:throw new i("impossible error: invalid scalar style")}}()}function blockHeader(e,t){var r=needIndentIndicator(e)?String(t):"";var n=e[e.length-1]==="\n";var i=n&&(e[e.length-2]==="\n"||e==="\n");var o=i?"+":n?"":"-";return r+o+"\n"}function dropEndingNewline(e){return e[e.length-1]==="\n"?e.slice(0,-1):e}function foldString(e,t){var r=/(\n+)([^\n]*)/g;var n=function(){var n=e.indexOf("\n");n=n!==-1?n:e.length;r.lastIndex=n;return foldLine(e.slice(0,n),t)}();var i=e[0]==="\n"||e[0]===" ";var o;var a;while(a=r.exec(e)){var l=a[1],s=a[2];o=s[0]===" ";n+=l+(!i&&!o&&s!==""?"\n":"")+foldLine(s,t);i=o}return n}function foldLine(e,t){if(e===""||e[0]===" ")return e;var r=/ [^ ]/g;var n;var i=0,o,a=0,l=0;var s="";while(n=r.exec(e)){l=n.index;if(l-i>t){o=a>i?a:l;s+="\n"+e.slice(i,o);i=o+1}a=l}s+="\n";if(e.length-i>t&&a>i){s+=e.slice(i,a)+"\n"+e.slice(a+1)}else{s+=e.slice(i)}return s.slice(1)}function escapeString(e){var t="";var r=0;var n;for(var i=0;i<e.length;r>=65536?i+=2:i++){r=codePointAt(e,i);n=F[r];if(!n&&isPrintable(r)){t+=e[i];if(r>=65536)t+=e[i+1]}else{t+=n||encodeHex(r)}}return t}function writeFlowSequence(e,t,r){var n="",i=e.tag,o,a,l;for(o=0,a=r.length;o<a;o+=1){l=r[o];if(e.replacer){l=e.replacer.call(r,String(o),l)}if(writeNode(e,t,l,false,false)||typeof l==="undefined"&&writeNode(e,t,null,false,false)){if(n!=="")n+=","+(!e.condenseFlow?" ":"");n+=e.dump}}e.tag=i;e.dump="["+n+"]"}function writeBlockSequence(e,t,r,n){var i="",o=e.tag,a,l,s;for(a=0,l=r.length;a<l;a+=1){s=r[a];if(e.replacer){s=e.replacer.call(r,String(a),s)}if(writeNode(e,t+1,s,true,true,false,true)||typeof s==="undefined"&&writeNode(e,t+1,null,true,true,false,true)){if(!n||i!==""){i+=generateNextLine(e,t)}if(e.dump&&u===e.dump.charCodeAt(0)){i+="-"}else{i+="- "}i+=e.dump}}e.tag=o;e.dump=i||"[]"}function writeFlowMapping(e,t,r){var n="",i=e.tag,o=Object.keys(r),a,l,s,c,u;for(a=0,l=o.length;a<l;a+=1){u="";if(n!=="")u+=", ";if(e.condenseFlow)u+='"';s=o[a];c=r[s];if(e.replacer){c=e.replacer.call(r,s,c)}if(!writeNode(e,t,s,false,false)){continue}if(e.dump.length>1024)u+="? ";u+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" ");if(!writeNode(e,t,c,false,false)){continue}u+=e.dump;n+=u}e.tag=i;e.dump="{"+n+"}"}function writeBlockMapping(e,t,r,n){var o="",a=e.tag,l=Object.keys(r),s,c,f,p,d,h;if(e.sortKeys===true){l.sort()}else if(typeof e.sortKeys==="function"){l.sort(e.sortKeys)}else if(e.sortKeys){throw new i("sortKeys must be a boolean or a function")}for(s=0,c=l.length;s<c;s+=1){h="";if(!n||o!==""){h+=generateNextLine(e,t)}f=l[s];p=r[f];if(e.replacer){p=e.replacer.call(r,f,p)}if(!writeNode(e,t+1,f,true,true,true)){continue}d=e.tag!==null&&e.tag!=="?"||e.dump&&e.dump.length>1024;if(d){if(e.dump&&u===e.dump.charCodeAt(0)){h+="?"}else{h+="? "}}h+=e.dump;if(d){h+=generateNextLine(e,t)}if(!writeNode(e,t+1,p,true,d)){continue}if(e.dump&&u===e.dump.charCodeAt(0)){h+=":"}else{h+=": "}h+=e.dump;o+=h}e.tag=a;e.dump=o||"{}"}function detectType(e,t,r){var n,o,s,c,u,f;o=r?e.explicitTypes:e.implicitTypes;for(s=0,c=o.length;s<c;s+=1){u=o[s];if((u.instanceOf||u.predicate)&&(!u.instanceOf||typeof t==="object"&&t instanceof u.instanceOf)&&(!u.predicate||u.predicate(t))){if(r){if(u.multi&&u.representName){e.tag=u.representName(t)}else{e.tag=u.tag}}else{e.tag="?"}if(u.represent){f=e.styleMap[u.tag]||u.defaultStyle;if(a.call(u.represent)==="[object Function]"){n=u.represent(t,f)}else if(l.call(u.represent,f)){n=u.represent[f](t,f)}else{throw new i("!<"+u.tag+'> tag resolver accepts not "'+f+'" style')}e.dump=n}return true}}return false}function writeNode(e,t,r,n,o,l,s){e.tag=null;e.dump=r;if(!detectType(e,r,false)){detectType(e,r,true)}var c=a.call(e.dump);var u=n;var f;if(n){n=e.flowLevel<0||e.flowLevel>t}var p=c==="[object Object]"||c==="[object Array]",d,h;if(p){d=e.duplicates.indexOf(r);h=d!==-1}if(e.tag!==null&&e.tag!=="?"||h||e.indent!==2&&t>0){o=false}if(h&&e.usedDuplicates[d]){e.dump="*ref_"+d}else{if(p&&h&&!e.usedDuplicates[d]){e.usedDuplicates[d]=true}if(c==="[object Object]"){if(n&&Object.keys(e.dump).length!==0){writeBlockMapping(e,t,e.dump,o);if(h){e.dump="&ref_"+d+e.dump}}else{writeFlowMapping(e,t,e.dump);if(h){e.dump="&ref_"+d+" "+e.dump}}}else if(c==="[object Array]"){if(n&&e.dump.length!==0){if(e.noArrayIndent&&!s&&t>0){writeBlockSequence(e,t-1,e.dump,o)}else{writeBlockSequence(e,t,e.dump,o)}if(h){e.dump="&ref_"+d+e.dump}}else{writeFlowSequence(e,t,e.dump);if(h){e.dump="&ref_"+d+" "+e.dump}}}else if(c==="[object String]"){if(e.tag!=="?"){writeScalar(e,e.dump,t,l,u)}}else if(c==="[object Undefined]"){return false}else{if(e.skipInvalid)return false;throw new i("unacceptable kind of an object to dump "+c)}if(e.tag!==null&&e.tag!=="?"){f=encodeURI(e.tag[0]==="!"?e.tag.slice(1):e.tag).replace(/!/g,"%21");if(e.tag[0]==="!"){f="!"+f}else if(f.slice(0,18)==="tag:yaml.org,2002:"){f="!!"+f.slice(18)}else{f="!<"+f+">"}e.dump=f+" "+e.dump}}return true}function getDuplicateReferences(e,t){var r=[],n=[],i,o;inspectNode(e,r,n);for(i=0,o=n.length;i<o;i+=1){t.duplicates.push(r[n[i]])}t.usedDuplicates=new Array(o)}function inspectNode(e,t,r){var n,i,o;if(e!==null&&typeof e==="object"){i=t.indexOf(e);if(i!==-1){if(r.indexOf(i)===-1){r.push(i)}}else{t.push(e);if(Array.isArray(e)){for(i=0,o=e.length;i<o;i+=1){inspectNode(e[i],t,r)}}else{n=Object.keys(e);for(i=0,o=n.length;i<o;i+=1){inspectNode(e[n[i]],t,r)}}}}}function dump(e,t){t=t||{};var r=new State(t);if(!r.noRefs)getDuplicateReferences(e,r);var n=e;if(r.replacer){n=r.replacer.call({"":n},"",n)}if(writeNode(r,0,n,true,true))return r.dump+"\n";return""}e.exports.dump=dump},574:function(e){function formatError(e,t){var r="",n=e.reason||"(unknown reason)";if(!e.mark)return n;if(e.mark.name){r+='in "'+e.mark.name+'" '}r+="("+(e.mark.line+1)+":"+(e.mark.column+1)+")";if(!t&&e.mark.snippet){r+="\n\n"+e.mark.snippet}return n+" "+r}function YAMLException(e,t){Error.call(this);this.name="YAMLException";this.reason=e;this.mark=t;this.message=formatError(this,false);if(Error.captureStackTrace){Error.captureStackTrace(this,this.constructor)}else{this.stack=(new Error).stack||""}}YAMLException.prototype=Object.create(Error.prototype);YAMLException.prototype.constructor=YAMLException;YAMLException.prototype.toString=function toString(e){return this.name+": "+formatError(this,e)};e.exports=YAMLException},756:function(e,t,r){var n=r(234);var i=r(574);var o=r(80);var a=r(518);var l=Object.prototype.hasOwnProperty;var s=1;var c=2;var u=3;var f=4;var p=1;var d=2;var h=3;var m=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/;var g=/[\x85\u2028\u2029]/;var v=/[,\[\]\{\}]/;var w=/^(?:!|!!|![a-z\-]+!)$/i;var y=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function _class(e){return Object.prototype.toString.call(e)}function is_EOL(e){return e===10||e===13}function is_WHITE_SPACE(e){return e===9||e===32}function is_WS_OR_EOL(e){return e===9||e===32||e===10||e===13}function is_FLOW_INDICATOR(e){return e===44||e===91||e===93||e===123||e===125}function fromHexCode(e){var t;if(48<=e&&e<=57){return e-48}t=e|32;if(97<=t&&t<=102){return t-97+10}return-1}function escapedHexLen(e){if(e===120){return 2}if(e===117){return 4}if(e===85){return 8}return 0}function fromDecimalCode(e){if(48<=e&&e<=57){return e-48}return-1}function simpleEscapeSequence(e){return e===48?"\0":e===97?"":e===98?"\b":e===116?"\t":e===9?"\t":e===110?"\n":e===118?"\v":e===102?"\f":e===114?"\r":e===101?"":e===32?" ":e===34?'"':e===47?"/":e===92?"\\":e===78?"…":e===95?" ":e===76?"\u2028":e===80?"\u2029":""}function charFromCodepoint(e){if(e<=65535){return String.fromCharCode(e)}return String.fromCharCode((e-65536>>10)+55296,(e-65536&1023)+56320)}var S=new Array(256);var A=new Array(256);for(var b=0;b<256;b++){S[b]=simpleEscapeSequence(b)?1:0;A[b]=simpleEscapeSequence(b)}function State(e,t){this.input=e;this.filename=t["filename"]||null;this.schema=t["schema"]||a;this.onWarning=t["onWarning"]||null;this.legacy=t["legacy"]||false;this.json=t["json"]||false;this.listener=t["listener"]||null;this.implicitTypes=this.schema.compiledImplicit;this.typeMap=this.schema.compiledTypeMap;this.length=e.length;this.position=0;this.line=0;this.lineStart=0;this.lineIndent=0;this.firstTabInLine=-1;this.documents=[]}function generateError(e,t){var r={name:e.filename,buffer:e.input.slice(0,-1),position:e.position,line:e.line,column:e.position-e.lineStart};r.snippet=o(r);return new i(t,r)}function throwError(e,t){throw generateError(e,t)}function throwWarning(e,t){if(e.onWarning){e.onWarning.call(null,generateError(e,t))}}var x={YAML:function handleYamlDirective(e,t,r){var n,i,o;if(e.version!==null){throwError(e,"duplication of %YAML directive")}if(r.length!==1){throwError(e,"YAML directive accepts exactly one argument")}n=/^([0-9]+)\.([0-9]+)$/.exec(r[0]);if(n===null){throwError(e,"ill-formed argument of the YAML directive")}i=parseInt(n[1],10);o=parseInt(n[2],10);if(i!==1){throwError(e,"unacceptable YAML version of the document")}e.version=r[0];e.checkLineBreaks=o<2;if(o!==1&&o!==2){throwWarning(e,"unsupported YAML version of the document")}},TAG:function handleTagDirective(e,t,r){var n,i;if(r.length!==2){throwError(e,"TAG directive accepts exactly two arguments")}n=r[0];i=r[1];if(!w.test(n)){throwError(e,"ill-formed tag handle (first argument) of the TAG directive")}if(l.call(e.tagMap,n)){throwError(e,'there is a previously declared suffix for "'+n+'" tag handle')}if(!y.test(i)){throwError(e,"ill-formed tag prefix (second argument) of the TAG directive")}try{i=decodeURIComponent(i)}catch(t){throwError(e,"tag prefix is malformed: "+i)}e.tagMap[n]=i}};function captureSegment(e,t,r,n){var i,o,a,l;if(t<r){l=e.input.slice(t,r);if(n){for(i=0,o=l.length;i<o;i+=1){a=l.charCodeAt(i);if(!(a===9||32<=a&&a<=1114111)){throwError(e,"expected valid JSON character")}}}else if(m.test(l)){throwError(e,"the stream contains non-printable characters")}e.result+=l}}function mergeMappings(e,t,r,i){var o,a,s,c;if(!n.isObject(r)){throwError(e,"cannot merge mappings; the provided source object is unacceptable")}o=Object.keys(r);for(s=0,c=o.length;s<c;s+=1){a=o[s];if(!l.call(t,a)){t[a]=r[a];i[a]=true}}}function storeMappingPair(e,t,r,n,i,o,a,s,c){var u,f;if(Array.isArray(i)){i=Array.prototype.slice.call(i);for(u=0,f=i.length;u<f;u+=1){if(Array.isArray(i[u])){throwError(e,"nested arrays are not supported inside keys")}if(typeof i==="object"&&_class(i[u])==="[object Object]"){i[u]="[object Object]"}}}if(typeof i==="object"&&_class(i)==="[object Object]"){i="[object Object]"}i=String(i);if(t===null){t={}}if(n==="tag:yaml.org,2002:merge"){if(Array.isArray(o)){for(u=0,f=o.length;u<f;u+=1){mergeMappings(e,t,o[u],r)}}else{mergeMappings(e,t,o,r)}}else{if(!e.json&&!l.call(r,i)&&l.call(t,i)){e.line=a||e.line;e.lineStart=s||e.lineStart;e.position=c||e.position;throwError(e,"duplicated mapping key")}if(i==="__proto__"){Object.defineProperty(t,i,{configurable:true,enumerable:true,writable:true,value:o})}else{t[i]=o}delete r[i]}return t}function readLineBreak(e){var t;t=e.input.charCodeAt(e.position);if(t===10){e.position++}else if(t===13){e.position++;if(e.input.charCodeAt(e.position)===10){e.position++}}else{throwError(e,"a line break is expected")}e.line+=1;e.lineStart=e.position;e.firstTabInLine=-1}function skipSeparationSpace(e,t,r){var n=0,i=e.input.charCodeAt(e.position);while(i!==0){while(is_WHITE_SPACE(i)){if(i===9&&e.firstTabInLine===-1){e.firstTabInLine=e.position}i=e.input.charCodeAt(++e.position)}if(t&&i===35){do{i=e.input.charCodeAt(++e.position)}while(i!==10&&i!==13&&i!==0)}if(is_EOL(i)){readLineBreak(e);i=e.input.charCodeAt(e.position);n++;e.lineIndent=0;while(i===32){e.lineIndent++;i=e.input.charCodeAt(++e.position)}}else{break}}if(r!==-1&&n!==0&&e.lineIndent<r){throwWarning(e,"deficient indentation")}return n}function testDocumentSeparator(e){var t=e.position,r;r=e.input.charCodeAt(t);if((r===45||r===46)&&r===e.input.charCodeAt(t+1)&&r===e.input.charCodeAt(t+2)){t+=3;r=e.input.charCodeAt(t);if(r===0||is_WS_OR_EOL(r)){return true}}return false}function writeFoldedLines(e,t){if(t===1){e.result+=" "}else if(t>1){e.result+=n.repeat("\n",t-1)}}function readPlainScalar(e,t,r){var n,i,o,a,l,s,c,u,f=e.kind,p=e.result,d;d=e.input.charCodeAt(e.position);if(is_WS_OR_EOL(d)||is_FLOW_INDICATOR(d)||d===35||d===38||d===42||d===33||d===124||d===62||d===39||d===34||d===37||d===64||d===96){return false}if(d===63||d===45){i=e.input.charCodeAt(e.position+1);if(is_WS_OR_EOL(i)||r&&is_FLOW_INDICATOR(i)){return false}}e.kind="scalar";e.result="";o=a=e.position;l=false;while(d!==0){if(d===58){i=e.input.charCodeAt(e.position+1);if(is_WS_OR_EOL(i)||r&&is_FLOW_INDICATOR(i)){break}}else if(d===35){n=e.input.charCodeAt(e.position-1);if(is_WS_OR_EOL(n)){break}}else if(e.position===e.lineStart&&testDocumentSeparator(e)||r&&is_FLOW_INDICATOR(d)){break}else if(is_EOL(d)){s=e.line;c=e.lineStart;u=e.lineIndent;skipSeparationSpace(e,false,-1);if(e.lineIndent>=t){l=true;d=e.input.charCodeAt(e.position);continue}else{e.position=a;e.line=s;e.lineStart=c;e.lineIndent=u;break}}if(l){captureSegment(e,o,a,false);writeFoldedLines(e,e.line-s);o=a=e.position;l=false}if(!is_WHITE_SPACE(d)){a=e.position+1}d=e.input.charCodeAt(++e.position)}captureSegment(e,o,a,false);if(e.result){return true}e.kind=f;e.result=p;return false}function readSingleQuotedScalar(e,t){var r,n,i;r=e.input.charCodeAt(e.position);if(r!==39){return false}e.kind="scalar";e.result="";e.position++;n=i=e.position;while((r=e.input.charCodeAt(e.position))!==0){if(r===39){captureSegment(e,n,e.position,true);r=e.input.charCodeAt(++e.position);if(r===39){n=e.position;e.position++;i=e.position}else{return true}}else if(is_EOL(r)){captureSegment(e,n,i,true);writeFoldedLines(e,skipSeparationSpace(e,false,t));n=i=e.position}else if(e.position===e.lineStart&&testDocumentSeparator(e)){throwError(e,"unexpected end of the document within a single quoted scalar")}else{e.position++;i=e.position}}throwError(e,"unexpected end of the stream within a single quoted scalar")}function readDoubleQuotedScalar(e,t){var r,n,i,o,a,l;l=e.input.charCodeAt(e.position);if(l!==34){return false}e.kind="scalar";e.result="";e.position++;r=n=e.position;while((l=e.input.charCodeAt(e.position))!==0){if(l===34){captureSegment(e,r,e.position,true);e.position++;return true}else if(l===92){captureSegment(e,r,e.position,true);l=e.input.charCodeAt(++e.position);if(is_EOL(l)){skipSeparationSpace(e,false,t)}else if(l<256&&S[l]){e.result+=A[l];e.position++}else if((a=escapedHexLen(l))>0){i=a;o=0;for(;i>0;i--){l=e.input.charCodeAt(++e.position);if((a=fromHexCode(l))>=0){o=(o<<4)+a}else{throwError(e,"expected hexadecimal character")}}e.result+=charFromCodepoint(o);e.position++}else{throwError(e,"unknown escape sequence")}r=n=e.position}else if(is_EOL(l)){captureSegment(e,r,n,true);writeFoldedLines(e,skipSeparationSpace(e,false,t));r=n=e.position}else if(e.position===e.lineStart&&testDocumentSeparator(e)){throwError(e,"unexpected end of the document within a double quoted scalar")}else{e.position++;n=e.position}}throwError(e,"unexpected end of the stream within a double quoted scalar")}function readFlowCollection(e,t){var r=true,n,i,o,a=e.tag,l,c=e.anchor,u,f,p,d,h,m=Object.create(null),g,v,w,y;y=e.input.charCodeAt(e.position);if(y===91){f=93;h=false;l=[]}else if(y===123){f=125;h=true;l={}}else{return false}if(e.anchor!==null){e.anchorMap[e.anchor]=l}y=e.input.charCodeAt(++e.position);while(y!==0){skipSeparationSpace(e,true,t);y=e.input.charCodeAt(e.position);if(y===f){e.position++;e.tag=a;e.anchor=c;e.kind=h?"mapping":"sequence";e.result=l;return true}else if(!r){throwError(e,"missed comma between flow collection entries")}else if(y===44){throwError(e,"expected the node content, but found ','")}v=g=w=null;p=d=false;if(y===63){u=e.input.charCodeAt(e.position+1);if(is_WS_OR_EOL(u)){p=d=true;e.position++;skipSeparationSpace(e,true,t)}}n=e.line;i=e.lineStart;o=e.position;composeNode(e,t,s,false,true);v=e.tag;g=e.result;skipSeparationSpace(e,true,t);y=e.input.charCodeAt(e.position);if((d||e.line===n)&&y===58){p=true;y=e.input.charCodeAt(++e.position);skipSeparationSpace(e,true,t);composeNode(e,t,s,false,true);w=e.result}if(h){storeMappingPair(e,l,m,v,g,w,n,i,o)}else if(p){l.push(storeMappingPair(e,null,m,v,g,w,n,i,o))}else{l.push(g)}skipSeparationSpace(e,true,t);y=e.input.charCodeAt(e.position);if(y===44){r=true;y=e.input.charCodeAt(++e.position)}else{r=false}}throwError(e,"unexpected end of the stream within a flow collection")}function readBlockScalar(e,t){var r,i,o=p,a=false,l=false,s=t,c=0,u=false,f,m;m=e.input.charCodeAt(e.position);if(m===124){i=false}else if(m===62){i=true}else{return false}e.kind="scalar";e.result="";while(m!==0){m=e.input.charCodeAt(++e.position);if(m===43||m===45){if(p===o){o=m===43?h:d}else{throwError(e,"repeat of a chomping mode identifier")}}else if((f=fromDecimalCode(m))>=0){if(f===0){throwError(e,"bad explicit indentation width of a block scalar; it cannot be less than one")}else if(!l){s=t+f-1;l=true}else{throwError(e,"repeat of an indentation width identifier")}}else{break}}if(is_WHITE_SPACE(m)){do{m=e.input.charCodeAt(++e.position)}while(is_WHITE_SPACE(m));if(m===35){do{m=e.input.charCodeAt(++e.position)}while(!is_EOL(m)&&m!==0)}}while(m!==0){readLineBreak(e);e.lineIndent=0;m=e.input.charCodeAt(e.position);while((!l||e.lineIndent<s)&&m===32){e.lineIndent++;m=e.input.charCodeAt(++e.position)}if(!l&&e.lineIndent>s){s=e.lineIndent}if(is_EOL(m)){c++;continue}if(e.lineIndent<s){if(o===h){e.result+=n.repeat("\n",a?1+c:c)}else if(o===p){if(a){e.result+="\n"}}break}if(i){if(is_WHITE_SPACE(m)){u=true;e.result+=n.repeat("\n",a?1+c:c)}else if(u){u=false;e.result+=n.repeat("\n",c+1)}else if(c===0){if(a){e.result+=" "}}else{e.result+=n.repeat("\n",c)}}else{e.result+=n.repeat("\n",a?1+c:c)}a=true;l=true;c=0;r=e.position;while(!is_EOL(m)&&m!==0){m=e.input.charCodeAt(++e.position)}captureSegment(e,r,e.position,false)}return true}function readBlockSequence(e,t){var r,n=e.tag,i=e.anchor,o=[],a,l=false,s;if(e.firstTabInLine!==-1)return false;if(e.anchor!==null){e.anchorMap[e.anchor]=o}s=e.input.charCodeAt(e.position);while(s!==0){if(e.firstTabInLine!==-1){e.position=e.firstTabInLine;throwError(e,"tab characters must not be used in indentation")}if(s!==45){break}a=e.input.charCodeAt(e.position+1);if(!is_WS_OR_EOL(a)){break}l=true;e.position++;if(skipSeparationSpace(e,true,-1)){if(e.lineIndent<=t){o.push(null);s=e.input.charCodeAt(e.position);continue}}r=e.line;composeNode(e,t,u,false,true);o.push(e.result);skipSeparationSpace(e,true,-1);s=e.input.charCodeAt(e.position);if((e.line===r||e.lineIndent>t)&&s!==0){throwError(e,"bad indentation of a sequence entry")}else if(e.lineIndent<t){break}}if(l){e.tag=n;e.anchor=i;e.kind="sequence";e.result=o;return true}return false}function readBlockMapping(e,t,r){var n,i,o,a,l,s,u=e.tag,p=e.anchor,d={},h=Object.create(null),m=null,g=null,v=null,w=false,y=false,S;if(e.firstTabInLine!==-1)return false;if(e.anchor!==null){e.anchorMap[e.anchor]=d}S=e.input.charCodeAt(e.position);while(S!==0){if(!w&&e.firstTabInLine!==-1){e.position=e.firstTabInLine;throwError(e,"tab characters must not be used in indentation")}n=e.input.charCodeAt(e.position+1);o=e.line;if((S===63||S===58)&&is_WS_OR_EOL(n)){if(S===63){if(w){storeMappingPair(e,d,h,m,g,null,a,l,s);m=g=v=null}y=true;w=true;i=true}else if(w){w=false;i=true}else{throwError(e,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line")}e.position+=1;S=n}else{a=e.line;l=e.lineStart;s=e.position;if(!composeNode(e,r,c,false,true)){break}if(e.line===o){S=e.input.charCodeAt(e.position);while(is_WHITE_SPACE(S)){S=e.input.charCodeAt(++e.position)}if(S===58){S=e.input.charCodeAt(++e.position);if(!is_WS_OR_EOL(S)){throwError(e,"a whitespace character is expected after the key-value separator within a block mapping")}if(w){storeMappingPair(e,d,h,m,g,null,a,l,s);m=g=v=null}y=true;w=false;i=false;m=e.tag;g=e.result}else if(y){throwError(e,"can not read an implicit mapping pair; a colon is missed")}else{e.tag=u;e.anchor=p;return true}}else if(y){throwError(e,"can not read a block mapping entry; a multiline key may not be an implicit key")}else{e.tag=u;e.anchor=p;return true}}if(e.line===o||e.lineIndent>t){if(w){a=e.line;l=e.lineStart;s=e.position}if(composeNode(e,t,f,true,i)){if(w){g=e.result}else{v=e.result}}if(!w){storeMappingPair(e,d,h,m,g,v,a,l,s);m=g=v=null}skipSeparationSpace(e,true,-1);S=e.input.charCodeAt(e.position)}if((e.line===o||e.lineIndent>t)&&S!==0){throwError(e,"bad indentation of a mapping entry")}else if(e.lineIndent<t){break}}if(w){storeMappingPair(e,d,h,m,g,null,a,l,s)}if(y){e.tag=u;e.anchor=p;e.kind="mapping";e.result=d}return y}function readTagProperty(e){var t,r=false,n=false,i,o,a;a=e.input.charCodeAt(e.position);if(a!==33)return false;if(e.tag!==null){throwError(e,"duplication of a tag property")}a=e.input.charCodeAt(++e.position);if(a===60){r=true;a=e.input.charCodeAt(++e.position)}else if(a===33){n=true;i="!!";a=e.input.charCodeAt(++e.position)}else{i="!"}t=e.position;if(r){do{a=e.input.charCodeAt(++e.position)}while(a!==0&&a!==62);if(e.position<e.length){o=e.input.slice(t,e.position);a=e.input.charCodeAt(++e.position)}else{throwError(e,"unexpected end of the stream within a verbatim tag")}}else{while(a!==0&&!is_WS_OR_EOL(a)){if(a===33){if(!n){i=e.input.slice(t-1,e.position+1);if(!w.test(i)){throwError(e,"named tag handle cannot contain such characters")}n=true;t=e.position+1}else{throwError(e,"tag suffix cannot contain exclamation marks")}}a=e.input.charCodeAt(++e.position)}o=e.input.slice(t,e.position);if(v.test(o)){throwError(e,"tag suffix cannot contain flow indicator characters")}}if(o&&!y.test(o)){throwError(e,"tag name cannot contain such characters: "+o)}try{o=decodeURIComponent(o)}catch(t){throwError(e,"tag name is malformed: "+o)}if(r){e.tag=o}else if(l.call(e.tagMap,i)){e.tag=e.tagMap[i]+o}else if(i==="!"){e.tag="!"+o}else if(i==="!!"){e.tag="tag:yaml.org,2002:"+o}else{throwError(e,'undeclared tag handle "'+i+'"')}return true}function readAnchorProperty(e){var t,r;r=e.input.charCodeAt(e.position);if(r!==38)return false;if(e.anchor!==null){throwError(e,"duplication of an anchor property")}r=e.input.charCodeAt(++e.position);t=e.position;while(r!==0&&!is_WS_OR_EOL(r)&&!is_FLOW_INDICATOR(r)){r=e.input.charCodeAt(++e.position)}if(e.position===t){throwError(e,"name of an anchor node must contain at least one character")}e.anchor=e.input.slice(t,e.position);return true}function readAlias(e){var t,r,n;n=e.input.charCodeAt(e.position);if(n!==42)return false;n=e.input.charCodeAt(++e.position);t=e.position;while(n!==0&&!is_WS_OR_EOL(n)&&!is_FLOW_INDICATOR(n)){n=e.input.charCodeAt(++e.position)}if(e.position===t){throwError(e,"name of an alias node must contain at least one character")}r=e.input.slice(t,e.position);if(!l.call(e.anchorMap,r)){throwError(e,'unidentified alias "'+r+'"')}e.result=e.anchorMap[r];skipSeparationSpace(e,true,-1);return true}function composeNode(e,t,r,n,i){var o,a,p,d=1,h=false,m=false,g,v,w,y,S,A;if(e.listener!==null){e.listener("open",e)}e.tag=null;e.anchor=null;e.kind=null;e.result=null;o=a=p=f===r||u===r;if(n){if(skipSeparationSpace(e,true,-1)){h=true;if(e.lineIndent>t){d=1}else if(e.lineIndent===t){d=0}else if(e.lineIndent<t){d=-1}}}if(d===1){while(readTagProperty(e)||readAnchorProperty(e)){if(skipSeparationSpace(e,true,-1)){h=true;p=o;if(e.lineIndent>t){d=1}else if(e.lineIndent===t){d=0}else if(e.lineIndent<t){d=-1}}else{p=false}}}if(p){p=h||i}if(d===1||f===r){if(s===r||c===r){S=t}else{S=t+1}A=e.position-e.lineStart;if(d===1){if(p&&(readBlockSequence(e,A)||readBlockMapping(e,A,S))||readFlowCollection(e,S)){m=true}else{if(a&&readBlockScalar(e,S)||readSingleQuotedScalar(e,S)||readDoubleQuotedScalar(e,S)){m=true}else if(readAlias(e)){m=true;if(e.tag!==null||e.anchor!==null){throwError(e,"alias node should not have any properties")}}else if(readPlainScalar(e,S,s===r)){m=true;if(e.tag===null){e.tag="?"}}if(e.anchor!==null){e.anchorMap[e.anchor]=e.result}}}else if(d===0){m=p&&readBlockSequence(e,A)}}if(e.tag===null){if(e.anchor!==null){e.anchorMap[e.anchor]=e.result}}else if(e.tag==="?"){if(e.result!==null&&e.kind!=="scalar"){throwError(e,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+e.kind+'"')}for(g=0,v=e.implicitTypes.length;g<v;g+=1){y=e.implicitTypes[g];if(y.resolve(e.result)){e.result=y.construct(e.result);e.tag=y.tag;if(e.anchor!==null){e.anchorMap[e.anchor]=e.result}break}}}else if(e.tag!=="!"){if(l.call(e.typeMap[e.kind||"fallback"],e.tag)){y=e.typeMap[e.kind||"fallback"][e.tag]}else{y=null;w=e.typeMap.multi[e.kind||"fallback"];for(g=0,v=w.length;g<v;g+=1){if(e.tag.slice(0,w[g].tag.length)===w[g].tag){y=w[g];break}}}if(!y){throwError(e,"unknown tag !<"+e.tag+">")}if(e.result!==null&&y.kind!==e.kind){throwError(e,"unacceptable node kind for !<"+e.tag+'> tag; it should be "'+y.kind+'", not "'+e.kind+'"')}if(!y.resolve(e.result,e.tag)){throwError(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")}else{e.result=y.construct(e.result,e.tag);if(e.anchor!==null){e.anchorMap[e.anchor]=e.result}}}if(e.listener!==null){e.listener("close",e)}return e.tag!==null||e.anchor!==null||m}function readDocument(e){var t=e.position,r,n,i,o=false,a;e.version=null;e.checkLineBreaks=e.legacy;e.tagMap=Object.create(null);e.anchorMap=Object.create(null);while((a=e.input.charCodeAt(e.position))!==0){skipSeparationSpace(e,true,-1);a=e.input.charCodeAt(e.position);if(e.lineIndent>0||a!==37){break}o=true;a=e.input.charCodeAt(++e.position);r=e.position;while(a!==0&&!is_WS_OR_EOL(a)){a=e.input.charCodeAt(++e.position)}n=e.input.slice(r,e.position);i=[];if(n.length<1){throwError(e,"directive name must not be less than one character in length")}while(a!==0){while(is_WHITE_SPACE(a)){a=e.input.charCodeAt(++e.position)}if(a===35){do{a=e.input.charCodeAt(++e.position)}while(a!==0&&!is_EOL(a));break}if(is_EOL(a))break;r=e.position;while(a!==0&&!is_WS_OR_EOL(a)){a=e.input.charCodeAt(++e.position)}i.push(e.input.slice(r,e.position))}if(a!==0)readLineBreak(e);if(l.call(x,n)){x[n](e,n,i)}else{throwWarning(e,'unknown document directive "'+n+'"')}}skipSeparationSpace(e,true,-1);if(e.lineIndent===0&&e.input.charCodeAt(e.position)===45&&e.input.charCodeAt(e.position+1)===45&&e.input.charCodeAt(e.position+2)===45){e.position+=3;skipSeparationSpace(e,true,-1)}else if(o){throwError(e,"directives end mark is expected")}composeNode(e,e.lineIndent-1,f,false,true);skipSeparationSpace(e,true,-1);if(e.checkLineBreaks&&g.test(e.input.slice(t,e.position))){throwWarning(e,"non-ASCII line breaks are interpreted as content")}e.documents.push(e.result);if(e.position===e.lineStart&&testDocumentSeparator(e)){if(e.input.charCodeAt(e.position)===46){e.position+=3;skipSeparationSpace(e,true,-1)}return}if(e.position<e.length-1){throwError(e,"end of the stream or a document separator is expected")}else{return}}function loadDocuments(e,t){e=String(e);t=t||{};if(e.length!==0){if(e.charCodeAt(e.length-1)!==10&&e.charCodeAt(e.length-1)!==13){e+="\n"}if(e.charCodeAt(0)===65279){e=e.slice(1)}}var r=new State(e,t);var n=e.indexOf("\0");if(n!==-1){r.position=n;throwError(r,"null byte is not allowed in input")}r.input+="\0";while(r.input.charCodeAt(r.position)===32){r.lineIndent+=1;r.position+=1}while(r.position<r.length-1){readDocument(r)}return r.documents}function loadAll(e,t,r){if(t!==null&&typeof t==="object"&&typeof r==="undefined"){r=t;t=null}var n=loadDocuments(e,r);if(typeof t!=="function"){return n}for(var i=0,o=n.length;i<o;i+=1){t(n[i])}}function load(e,t){var r=loadDocuments(e,t);if(r.length===0){return undefined}else if(r.length===1){return r[0]}throw new i("expected a single document in the stream, but found more")}e.exports.loadAll=loadAll;e.exports.load=load},915:function(e,t,r){var n=r(574);var i=r(498);function compileList(e,t){var r=[];e[t].forEach((function(e){var t=r.length;r.forEach((function(r,n){if(r.tag===e.tag&&r.kind===e.kind&&r.multi===e.multi){t=n}}));r[t]=e}));return r}function compileMap(){var e={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},t,r;function collectType(t){if(t.multi){e.multi[t.kind].push(t);e.multi["fallback"].push(t)}else{e[t.kind][t.tag]=e["fallback"][t.tag]=t}}for(t=0,r=arguments.length;t<r;t+=1){arguments[t].forEach(collectType)}return e}function Schema(e){return this.extend(e)}Schema.prototype.extend=function extend(e){var t=[];var r=[];if(e instanceof i){r.push(e)}else if(Array.isArray(e)){r=r.concat(e)}else if(e&&(Array.isArray(e.implicit)||Array.isArray(e.explicit))){if(e.implicit)t=t.concat(e.implicit);if(e.explicit)r=r.concat(e.explicit)}else{throw new n("Schema.extend argument should be a Type, [ Type ], "+"or a schema definition ({ implicit: [...], explicit: [...] })")}t.forEach((function(e){if(!(e instanceof i)){throw new n("Specified list of YAML types (or a single Type object) contains a non-Type object.")}if(e.loadKind&&e.loadKind!=="scalar"){throw new n("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.")}if(e.multi){throw new n("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}}));r.forEach((function(e){if(!(e instanceof i)){throw new n("Specified list of YAML types (or a single Type object) contains a non-Type object.")}}));var o=Object.create(Schema.prototype);o.implicit=(this.implicit||[]).concat(t);o.explicit=(this.explicit||[]).concat(r);o.compiledImplicit=compileList(o,"implicit");o.compiledExplicit=compileList(o,"explicit");o.compiledTypeMap=compileMap(o.compiledImplicit,o.compiledExplicit);return o};e.exports=Schema},645:function(e,t,r){e.exports=r(854)},518:function(e,t,r){e.exports=r(645).extend({implicit:[r(413),r(690)],explicit:[r(385),r(590),r(886),r(938)]})},9:function(e,t,r){var n=r(915);e.exports=new n({explicit:[r(299),r(369),r(671)]})},854:function(e,t,r){e.exports=r(9).extend({implicit:[r(336),r(568),r(222),r(650)]})},80:function(e,t,r){var n=r(234);function getLine(e,t,r,n,i){var o="";var a="";var l=Math.floor(i/2)-1;if(n-t>l){o=" ... ";t=n-l+o.length}if(r-n>l){a=" ...";r=n+l-a.length}return{str:o+e.slice(t,r).replace(/\t/g,"→")+a,pos:n-t+o.length}}function padStart(e,t){return n.repeat(" ",t-e.length)+e}function makeSnippet(e,t){t=Object.create(t||null);if(!e.buffer)return null;if(!t.maxLength)t.maxLength=79;if(typeof t.indent!=="number")t.indent=1;if(typeof t.linesBefore!=="number")t.linesBefore=3;if(typeof t.linesAfter!=="number")t.linesAfter=2;var r=/\r?\n|\r|\0/g;var i=[0];var o=[];var a;var l=-1;while(a=r.exec(e.buffer)){o.push(a.index);i.push(a.index+a[0].length);if(e.position<=a.index&&l<0){l=i.length-2}}if(l<0)l=i.length-1;var s="",c,u;var f=Math.min(e.line+t.linesAfter,o.length).toString().length;var p=t.maxLength-(t.indent+f+3);for(c=1;c<=t.linesBefore;c++){if(l-c<0)break;u=getLine(e.buffer,i[l-c],o[l-c],e.position-(i[l]-i[l-c]),p);s=n.repeat(" ",t.indent)+padStart((e.line-c+1).toString(),f)+" | "+u.str+"\n"+s}u=getLine(e.buffer,i[l],o[l],e.position,p);s+=n.repeat(" ",t.indent)+padStart((e.line+1).toString(),f)+" | "+u.str+"\n";s+=n.repeat("-",t.indent+f+3+u.pos)+"^"+"\n";for(c=1;c<=t.linesAfter;c++){if(l+c>=o.length)break;u=getLine(e.buffer,i[l+c],o[l+c],e.position-(i[l]-i[l+c]),p);s+=n.repeat(" ",t.indent)+padStart((e.line+c+1).toString(),f)+" | "+u.str+"\n"}return s.replace(/\n$/,"")}e.exports=makeSnippet},498:function(e,t,r){var n=r(574);var i=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"];var o=["scalar","sequence","mapping"];function compileStyleAliases(e){var t={};if(e!==null){Object.keys(e).forEach((function(r){e[r].forEach((function(e){t[String(e)]=r}))}))}return t}function Type(e,t){t=t||{};Object.keys(t).forEach((function(t){if(i.indexOf(t)===-1){throw new n('Unknown option "'+t+'" is met in definition of "'+e+'" YAML type.')}}));this.options=t;this.tag=e;this.kind=t["kind"]||null;this.resolve=t["resolve"]||function(){return true};this.construct=t["construct"]||function(e){return e};this.instanceOf=t["instanceOf"]||null;this.predicate=t["predicate"]||null;this.represent=t["represent"]||null;this.representName=t["representName"]||null;this.defaultStyle=t["defaultStyle"]||null;this.multi=t["multi"]||false;this.styleAliases=compileStyleAliases(t["styleAliases"]||null);if(o.indexOf(this.kind)===-1){throw new n('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}}e.exports=Type},385:function(e,t,r){var n=r(498);var i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r";function resolveYamlBinary(e){if(e===null)return false;var t,r,n=0,o=e.length,a=i;for(r=0;r<o;r++){t=a.indexOf(e.charAt(r));if(t>64)continue;if(t<0)return false;n+=6}return n%8===0}function constructYamlBinary(e){var t,r,n=e.replace(/[\r\n=]/g,""),o=n.length,a=i,l=0,s=[];for(t=0;t<o;t++){if(t%4===0&&t){s.push(l>>16&255);s.push(l>>8&255);s.push(l&255)}l=l<<6|a.indexOf(n.charAt(t))}r=o%4*6;if(r===0){s.push(l>>16&255);s.push(l>>8&255);s.push(l&255)}else if(r===18){s.push(l>>10&255);s.push(l>>2&255)}else if(r===12){s.push(l>>4&255)}return new Uint8Array(s)}function representYamlBinary(e){var t="",r=0,n,o,a=e.length,l=i;for(n=0;n<a;n++){if(n%3===0&&n){t+=l[r>>18&63];t+=l[r>>12&63];t+=l[r>>6&63];t+=l[r&63]}r=(r<<8)+e[n]}o=a%3;if(o===0){t+=l[r>>18&63];t+=l[r>>12&63];t+=l[r>>6&63];t+=l[r&63]}else if(o===2){t+=l[r>>10&63];t+=l[r>>4&63];t+=l[r<<2&63];t+=l[64]}else if(o===1){t+=l[r>>2&63];t+=l[r<<4&63];t+=l[64];t+=l[64]}return t}function isBinary(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}e.exports=new n("tag:yaml.org,2002:binary",{kind:"scalar",resolve:resolveYamlBinary,construct:constructYamlBinary,predicate:isBinary,represent:representYamlBinary})},568:function(e,t,r){var n=r(498);function resolveYamlBoolean(e){if(e===null)return false;var t=e.length;return t===4&&(e==="true"||e==="True"||e==="TRUE")||t===5&&(e==="false"||e==="False"||e==="FALSE")}function constructYamlBoolean(e){return e==="true"||e==="True"||e==="TRUE"}function isBoolean(e){return Object.prototype.toString.call(e)==="[object Boolean]"}e.exports=new n("tag:yaml.org,2002:bool",{kind:"scalar",resolve:resolveYamlBoolean,construct:constructYamlBoolean,predicate:isBoolean,represent:{lowercase:function(e){return e?"true":"false"},uppercase:function(e){return e?"TRUE":"FALSE"},camelcase:function(e){return e?"True":"False"}},defaultStyle:"lowercase"})},650:function(e,t,r){var n=r(234);var i=r(498);var o=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?"+"|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?"+"|[-+]?\\.(?:inf|Inf|INF)"+"|\\.(?:nan|NaN|NAN))$");function resolveYamlFloat(e){if(e===null)return false;if(!o.test(e)||e[e.length-1]==="_"){return false}return true}function constructYamlFloat(e){var t,r;t=e.replace(/_/g,"").toLowerCase();r=t[0]==="-"?-1:1;if("+-".indexOf(t[0])>=0){t=t.slice(1)}if(t===".inf"){return r===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY}else if(t===".nan"){return NaN}return r*parseFloat(t,10)}var a=/^[-+]?[0-9]+e/;function representYamlFloat(e,t){var r;if(isNaN(e)){switch(t){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}}else if(Number.POSITIVE_INFINITY===e){switch(t){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}}else if(Number.NEGATIVE_INFINITY===e){switch(t){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}}else if(n.isNegativeZero(e)){return"-0.0"}r=e.toString(10);return a.test(r)?r.replace("e",".e"):r}function isFloat(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||n.isNegativeZero(e))}e.exports=new i("tag:yaml.org,2002:float",{kind:"scalar",resolve:resolveYamlFloat,construct:constructYamlFloat,predicate:isFloat,represent:representYamlFloat,defaultStyle:"lowercase"})},222:function(e,t,r){var n=r(234);var i=r(498);function isHexCode(e){return 48<=e&&e<=57||65<=e&&e<=70||97<=e&&e<=102}function isOctCode(e){return 48<=e&&e<=55}function isDecCode(e){return 48<=e&&e<=57}function resolveYamlInteger(e){if(e===null)return false;var t=e.length,r=0,n=false,i;if(!t)return false;i=e[r];if(i==="-"||i==="+"){i=e[++r]}if(i==="0"){if(r+1===t)return true;i=e[++r];if(i==="b"){r++;for(;r<t;r++){i=e[r];if(i==="_")continue;if(i!=="0"&&i!=="1")return false;n=true}return n&&i!=="_"}if(i==="x"){r++;for(;r<t;r++){i=e[r];if(i==="_")continue;if(!isHexCode(e.charCodeAt(r)))return false;n=true}return n&&i!=="_"}if(i==="o"){r++;for(;r<t;r++){i=e[r];if(i==="_")continue;if(!isOctCode(e.charCodeAt(r)))return false;n=true}return n&&i!=="_"}}if(i==="_")return false;for(;r<t;r++){i=e[r];if(i==="_")continue;if(!isDecCode(e.charCodeAt(r))){return false}n=true}if(!n||i==="_")return false;return true}function constructYamlInteger(e){var t=e,r=1,n;if(t.indexOf("_")!==-1){t=t.replace(/_/g,"")}n=t[0];if(n==="-"||n==="+"){if(n==="-")r=-1;t=t.slice(1);n=t[0]}if(t==="0")return 0;if(n==="0"){if(t[1]==="b")return r*parseInt(t.slice(2),2);if(t[1]==="x")return r*parseInt(t.slice(2),16);if(t[1]==="o")return r*parseInt(t.slice(2),8)}return r*parseInt(t,10)}function isInteger(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1===0&&!n.isNegativeZero(e))}e.exports=new i("tag:yaml.org,2002:int",{kind:"scalar",resolve:resolveYamlInteger,construct:constructYamlInteger,predicate:isInteger,represent:{binary:function(e){return e>=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},octal:function(e){return e>=0?"0o"+e.toString(8):"-0o"+e.toString(8).slice(1)},decimal:function(e){return e.toString(10)},hexadecimal:function(e){return e>=0?"0x"+e.toString(16).toUpperCase():"-0x"+e.toString(16).toUpperCase().slice(1)}},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}})},671:function(e,t,r){var n=r(498);e.exports=new n("tag:yaml.org,2002:map",{kind:"mapping",construct:function(e){return e!==null?e:{}}})},690:function(e,t,r){var n=r(498);function resolveYamlMerge(e){return e==="<<"||e===null}e.exports=new n("tag:yaml.org,2002:merge",{kind:"scalar",resolve:resolveYamlMerge})},336:function(e,t,r){var n=r(498);function resolveYamlNull(e){if(e===null)return true;var t=e.length;return t===1&&e==="~"||t===4&&(e==="null"||e==="Null"||e==="NULL")}function constructYamlNull(){return null}function isNull(e){return e===null}e.exports=new n("tag:yaml.org,2002:null",{kind:"scalar",resolve:resolveYamlNull,construct:constructYamlNull,predicate:isNull,represent:{canonical:function(){return"~"},lowercase:function(){return"null"},uppercase:function(){return"NULL"},camelcase:function(){return"Null"},empty:function(){return""}},defaultStyle:"lowercase"})},590:function(e,t,r){var n=r(498);var i=Object.prototype.hasOwnProperty;var o=Object.prototype.toString;function resolveYamlOmap(e){if(e===null)return true;var t=[],r,n,a,l,s,c=e;for(r=0,n=c.length;r<n;r+=1){a=c[r];s=false;if(o.call(a)!=="[object Object]")return false;for(l in a){if(i.call(a,l)){if(!s)s=true;else return false}}if(!s)return false;if(t.indexOf(l)===-1)t.push(l);else return false}return true}function constructYamlOmap(e){return e!==null?e:[]}e.exports=new n("tag:yaml.org,2002:omap",{kind:"sequence",resolve:resolveYamlOmap,construct:constructYamlOmap})},886:function(e,t,r){var n=r(498);var i=Object.prototype.toString;function resolveYamlPairs(e){if(e===null)return true;var t,r,n,o,a,l=e;a=new Array(l.length);for(t=0,r=l.length;t<r;t+=1){n=l[t];if(i.call(n)!=="[object Object]")return false;o=Object.keys(n);if(o.length!==1)return false;a[t]=[o[0],n[o[0]]]}return true}function constructYamlPairs(e){if(e===null)return[];var t,r,n,i,o,a=e;o=new Array(a.length);for(t=0,r=a.length;t<r;t+=1){n=a[t];i=Object.keys(n);o[t]=[i[0],n[i[0]]]}return o}e.exports=new n("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:resolveYamlPairs,construct:constructYamlPairs})},369:function(e,t,r){var n=r(498);e.exports=new n("tag:yaml.org,2002:seq",{kind:"sequence",construct:function(e){return e!==null?e:[]}})},938:function(e,t,r){var n=r(498);var i=Object.prototype.hasOwnProperty;function resolveYamlSet(e){if(e===null)return true;var t,r=e;for(t in r){if(i.call(r,t)){if(r[t]!==null)return false}}return true}function constructYamlSet(e){return e!==null?e:{}}e.exports=new n("tag:yaml.org,2002:set",{kind:"mapping",resolve:resolveYamlSet,construct:constructYamlSet})},299:function(e,t,r){var n=r(498);e.exports=new n("tag:yaml.org,2002:str",{kind:"scalar",construct:function(e){return e!==null?e:""}})},413:function(e,t,r){var n=r(498);var i=new RegExp("^([0-9][0-9][0-9][0-9])"+"-([0-9][0-9])"+"-([0-9][0-9])$");var o=new RegExp("^([0-9][0-9][0-9][0-9])"+"-([0-9][0-9]?)"+"-([0-9][0-9]?)"+"(?:[Tt]|[ \\t]+)"+"([0-9][0-9]?)"+":([0-9][0-9])"+":([0-9][0-9])"+"(?:\\.([0-9]*))?"+"(?:[ \\t]*(Z|([-+])([0-9][0-9]?)"+"(?::([0-9][0-9]))?))?$");function resolveYamlTimestamp(e){if(e===null)return false;if(i.exec(e)!==null)return true;if(o.exec(e)!==null)return true;return false}function constructYamlTimestamp(e){var t,r,n,a,l,s,c,u=0,f=null,p,d,h;t=i.exec(e);if(t===null)t=o.exec(e);if(t===null)throw new Error("Date resolve error");r=+t[1];n=+t[2]-1;a=+t[3];if(!t[4]){return new Date(Date.UTC(r,n,a))}l=+t[4];s=+t[5];c=+t[6];if(t[7]){u=t[7].slice(0,3);while(u.length<3){u+="0"}u=+u}if(t[9]){p=+t[10];d=+(t[11]||0);f=(p*60+d)*6e4;if(t[9]==="-")f=-f}h=new Date(Date.UTC(r,n,a,l,s,c,u));if(f)h.setTime(h.getTime()-f);return h}function representYamlTimestamp(e){return e.toISOString()}e.exports=new n("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:resolveYamlTimestamp,construct:constructYamlTimestamp,instanceOf:Date,represent:representYamlTimestamp})}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var i=t[r]={exports:{}};var o=true;try{e[r](i,i.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return i.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var r=__nccwpck_require__(509);module.exports=r})();
@@ -0,0 +1 @@
1
+ {"name":"js-yaml","version":"4.1.0","author":"Vladimir Zapparov <dervus.grim@gmail.com>","contributors":["Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)","Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)","Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)"],"license":"MIT","_lastModified":"2025-07-22T02:42:15.474Z"}