@ohos-ports/shopify 4.8.0-beta.0

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 (606) hide show
  1. package/README.md +75 -0
  2. package/bin/run.cmd +3 -0
  3. package/bin/run.js +11 -0
  4. package/dist/acorn-7M27BPGP.js +16 -0
  5. package/dist/analytics-3IIUBZ3B.js +1 -0
  6. package/dist/analytics-OOT5AB52.js +1 -0
  7. package/dist/angular-DW5TQVCM.js +4 -0
  8. package/dist/assets/graphiql/favicon.ico +0 -0
  9. package/dist/assets/graphiql/style.css +58 -0
  10. package/dist/assets/hydrogen/bundle/analyzer.html +2056 -0
  11. package/dist/assets/hydrogen/i18n/domains.ts +21 -0
  12. package/dist/assets/hydrogen/i18n/mock-i18n-types.ts +5 -0
  13. package/dist/assets/hydrogen/i18n/subdomains.ts +20 -0
  14. package/dist/assets/hydrogen/i18n/subfolders.ts +22 -0
  15. package/dist/assets/hydrogen/routes/locale-check.ts +16 -0
  16. package/dist/assets/hydrogen/starter/.cursor/rules/hydrogen-react-router.mdc +52 -0
  17. package/dist/assets/hydrogen/starter/.graphqlrc.ts +29 -0
  18. package/dist/assets/hydrogen/starter/AGENTS.md +5 -0
  19. package/dist/assets/hydrogen/starter/CHANGELOG.md +2839 -0
  20. package/dist/assets/hydrogen/starter/CLAUDE.md +1 -0
  21. package/dist/assets/hydrogen/starter/README.md +45 -0
  22. package/dist/assets/hydrogen/starter/app/assets/favicon.svg +28 -0
  23. package/dist/assets/hydrogen/starter/app/components/AddToCartButton.tsx +37 -0
  24. package/dist/assets/hydrogen/starter/app/components/Aside.tsx +101 -0
  25. package/dist/assets/hydrogen/starter/app/components/CartLineItem.tsx +197 -0
  26. package/dist/assets/hydrogen/starter/app/components/CartMain.tsx +109 -0
  27. package/dist/assets/hydrogen/starter/app/components/CartSummary.tsx +300 -0
  28. package/dist/assets/hydrogen/starter/app/components/Footer.tsx +129 -0
  29. package/dist/assets/hydrogen/starter/app/components/Header.tsx +231 -0
  30. package/dist/assets/hydrogen/starter/app/components/MockShopNotice.tsx +20 -0
  31. package/dist/assets/hydrogen/starter/app/components/PageLayout.tsx +174 -0
  32. package/dist/assets/hydrogen/starter/app/components/PaginatedResourceSection.tsx +61 -0
  33. package/dist/assets/hydrogen/starter/app/components/ProductForm.tsx +150 -0
  34. package/dist/assets/hydrogen/starter/app/components/ProductImage.tsx +23 -0
  35. package/dist/assets/hydrogen/starter/app/components/ProductItem.tsx +44 -0
  36. package/dist/assets/hydrogen/starter/app/components/ProductPrice.tsx +27 -0
  37. package/dist/assets/hydrogen/starter/app/components/SearchForm.tsx +68 -0
  38. package/dist/assets/hydrogen/starter/app/components/SearchFormPredictive.tsx +76 -0
  39. package/dist/assets/hydrogen/starter/app/components/SearchResults.tsx +161 -0
  40. package/dist/assets/hydrogen/starter/app/components/SearchResultsPredictive.tsx +304 -0
  41. package/dist/assets/hydrogen/starter/app/entry.client.tsx +21 -0
  42. package/dist/assets/hydrogen/starter/app/entry.server.tsx +53 -0
  43. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerAddressMutations.ts +64 -0
  44. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerDetailsQuery.ts +40 -0
  45. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrderQuery.ts +90 -0
  46. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrdersQuery.ts +63 -0
  47. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerUpdateMutation.ts +25 -0
  48. package/dist/assets/hydrogen/starter/app/lib/context.ts +65 -0
  49. package/dist/assets/hydrogen/starter/app/lib/fragments.ts +242 -0
  50. package/dist/assets/hydrogen/starter/app/lib/orderFilters.ts +90 -0
  51. package/dist/assets/hydrogen/starter/app/lib/redirect.ts +23 -0
  52. package/dist/assets/hydrogen/starter/app/lib/search.ts +79 -0
  53. package/dist/assets/hydrogen/starter/app/lib/session.ts +72 -0
  54. package/dist/assets/hydrogen/starter/app/lib/variants.ts +46 -0
  55. package/dist/assets/hydrogen/starter/app/root.tsx +209 -0
  56. package/dist/assets/hydrogen/starter/app/routes/$.tsx +11 -0
  57. package/dist/assets/hydrogen/starter/app/routes/[robots.txt].tsx +78 -0
  58. package/dist/assets/hydrogen/starter/app/routes/[sitemap.xml].tsx +16 -0
  59. package/dist/assets/hydrogen/starter/app/routes/_index.tsx +177 -0
  60. package/dist/assets/hydrogen/starter/app/routes/account.$.tsx +9 -0
  61. package/dist/assets/hydrogen/starter/app/routes/account._index.tsx +5 -0
  62. package/dist/assets/hydrogen/starter/app/routes/account.addresses.tsx +516 -0
  63. package/dist/assets/hydrogen/starter/app/routes/account.orders.$id.tsx +222 -0
  64. package/dist/assets/hydrogen/starter/app/routes/account.orders._index.tsx +222 -0
  65. package/dist/assets/hydrogen/starter/app/routes/account.profile.tsx +133 -0
  66. package/dist/assets/hydrogen/starter/app/routes/account.tsx +97 -0
  67. package/dist/assets/hydrogen/starter/app/routes/account_.authorize.tsx +5 -0
  68. package/dist/assets/hydrogen/starter/app/routes/account_.login.tsx +17 -0
  69. package/dist/assets/hydrogen/starter/app/routes/account_.logout.tsx +11 -0
  70. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle.$articleHandle.tsx +129 -0
  71. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle._index.tsx +175 -0
  72. package/dist/assets/hydrogen/starter/app/routes/blogs._index.tsx +109 -0
  73. package/dist/assets/hydrogen/starter/app/routes/cart.$lines.tsx +70 -0
  74. package/dist/assets/hydrogen/starter/app/routes/cart.tsx +113 -0
  75. package/dist/assets/hydrogen/starter/app/routes/collections.$handle.tsx +161 -0
  76. package/dist/assets/hydrogen/starter/app/routes/collections._index.tsx +133 -0
  77. package/dist/assets/hydrogen/starter/app/routes/collections.all.tsx +122 -0
  78. package/dist/assets/hydrogen/starter/app/routes/discount.$code.tsx +48 -0
  79. package/dist/assets/hydrogen/starter/app/routes/pages.$handle.tsx +88 -0
  80. package/dist/assets/hydrogen/starter/app/routes/policies.$handle.tsx +93 -0
  81. package/dist/assets/hydrogen/starter/app/routes/policies._index.tsx +69 -0
  82. package/dist/assets/hydrogen/starter/app/routes/products.$handle.tsx +232 -0
  83. package/dist/assets/hydrogen/starter/app/routes/search.tsx +426 -0
  84. package/dist/assets/hydrogen/starter/app/routes/sitemap.$type.$page[.xml].tsx +23 -0
  85. package/dist/assets/hydrogen/starter/app/routes.ts +9 -0
  86. package/dist/assets/hydrogen/starter/app/styles/app.css +645 -0
  87. package/dist/assets/hydrogen/starter/app/styles/reset.css +139 -0
  88. package/dist/assets/hydrogen/starter/customer-accountapi.generated.d.ts +543 -0
  89. package/dist/assets/hydrogen/starter/env.d.ts +7 -0
  90. package/dist/assets/hydrogen/starter/eslint.config.js +247 -0
  91. package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.jpg +0 -0
  92. package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.md +394 -0
  93. package/dist/assets/hydrogen/starter/guides/search/search.jpg +0 -0
  94. package/dist/assets/hydrogen/starter/guides/search/search.md +335 -0
  95. package/dist/assets/hydrogen/starter/package.json +62 -0
  96. package/dist/assets/hydrogen/starter/public/.gitkeep +0 -0
  97. package/dist/assets/hydrogen/starter/react-router.config.ts +13 -0
  98. package/dist/assets/hydrogen/starter/server.ts +59 -0
  99. package/dist/assets/hydrogen/starter/storefrontapi.generated.d.ts +1342 -0
  100. package/dist/assets/hydrogen/starter/tsconfig.json +43 -0
  101. package/dist/assets/hydrogen/starter/vite.config.ts +44 -0
  102. package/dist/assets/hydrogen/tailwind/package.json +11 -0
  103. package/dist/assets/hydrogen/tailwind/tailwind.css +6 -0
  104. package/dist/assets/hydrogen/vanilla-extract/package.json +8 -0
  105. package/dist/assets/hydrogen/virtual-routes/assets/debug-network.css +609 -0
  106. package/dist/assets/hydrogen/virtual-routes/assets/favicon-dark.svg +20 -0
  107. package/dist/assets/hydrogen/virtual-routes/assets/favicon.svg +28 -0
  108. package/dist/assets/hydrogen/virtual-routes/assets/inter-variable-font.woff2 +0 -0
  109. package/dist/assets/hydrogen/virtual-routes/assets/jetbrainsmono-variable-font.woff2 +0 -0
  110. package/dist/assets/hydrogen/virtual-routes/assets/styles.css +249 -0
  111. package/dist/assets/hydrogen/virtual-routes/components/FlameChartWrapper.jsx +123 -0
  112. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseBW.jsx +32 -0
  113. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseColor.jsx +47 -0
  114. package/dist/assets/hydrogen/virtual-routes/components/IconBanner.jsx +292 -0
  115. package/dist/assets/hydrogen/virtual-routes/components/IconClose.jsx +38 -0
  116. package/dist/assets/hydrogen/virtual-routes/components/IconDiscard.jsx +44 -0
  117. package/dist/assets/hydrogen/virtual-routes/components/IconError.jsx +61 -0
  118. package/dist/assets/hydrogen/virtual-routes/components/IconGithub.jsx +23 -0
  119. package/dist/assets/hydrogen/virtual-routes/components/IconTwitter.jsx +21 -0
  120. package/dist/assets/hydrogen/virtual-routes/components/Layout.jsx +7 -0
  121. package/dist/assets/hydrogen/virtual-routes/components/RequestDetails.jsx +171 -0
  122. package/dist/assets/hydrogen/virtual-routes/components/RequestTable.jsx +91 -0
  123. package/dist/assets/hydrogen/virtual-routes/components/RequestWaterfall.jsx +151 -0
  124. package/dist/assets/hydrogen/virtual-routes/layout.jsx +33 -0
  125. package/dist/assets/hydrogen/virtual-routes/lib/useDebugNetworkServer.jsx +178 -0
  126. package/dist/assets/hydrogen/virtual-routes/routes/[.]well-known.appspecific.com[.]chrome[.]devtools[.]json.jsx +37 -0
  127. package/dist/assets/hydrogen/virtual-routes/routes/graphiql.jsx +5 -0
  128. package/dist/assets/hydrogen/virtual-routes/routes/index.jsx +265 -0
  129. package/dist/assets/hydrogen/virtual-routes/routes/subrequest-profiler.jsx +243 -0
  130. package/dist/assets/hydrogen/virtual-routes/virtual-root-with-layout.jsx +63 -0
  131. package/dist/assets/hydrogen/virtual-routes/virtual-root.jsx +67 -0
  132. package/dist/assets/hydrogen/vite/package.json +13 -0
  133. package/dist/assets/hydrogen/vite/vite.config.js +43 -0
  134. package/dist/assets/speedscope/SourceCodePro-Regular.ttf.f546cbe0.woff2 +0 -0
  135. package/dist/assets/speedscope/demangle-cpp.1768f4cc.js +4 -0
  136. package/dist/assets/speedscope/favicon-16x16.f74b3187.png +0 -0
  137. package/dist/assets/speedscope/favicon-32x32.bc503437.png +0 -0
  138. package/dist/assets/speedscope/file-format-schema.json +324 -0
  139. package/dist/assets/speedscope/import.bcbb2033.js +123 -0
  140. package/dist/assets/speedscope/index.html +2 -0
  141. package/dist/assets/speedscope/perf-vertx-stacks-01-collapsed-all.2681da68.txt +199 -0
  142. package/dist/assets/speedscope/release.txt +3 -0
  143. package/dist/assets/speedscope/reset.8c46b7a1.css +2 -0
  144. package/dist/assets/speedscope/source-code-pro.52b1676f.css +2 -0
  145. package/dist/assets/speedscope/source-code-pro.LICENSE.md +93 -0
  146. package/dist/assets/speedscope/source-map.438fa06b.js +24 -0
  147. package/dist/assets/speedscope/speedscope.6f107512.js +193 -0
  148. package/dist/babel-I2RLWM7N.js +15 -0
  149. package/dist/bootstrap.d.ts +5 -0
  150. package/dist/bootstrap.js +3 -0
  151. package/dist/chokidar-5RWEYTNQ.js +1 -0
  152. package/dist/chunk-2AK44UYM.js +1 -0
  153. package/dist/chunk-2CIZE537.js +3 -0
  154. package/dist/chunk-2EAFYCCS.js +16 -0
  155. package/dist/chunk-2KD4LHRT.js +5 -0
  156. package/dist/chunk-2KGPH7YG.js +2 -0
  157. package/dist/chunk-2O224ZPO.js +3 -0
  158. package/dist/chunk-2XDUJQQN.js +12 -0
  159. package/dist/chunk-36ROOKQB.js +1 -0
  160. package/dist/chunk-3DCN3N23.js +4 -0
  161. package/dist/chunk-3JXPOOFV.js +836 -0
  162. package/dist/chunk-4QBJ5JBX.js +18 -0
  163. package/dist/chunk-4ZNV5YSL.js +1 -0
  164. package/dist/chunk-5HBIIYSK.js +1 -0
  165. package/dist/chunk-5L63PRJL.js +2 -0
  166. package/dist/chunk-5N6HNQQ5.js +8 -0
  167. package/dist/chunk-5SEEDOQ5.js +1 -0
  168. package/dist/chunk-636CTEW7.js +1 -0
  169. package/dist/chunk-67Z34HN5.js +5 -0
  170. package/dist/chunk-6BDAJ6UD.js +5 -0
  171. package/dist/chunk-6CXG3XLP.js +1 -0
  172. package/dist/chunk-6MWWJZFN.js +19 -0
  173. package/dist/chunk-6QDOCBD4.js +6 -0
  174. package/dist/chunk-6RQOEPEC.js +1 -0
  175. package/dist/chunk-72ZY3KTF.js +1 -0
  176. package/dist/chunk-742XXXGL.js +6 -0
  177. package/dist/chunk-773TIA5M.js +2 -0
  178. package/dist/chunk-7HFHL5SO.js +2 -0
  179. package/dist/chunk-7ISJRIPT.js +1 -0
  180. package/dist/chunk-7LWUHQIF.js +1 -0
  181. package/dist/chunk-7T6M7FAC.js +103 -0
  182. package/dist/chunk-7UNQOKZW.js +1 -0
  183. package/dist/chunk-7Y7AZRL3.js +10 -0
  184. package/dist/chunk-A6BMJISP.js +8 -0
  185. package/dist/chunk-AAK376RT.js +2 -0
  186. package/dist/chunk-AEUCDGTB.js +294 -0
  187. package/dist/chunk-AWUX36VG.js +1 -0
  188. package/dist/chunk-B4OMIONW.js +5 -0
  189. package/dist/chunk-BOAGJ6P5.js +1 -0
  190. package/dist/chunk-BWJIZYAG.js +1 -0
  191. package/dist/chunk-BZ73NV3L.js +2 -0
  192. package/dist/chunk-C3RUVXG2.js +6 -0
  193. package/dist/chunk-C4YLE3NS.js +64 -0
  194. package/dist/chunk-CEYIZC3M.js +2 -0
  195. package/dist/chunk-CIWKN4HF.js +7 -0
  196. package/dist/chunk-CRALWNNO.js +1 -0
  197. package/dist/chunk-CTNBSUVU.js +83 -0
  198. package/dist/chunk-CULTZLC4.js +1 -0
  199. package/dist/chunk-CX5CC6P5.js +1 -0
  200. package/dist/chunk-CX75OKZK.js +1 -0
  201. package/dist/chunk-DASVZTAX.js +359 -0
  202. package/dist/chunk-DPNZWBT5.js +1 -0
  203. package/dist/chunk-DX3JLOUA.js +4 -0
  204. package/dist/chunk-E55KS3GZ.js +1 -0
  205. package/dist/chunk-E5FXOLQO.js +17 -0
  206. package/dist/chunk-E6N4PZZR.js +7 -0
  207. package/dist/chunk-EB574SY6.js +6 -0
  208. package/dist/chunk-ET2CGROE.js +451 -0
  209. package/dist/chunk-EX5GVHGE.js +1 -0
  210. package/dist/chunk-F3NYCSXT.js +273 -0
  211. package/dist/chunk-F3TMLDLC.js +1 -0
  212. package/dist/chunk-F6X6OXXB.js +3 -0
  213. package/dist/chunk-FDBHQLFK.js +1 -0
  214. package/dist/chunk-FDYW3UQC.js +1 -0
  215. package/dist/chunk-FEDVVYK2.js +1 -0
  216. package/dist/chunk-FFSDGRAN.js +1 -0
  217. package/dist/chunk-FJ6F4XRV.js +28 -0
  218. package/dist/chunk-FKIVKNOV.js +2 -0
  219. package/dist/chunk-FOREMLFZ.js +1 -0
  220. package/dist/chunk-FUYDGK33.js +2 -0
  221. package/dist/chunk-FX3L344E.js +1 -0
  222. package/dist/chunk-G5XIGN5D.js +593 -0
  223. package/dist/chunk-GAYKYEIM.js +1 -0
  224. package/dist/chunk-GB3YC4TI.js +1 -0
  225. package/dist/chunk-GCN4O7HM.js +1 -0
  226. package/dist/chunk-GCY7LPEF.js +6 -0
  227. package/dist/chunk-GNBRCK7L.js +3 -0
  228. package/dist/chunk-GRPKF5ZB.js +1 -0
  229. package/dist/chunk-GRSF7456.js +1 -0
  230. package/dist/chunk-H2TQ4ODI.js +1 -0
  231. package/dist/chunk-H6XEESUN.js +4 -0
  232. package/dist/chunk-HB347DXT.js +2 -0
  233. package/dist/chunk-HFSCXTJQ.js +97 -0
  234. package/dist/chunk-HHN6KZXX.js +1 -0
  235. package/dist/chunk-HP64ZTEJ.js +6 -0
  236. package/dist/chunk-I5A6BPCP.js +1 -0
  237. package/dist/chunk-IARCMH7G.js +5 -0
  238. package/dist/chunk-IBI5UCJO.js +1 -0
  239. package/dist/chunk-IKUSLRGD.js +1 -0
  240. package/dist/chunk-IT4HYLTY.js +1 -0
  241. package/dist/chunk-IWOTLFOY.js +32 -0
  242. package/dist/chunk-J3JPJCWP.js +1 -0
  243. package/dist/chunk-J4T73EAS.js +8 -0
  244. package/dist/chunk-JD5P5RAJ.js +1 -0
  245. package/dist/chunk-JG4HH54Q.js +1 -0
  246. package/dist/chunk-JIYSCWCG.js +1 -0
  247. package/dist/chunk-JJZNUFPD.js +44 -0
  248. package/dist/chunk-JLGA3B7P.js +1 -0
  249. package/dist/chunk-JWRK5KLD.js +560 -0
  250. package/dist/chunk-JX7FYWPO.js +1 -0
  251. package/dist/chunk-K42WBNJQ.js +18 -0
  252. package/dist/chunk-KDU7VW3L.js +11 -0
  253. package/dist/chunk-KWVOJWO7.js +1 -0
  254. package/dist/chunk-LANUJ7LX.js +16 -0
  255. package/dist/chunk-LD6ZCTZ3.js +9 -0
  256. package/dist/chunk-LFOBYEWG.js +1 -0
  257. package/dist/chunk-LQ7ENG4V.js +1 -0
  258. package/dist/chunk-LUKQ5HLC.js +1 -0
  259. package/dist/chunk-M2XHIN57.js +4 -0
  260. package/dist/chunk-MNOQAXJW.js +3 -0
  261. package/dist/chunk-MPW2YJWU.js +31 -0
  262. package/dist/chunk-MYQUYU4U.js +2 -0
  263. package/dist/chunk-N65F7ET2.js +1 -0
  264. package/dist/chunk-N6RBRPGW.js +7 -0
  265. package/dist/chunk-N75VOJHO.js +15 -0
  266. package/dist/chunk-NBFMP5XQ.js +1 -0
  267. package/dist/chunk-NE3ZFSMS.js +1 -0
  268. package/dist/chunk-NGLMZYS7.js +278 -0
  269. package/dist/chunk-NHAUJWEG.js +1 -0
  270. package/dist/chunk-NILETICC.js +11 -0
  271. package/dist/chunk-NNZXKFOS.js +7 -0
  272. package/dist/chunk-NQK2VCDA.js +1 -0
  273. package/dist/chunk-NROVZETL.js +1 -0
  274. package/dist/chunk-NW6NUGN7.js +1 -0
  275. package/dist/chunk-O7DZXO3O.js +15 -0
  276. package/dist/chunk-OBYQSIYU.js +25 -0
  277. package/dist/chunk-OEG3N5PG.js +15 -0
  278. package/dist/chunk-OGBZTY2G.js +5 -0
  279. package/dist/chunk-OMHR423H.js +1 -0
  280. package/dist/chunk-OV6SRRXR.js +5 -0
  281. package/dist/chunk-OVV5YGKN.js +1 -0
  282. package/dist/chunk-OZL5FTT7.js +1 -0
  283. package/dist/chunk-OZMQ2EJB.js +1 -0
  284. package/dist/chunk-P2OI2P2M.js +1 -0
  285. package/dist/chunk-P57P7UAN.js +3 -0
  286. package/dist/chunk-PATTG7YZ.js +1 -0
  287. package/dist/chunk-PG5YNPJB.js +26 -0
  288. package/dist/chunk-PP4L2JJ6.js +3 -0
  289. package/dist/chunk-Q5JX23QU.js +1 -0
  290. package/dist/chunk-Q5KVMLBK.js +4 -0
  291. package/dist/chunk-Q5LIJGT7.js +12 -0
  292. package/dist/chunk-Q6ADIMJM.js +6 -0
  293. package/dist/chunk-Q7BOSHWX.js +7 -0
  294. package/dist/chunk-QERQARMC.js +1 -0
  295. package/dist/chunk-QOV43E26.js +1 -0
  296. package/dist/chunk-QTFUYKMF.js +1 -0
  297. package/dist/chunk-QTJCCOAG.js +20 -0
  298. package/dist/chunk-R6ICQT2D.js +1 -0
  299. package/dist/chunk-R7T3LYJL.js +3 -0
  300. package/dist/chunk-RJ5VF3QY.js +2 -0
  301. package/dist/chunk-RXQJCJDV.js +1 -0
  302. package/dist/chunk-S2TLBBSS.js +5 -0
  303. package/dist/chunk-S5FOQY35.js +1 -0
  304. package/dist/chunk-SYLHT42O.js +1 -0
  305. package/dist/chunk-T4AA6TSF.js +15 -0
  306. package/dist/chunk-T4QWK5GG.js +10 -0
  307. package/dist/chunk-T7KHS6RF.js +1 -0
  308. package/dist/chunk-T7PJDT5O.js +6 -0
  309. package/dist/chunk-TEY4LRY7.js +1 -0
  310. package/dist/chunk-TFBRVLDN.js +1 -0
  311. package/dist/chunk-TOLPNBZK.js +4 -0
  312. package/dist/chunk-TR4OWSEX.js +77 -0
  313. package/dist/chunk-TU47HMTL.js +1 -0
  314. package/dist/chunk-TUVDJ3PG.js +2 -0
  315. package/dist/chunk-TYMYIUIQ.js +1 -0
  316. package/dist/chunk-U2DWBZK2.js +1 -0
  317. package/dist/chunk-U53OLUOE.js +3 -0
  318. package/dist/chunk-UAETNFN4.js +1 -0
  319. package/dist/chunk-UAFEFKAQ.js +5 -0
  320. package/dist/chunk-ULRJDKWQ.js +1 -0
  321. package/dist/chunk-UOHNRH6E.js +7 -0
  322. package/dist/chunk-UZARYOLN.js +1 -0
  323. package/dist/chunk-VASGXHYA.js +1 -0
  324. package/dist/chunk-VD4XJ6BX.js +1 -0
  325. package/dist/chunk-VE35YELD.js +1 -0
  326. package/dist/chunk-VFM2KQRM.js +19 -0
  327. package/dist/chunk-VJEKDBGZ.js +1 -0
  328. package/dist/chunk-VKWPEFWQ.js +1 -0
  329. package/dist/chunk-VSDRNYA5.js +1 -0
  330. package/dist/chunk-VUMUCNI7.js +1 -0
  331. package/dist/chunk-VVZSYHDG.js +4 -0
  332. package/dist/chunk-VXEYO3ZP.js +1 -0
  333. package/dist/chunk-VYDSOAV4.js +9 -0
  334. package/dist/chunk-W6ST525S.js +99 -0
  335. package/dist/chunk-WBYAGS6B.js +6 -0
  336. package/dist/chunk-WGAFCKGD.js +1 -0
  337. package/dist/chunk-WYBTC356.js +1 -0
  338. package/dist/chunk-XF2KTEID.js +1 -0
  339. package/dist/chunk-XH5YGJQR.js +1 -0
  340. package/dist/chunk-XHKWITLA.js +1705 -0
  341. package/dist/chunk-XOCB4KNX.js +2 -0
  342. package/dist/chunk-XUUAKGEX.js +1 -0
  343. package/dist/chunk-XUYVJEZG.js +3 -0
  344. package/dist/chunk-Y47C3LSX.js +3 -0
  345. package/dist/chunk-Y5PRPHLQ.js +6 -0
  346. package/dist/chunk-YD2VQEN5.js +1 -0
  347. package/dist/chunk-YESGYUEL.js +1 -0
  348. package/dist/chunk-YEVGLC5X.js +1 -0
  349. package/dist/chunk-YFINLODF.js +375 -0
  350. package/dist/chunk-YKL3BLWC.js +46 -0
  351. package/dist/chunk-YLQ3LNNY.js +99 -0
  352. package/dist/chunk-YLXPYXQP.js +1 -0
  353. package/dist/chunk-YNDIZCD2.js +7 -0
  354. package/dist/chunk-YPWHD3NL.js +1 -0
  355. package/dist/chunk-YSAFHVV6.js +8 -0
  356. package/dist/chunk-YY6TFARF.js +1 -0
  357. package/dist/chunk-YZMY2CTU.js +10 -0
  358. package/dist/chunk-Z4AFEO36.js +1 -0
  359. package/dist/chunk-Z5WPP6ME.js +1 -0
  360. package/dist/chunk-Z65E4UAP.js +1 -0
  361. package/dist/chunk-ZDF5N422.js +1 -0
  362. package/dist/chunk-ZDRIQC7O.js +1 -0
  363. package/dist/chunk-ZH44BDUR.js +5 -0
  364. package/dist/chunk-ZI7LK3LW.js +11 -0
  365. package/dist/chunk-ZL5LU4U2.js +32 -0
  366. package/dist/chunk-ZYX7UHCQ.js +1 -0
  367. package/dist/chunk-ZZRFG6ME.js +317 -0
  368. package/dist/cli/commands/app/app-logs/sources.js +1 -0
  369. package/dist/cli/commands/app/build.js +1 -0
  370. package/dist/cli/commands/app/bulk/cancel.js +1 -0
  371. package/dist/cli/commands/app/bulk/execute.js +1 -0
  372. package/dist/cli/commands/app/bulk/status.js +1 -0
  373. package/dist/cli/commands/app/config/link.js +1 -0
  374. package/dist/cli/commands/app/config/pull.js +1 -0
  375. package/dist/cli/commands/app/config/use.js +1 -0
  376. package/dist/cli/commands/app/config/validate.js +1 -0
  377. package/dist/cli/commands/app/demo/watcher.js +1 -0
  378. package/dist/cli/commands/app/deploy.js +1 -0
  379. package/dist/cli/commands/app/dev/clean.js +1 -0
  380. package/dist/cli/commands/app/dev.js +1 -0
  381. package/dist/cli/commands/app/doctor/instructions.js +1 -0
  382. package/dist/cli/commands/app/doctor.js +1 -0
  383. package/dist/cli/commands/app/env/pull.js +1 -0
  384. package/dist/cli/commands/app/env/show.js +1 -0
  385. package/dist/cli/commands/app/execute.js +1 -0
  386. package/dist/cli/commands/app/function/build.js +1 -0
  387. package/dist/cli/commands/app/function/info.js +1 -0
  388. package/dist/cli/commands/app/function/replay.js +1 -0
  389. package/dist/cli/commands/app/function/run.js +1 -0
  390. package/dist/cli/commands/app/function/schema.js +1 -0
  391. package/dist/cli/commands/app/function/typegen.js +1 -0
  392. package/dist/cli/commands/app/generate/extension.js +1 -0
  393. package/dist/cli/commands/app/graphiql.js +1 -0
  394. package/dist/cli/commands/app/import-custom-data-definitions.js +1 -0
  395. package/dist/cli/commands/app/import-extensions.js +1 -0
  396. package/dist/cli/commands/app/info.js +1 -0
  397. package/dist/cli/commands/app/init.js +1 -0
  398. package/dist/cli/commands/app/logs.js +1 -0
  399. package/dist/cli/commands/app/release.js +1 -0
  400. package/dist/cli/commands/app/subscription-migrations/cancel.js +1 -0
  401. package/dist/cli/commands/app/subscription-migrations/list.js +1 -0
  402. package/dist/cli/commands/app/subscription-migrations/schedule.js +1 -0
  403. package/dist/cli/commands/app/subscription-migrations/status.js +1 -0
  404. package/dist/cli/commands/app/subscription-migrations/unschedule.js +1 -0
  405. package/dist/cli/commands/app/versions/list.js +1 -0
  406. package/dist/cli/commands/app/webhook/trigger.js +1 -0
  407. package/dist/cli/commands/auth/login.d.ts +8 -0
  408. package/dist/cli/commands/auth/login.js +1 -0
  409. package/dist/cli/commands/auth/logout.d.ts +5 -0
  410. package/dist/cli/commands/auth/logout.js +1 -0
  411. package/dist/cli/commands/cache/clear.d.ts +6 -0
  412. package/dist/cli/commands/cache/clear.js +1 -0
  413. package/dist/cli/commands/config/autoupgrade/constants.d.ts +4 -0
  414. package/dist/cli/commands/config/autoupgrade/constants.js +1 -0
  415. package/dist/cli/commands/config/autoupgrade/off.d.ts +7 -0
  416. package/dist/cli/commands/config/autoupgrade/off.js +1 -0
  417. package/dist/cli/commands/config/autoupgrade/on.d.ts +7 -0
  418. package/dist/cli/commands/config/autoupgrade/on.js +1 -0
  419. package/dist/cli/commands/config/autoupgrade/status.d.ts +7 -0
  420. package/dist/cli/commands/config/autoupgrade/status.js +1 -0
  421. package/dist/cli/commands/debug/command-flags.d.ts +9 -0
  422. package/dist/cli/commands/debug/command-flags.js +1 -0
  423. package/dist/cli/commands/doc/fetch.d.ts +12 -0
  424. package/dist/cli/commands/doc/fetch.js +1 -0
  425. package/dist/cli/commands/doc/search.d.ts +13 -0
  426. package/dist/cli/commands/doc/search.js +1 -0
  427. package/dist/cli/commands/docs/generate.d.ts +21 -0
  428. package/dist/cli/commands/docs/generate.js +1 -0
  429. package/dist/cli/commands/doctor-release/doctor-release.d.ts +6 -0
  430. package/dist/cli/commands/doctor-release/doctor-release.js +1 -0
  431. package/dist/cli/commands/doctor-release/theme/index.d.ts +14 -0
  432. package/dist/cli/commands/doctor-release/theme/index.js +1 -0
  433. package/dist/cli/commands/help.d.ts +13 -0
  434. package/dist/cli/commands/help.js +1 -0
  435. package/dist/cli/commands/kitchen-sink/async.d.ts +11 -0
  436. package/dist/cli/commands/kitchen-sink/async.js +1 -0
  437. package/dist/cli/commands/kitchen-sink/index.d.ts +12 -0
  438. package/dist/cli/commands/kitchen-sink/index.js +1 -0
  439. package/dist/cli/commands/kitchen-sink/prompts.d.ts +11 -0
  440. package/dist/cli/commands/kitchen-sink/prompts.js +1 -0
  441. package/dist/cli/commands/kitchen-sink/static.d.ts +11 -0
  442. package/dist/cli/commands/kitchen-sink/static.js +1 -0
  443. package/dist/cli/commands/notifications/generate.d.ts +6 -0
  444. package/dist/cli/commands/notifications/generate.js +1 -0
  445. package/dist/cli/commands/notifications/list.d.ts +9 -0
  446. package/dist/cli/commands/notifications/list.js +1 -0
  447. package/dist/cli/commands/organization/list.js +1 -0
  448. package/dist/cli/commands/search.d.ts +14 -0
  449. package/dist/cli/commands/search.js +1 -0
  450. package/dist/cli/commands/send-analytics.d.ts +5 -0
  451. package/dist/cli/commands/send-analytics.js +1 -0
  452. package/dist/cli/commands/theme/check.js +1 -0
  453. package/dist/cli/commands/theme/console.js +1 -0
  454. package/dist/cli/commands/theme/delete.js +1 -0
  455. package/dist/cli/commands/theme/dev.js +1 -0
  456. package/dist/cli/commands/theme/duplicate.js +1 -0
  457. package/dist/cli/commands/theme/info.js +1 -0
  458. package/dist/cli/commands/theme/init.js +1 -0
  459. package/dist/cli/commands/theme/language-server.js +1 -0
  460. package/dist/cli/commands/theme/list.js +1 -0
  461. package/dist/cli/commands/theme/metafields/pull.js +1 -0
  462. package/dist/cli/commands/theme/open.js +1 -0
  463. package/dist/cli/commands/theme/package.js +1 -0
  464. package/dist/cli/commands/theme/preview.js +1 -0
  465. package/dist/cli/commands/theme/profile.js +1 -0
  466. package/dist/cli/commands/theme/publish.js +1 -0
  467. package/dist/cli/commands/theme/pull.js +1 -0
  468. package/dist/cli/commands/theme/push.js +1 -0
  469. package/dist/cli/commands/theme/rename.js +1 -0
  470. package/dist/cli/commands/theme/share.js +1 -0
  471. package/dist/cli/commands/upgrade.d.ts +7 -0
  472. package/dist/cli/commands/upgrade.js +1 -0
  473. package/dist/cli/commands/version.d.ts +5 -0
  474. package/dist/cli/commands/version.js +1 -0
  475. package/dist/cli/help.d.ts +38 -0
  476. package/dist/cli/help.js +2 -0
  477. package/dist/cli/services/commands/doc/fetch.d.ts +1 -0
  478. package/dist/cli/services/commands/doc/fetch.js +45 -0
  479. package/dist/cli/services/commands/doc/search.d.ts +1 -0
  480. package/dist/cli/services/commands/doc/search.js +47 -0
  481. package/dist/cli/services/commands/notifications.d.ts +2 -0
  482. package/dist/cli/services/commands/notifications.js +106 -0
  483. package/dist/cli/services/commands/search.d.ts +1 -0
  484. package/dist/cli/services/commands/search.js +7 -0
  485. package/dist/cli/services/commands/version.d.ts +1 -0
  486. package/dist/cli/services/commands/version.js +6 -0
  487. package/dist/cli/services/doctor-release/context.d.ts +16 -0
  488. package/dist/cli/services/doctor-release/context.js +11 -0
  489. package/dist/cli/services/doctor-release/theme/runner.d.ts +7 -0
  490. package/dist/cli/services/doctor-release/theme/runner.js +37 -0
  491. package/dist/cli/services/doctor-release/theme/tests/init.d.ts +11 -0
  492. package/dist/cli/services/doctor-release/theme/tests/init.js +34 -0
  493. package/dist/cli/services/doctor-release/theme/tests/push.d.ts +10 -0
  494. package/dist/cli/services/doctor-release/theme/tests/push.js +44 -0
  495. package/dist/cli/services/kitchen-sink/async.d.ts +1 -0
  496. package/dist/cli/services/kitchen-sink/async.js +65 -0
  497. package/dist/cli/services/kitchen-sink/prompts.d.ts +1 -0
  498. package/dist/cli/services/kitchen-sink/prompts.js +168 -0
  499. package/dist/cli/services/kitchen-sink/static.d.ts +1 -0
  500. package/dist/cli/services/kitchen-sink/static.js +201 -0
  501. package/dist/command-registry.d.ts +8 -0
  502. package/dist/command-registry.js +1 -0
  503. package/dist/conf-store-ASDCTDQ4.js +1 -0
  504. package/dist/configs/all.yml +280 -0
  505. package/dist/configs/nothing.yml +3 -0
  506. package/dist/configs/recommended.yml +258 -0
  507. package/dist/configs/theme-app-extension.yml +24 -0
  508. package/dist/custom-oclif-loader-BWAMUFQ4.js +1 -0
  509. package/dist/data/app_block_entry.json +13 -0
  510. package/dist/data/default_setting_values.json +24 -0
  511. package/dist/data/filters.json +6177 -0
  512. package/dist/data/latest.json +2 -0
  513. package/dist/data/local_block_entry.json +25 -0
  514. package/dist/data/manifest_theme.json +19 -0
  515. package/dist/data/manifest_theme_app_extension.json +10 -0
  516. package/dist/data/objects.json +20621 -0
  517. package/dist/data/preset.json +72 -0
  518. package/dist/data/preset_blocks.json +91 -0
  519. package/dist/data/section.json +208 -0
  520. package/dist/data/setting.json +1538 -0
  521. package/dist/data/settings.json +10 -0
  522. package/dist/data/shopify_system_translations.json +2766 -0
  523. package/dist/data/tags.json +1276 -0
  524. package/dist/data/targetted_block_entry.json +15 -0
  525. package/dist/data/theme_block.json +91 -0
  526. package/dist/data/theme_block_entry.json +14 -0
  527. package/dist/data/theme_settings.json +83 -0
  528. package/dist/data/translations.json +63 -0
  529. package/dist/deprecations-VBQV7Q4O.js +1 -0
  530. package/dist/devtools-37DE4MUR.js +1 -0
  531. package/dist/devtools-WAWU5KQL.js +1 -0
  532. package/dist/dist-FZLOAKU7.js +1 -0
  533. package/dist/dist-HTY6UHG5.js +1 -0
  534. package/dist/environments-HSTNEQRG.js +1 -0
  535. package/dist/error-2LZYKRMA.js +1 -0
  536. package/dist/error-handler-PIGEJ7BT.js +1 -0
  537. package/dist/estree-JV5M77BA.js +44 -0
  538. package/dist/flow-N4JYPYMQ.js +20 -0
  539. package/dist/fs-BJHNJDDK.js +1 -0
  540. package/dist/glimmer-JEV3BXHR.js +37 -0
  541. package/dist/graphql-DTF6MHYF.js +28 -0
  542. package/dist/hooks/did-you-mean.d.ts +1 -0
  543. package/dist/hooks/did-you-mean.js +1 -0
  544. package/dist/hooks/hydrogen-init.d.ts +7 -0
  545. package/dist/hooks/hydrogen-init.js +1 -0
  546. package/dist/hooks/plugin-plugins.d.ts +1 -0
  547. package/dist/hooks/plugin-plugins.js +1 -0
  548. package/dist/hooks/postrun.d.ts +1 -0
  549. package/dist/hooks/postrun.js +1 -0
  550. package/dist/hooks/prerun.d.ts +1 -0
  551. package/dist/hooks/prerun.js +2 -0
  552. package/dist/hooks/public-metadata.d.ts +1 -0
  553. package/dist/hooks/public-metadata.js +1 -0
  554. package/dist/hooks/sensitive-metadata.d.ts +1 -0
  555. package/dist/hooks/sensitive-metadata.js +1 -0
  556. package/dist/hooks/tunnel-provider.d.ts +1 -0
  557. package/dist/hooks/tunnel-provider.js +1 -0
  558. package/dist/hooks/tunnel-start.d.ts +1 -0
  559. package/dist/hooks/tunnel-start.js +1 -0
  560. package/dist/html-LVOJ3RQS.js +25 -0
  561. package/dist/http-proxy-node16-A6AKKRQH.js +38 -0
  562. package/dist/index.d.ts +13 -0
  563. package/dist/index.js +120 -0
  564. package/dist/is-global-6SCOAJVG.js +1 -0
  565. package/dist/latest-version-LDWU5F7A.js +49 -0
  566. package/dist/lib-2BR2WN7L.js +1 -0
  567. package/dist/lib-M72BVWQ3.js +1 -0
  568. package/dist/lib-O5EZ4NVT.js +1 -0
  569. package/dist/lib-P3APEIHY.js +1 -0
  570. package/dist/local-PZWPRFU7.js +1 -0
  571. package/dist/markdown-J6CE6POI.js +62 -0
  572. package/dist/meriyah-PNQQZQYI.js +5 -0
  573. package/dist/metadata-VVBHB3HL.js +1 -0
  574. package/dist/morph-BMYYMQNX.js +30489 -0
  575. package/dist/multipart-parser-5NSSTW27.js +2 -0
  576. package/dist/node-package-manager-ETYQN7OM.js +1 -0
  577. package/dist/notifications-system-652OG5KL.js +1 -0
  578. package/dist/npa-A4YSCQ5Q.js +1 -0
  579. package/dist/open-KLSGXBIW.js +1 -0
  580. package/dist/os-7D6NT4O3.js +1 -0
  581. package/dist/out-53ABAVL7.js +1 -0
  582. package/dist/output-74VDGYJD.js +1 -0
  583. package/dist/path-MBXP7ZIC.js +1 -0
  584. package/dist/postcss-Q36SHOML.js +61 -0
  585. package/dist/prettier-EGVCP5CY.js +1 -0
  586. package/dist/source-map-E7FCCJL7.js +1 -0
  587. package/dist/system-P5QIJALL.js +1 -0
  588. package/dist/templates/ui-extensions/html/error.html.liquid +41 -0
  589. package/dist/templates/ui-extensions/html/post_purchase/index.html.liquid +44 -0
  590. package/dist/templates/ui-extensions/html/post_purchase/tunnel-error.html.liquid +41 -0
  591. package/dist/templates/ui-extensions/html/tunnel-error.html.liquid +55 -0
  592. package/dist/toml_patch_bg.wasm +0 -0
  593. package/dist/tsconfig.tsbuildinfo +1 -0
  594. package/dist/typescript-5R4Y7PXE.js +1 -0
  595. package/dist/typescript-WYPDGPSV.js +21 -0
  596. package/dist/ui-H5I5YVKV.js +1 -0
  597. package/dist/upgrade-34HSYBXI.js +1 -0
  598. package/dist/vendor/esbuild-ohos/lib/main.js +2538 -0
  599. package/dist/vendor/esbuild-ohos/package.json +7 -0
  600. package/dist/version-EKXEAF6Q.js +1 -0
  601. package/dist/version-J2PYO6M5.js +1 -0
  602. package/dist/workerd-X4TGHEG3.js +18 -0
  603. package/dist/yaml-6KWCJ64X.js +159 -0
  604. package/dist/yoga.wasm +0 -0
  605. package/oclif.manifest.json +10100 -0
  606. package/package.json +153 -0
@@ -0,0 +1 @@
1
+ import{a as h,b as w}from"./chunk-C4YLE3NS.js";import{r as f}from"./chunk-3JXPOOFV.js";import{T as d}from"./chunk-YFINLODF.js";import{h as i}from"./chunk-BWJIZYAG.js";import{Ga as m,na as p}from"./chunk-VFM2KQRM.js";import{d as u}from"./chunk-773TIA5M.js";import{g as l}from"./chunk-VKWPEFWQ.js";l();import{writeFile as g}from"fs/promises";var S=1024*1024,y=100,U=y*S,E=3,_=new Set([408,429,500,502,503,504]);async function j(o,e){let t=u(e,"manifest.json");await g(t,JSON.stringify(o,null,2))}var A=["!**/*.js.map","!**/*.metafile.json"];async function k(o,e,t){let n=t??["**/*",...A];e.endsWith(".br")?await w({inputDirectory:o,outputPath:e,matchFilePattern:n}):await h({inputDirectory:o,outputZipPath:e,matchFilePattern:n})}async function C(o,e){let t=await m(e);if(t>U){let s=`${(Math.ceil(t/S*100)/100).toFixed(2)} MB`;throw new i(`Your app bundle exceeds the ${y} MB upload limit (it is ${s}).`,"Check the asset paths in your extension configuration \u2014 a misconfigured source can pull in much more than intended. Exclude large files or directories from your bundle, then try again.")}let n=p(e),r;for(let s=1;s<=E;s++){if(r=await f(o,{method:"put",body:n},"slow-request"),r.ok)return;let T=s===E;if(_.has(r.status)&&!T){await r.text().catch(()=>{}),await d(2**s*.1);continue}break}let a=r?.status,c=(await r?.text().catch(()=>""))?.trim();throw new i(`Failed to upload your app bundle to storage${a?` (HTTP ${a})`:""}.`,"This is usually transient. Please try again, and check your network connection if it persists.",c?[`Storage responded with: ${c.slice(0,300)}`]:void 0)}async function D(o,e){let t=await o.generateSignedUploadUrl(e);if(!t.assetUrl||t.userErrors?.length>0){let n=t.userErrors.map(r=>r.message).join(", ");throw new i(n)}return t.assetUrl}export{j as a,A as b,k as c,C as d,D as e};
@@ -0,0 +1,5 @@
1
+ import{c as b,g as i}from"./chunk-VKWPEFWQ.js";var Re=b((pr,L)=>{i();function ye(e){var r=typeof e;return e!=null&&(r=="object"||r=="function")}L.exports=ye});var $=b((mr,k)=>{i();var Ce=typeof global=="object"&&global&&global.Object===Object&&global;k.exports=Ce});var q=b((Tr,Y)=>{i();var xe=$(),Ae=typeof self=="object"&&self&&self.Object===Object&&self,Se=xe||Ae||Function("return this")();Y.exports=Se});var S=b((yr,D)=>{i();var ve=q(),Ee=ve.Symbol;D.exports=Ee});var W=b((Cr,K)=>{i();var U=S(),V=Object.prototype,Be=V.hasOwnProperty,je=V.toString,h=U?U.toStringTag:void 0;function Ne(e){var r=Be.call(e,h),t=e[h];try{e[h]=void 0;var o=!0}catch{}var n=je.call(e);return o&&(r?e[h]=t:delete e[h]),n}K.exports=Ne});var H=b((Ar,z)=>{i();var Me=Object.prototype,Ie=Me.toString;function Fe(e){return Ie.call(e)}z.exports=Fe});var X=b((vr,Q)=>{i();var Z=S(),we=W(),_e=H(),Pe="[object Null]",Ge="[object Undefined]",J=Z?Z.toStringTag:void 0;function Le(e){return e==null?e===void 0?Ge:Pe:J&&J in Object(e)?we(e):_e(e)}Q.exports=Le});var re=b((Br,ee)=>{i();function ke(e){return e!=null&&typeof e=="object"}ee.exports=ke});var Ue=b((Nr,te)=>{i();var $e=X(),Ye=re(),qe="[object Symbol]";function De(e){return typeof e=="symbol"||Ye(e)&&$e(e)==qe}te.exports=De});i();i();function y({onlyFirst:e=!1}={}){let n="(?:\\u001B\\][\\s\\S]*?(?:\\u0007|\\u001B\\u005C|\\u009C))|[\\u001B\\u009B][[\\]()#;?]*(?:\\d{1,4}(?:[;:]\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]";return new RegExp(n,e?void 0:"g")}var oe=y();function ne(e){if(typeof e!="string")throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);return!e.includes("\x1B")&&!e.includes("\x9B")?e:e.replace(oe,"")}i();i();var E=(e=0)=>r=>`\x1B[${r+e}m`,B=(e=0)=>r=>`\x1B[${38+e};5;${r}m`,j=(e=0)=>(r,t,o)=>`\x1B[${38+e};2;${r};${t};${o}m`,l={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}},Ze=Object.keys(l.modifier),ie=Object.keys(l.color),le=Object.keys(l.bgColor),Je=[...ie,...le];function se(){let e=new Map;for(let[r,t]of Object.entries(l)){for(let[o,n]of Object.entries(t))l[o]={open:`\x1B[${n[0]}m`,close:`\x1B[${n[1]}m`},t[o]=l[o],e.set(n[0],n[1]);Object.defineProperty(l,r,{value:t,enumerable:!1})}return Object.defineProperty(l,"codes",{value:e,enumerable:!1}),l.color.close="\x1B[39m",l.bgColor.close="\x1B[49m",l.color.ansi=E(),l.color.ansi256=B(),l.color.ansi16m=j(),l.bgColor.ansi=E(10),l.bgColor.ansi256=B(10),l.bgColor.ansi16m=j(10),Object.defineProperties(l,{rgbToAnsi256:{value(r,t,o){return r===t&&t===o?r<8?16:r>248?231:Math.round((r-8)/247*24)+232:16+36*Math.round(r/255*5)+6*Math.round(t/255*5)+Math.round(o/255*5)},enumerable:!1},hexToRgb:{value(r){let t=/[a-f\d]{6}|[a-f\d]{3}/i.exec(r.toString(16));if(!t)return[0,0,0];let[o]=t;o.length===3&&(o=[...o].map(c=>c+c).join(""));let n=Number.parseInt(o,16);return[n>>16&255,n>>8&255,n&255]},enumerable:!1},hexToAnsi256:{value:r=>l.rgbToAnsi256(...l.hexToRgb(r)),enumerable:!1},ansi256ToAnsi:{value(r){if(r<8)return 30+r;if(r<16)return 90+(r-8);let t,o,n;if(r>=232)t=((r-232)*10+8)/255,o=t,n=t;else{r-=16;let v=r%36;t=Math.floor(r/36)/5,o=Math.floor(v/6)/5,n=v%6/5}let c=Math.max(t,o,n)*2;if(c===0)return 30;let u=30+(Math.round(n)<<2|Math.round(o)<<1|Math.round(t));return c===2&&(u+=60),u},enumerable:!1},rgbToAnsi:{value:(r,t,o)=>l.ansi256ToAnsi(l.rgbToAnsi256(r,t,o)),enumerable:!1},hexToAnsi:{value:r=>l.ansi256ToAnsi(l.hexToAnsi256(r)),enumerable:!1}}),l}var ce=se(),f=ce;i();import R from"node:process";import ue from"node:os";import N from"node:tty";function a(e,r=globalThis.Deno?globalThis.Deno.args:R.argv){let t=e.startsWith("-")?"":e.length===1?"-":"--",o=r.indexOf(t+e),n=r.indexOf("--");return o!==-1&&(n===-1||o<n)}var{env:s}=R,T;a("no-color")||a("no-colors")||a("color=false")||a("color=never")?T=0:(a("color")||a("colors")||a("color=true")||a("color=always"))&&(T=1);function ae(){if("FORCE_COLOR"in s)return s.FORCE_COLOR==="true"?1:s.FORCE_COLOR==="false"?0:s.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(s.FORCE_COLOR,10),3)}function fe(e){return e===0?!1:{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function be(e,{streamIsTTY:r,sniffFlags:t=!0}={}){let o=ae();o!==void 0&&(T=o);let n=t?T:o;if(n===0)return 0;if(t){if(a("color=16m")||a("color=full")||a("color=truecolor"))return 3;if(a("color=256"))return 2}if("TF_BUILD"in s&&"AGENT_NAME"in s)return 1;if(e&&!r&&n===void 0)return 0;let c=n||0;if(s.TERM==="dumb")return c;if(R.platform==="win32"){let u=ue.release().split(".");return Number(u[0])>=10&&Number(u[2])>=10586?Number(u[2])>=14931?3:2:1}if("CI"in s)return["GITHUB_ACTIONS","GITEA_ACTIONS","CIRCLECI"].some(u=>u in s)?3:["TRAVIS","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some(u=>u in s)||s.CI_NAME==="codeship"?1:c;if("TEAMCITY_VERSION"in s)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(s.TEAMCITY_VERSION)?1:0;if(s.COLORTERM==="truecolor"||s.TERM==="xterm-kitty"||s.TERM==="xterm-ghostty"||s.TERM==="wezterm")return 3;if("TERM_PROGRAM"in s){let u=Number.parseInt((s.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(s.TERM_PROGRAM){case"iTerm.app":return u>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(s.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(s.TERM)||"COLORTERM"in s?1:c}function M(e,r={}){let t=be(e,{streamIsTTY:e&&e.isTTY,...r});return fe(t)}var ge={stdout:M({isTTY:N.isatty(1)}),stderr:M({isTTY:N.isatty(2)})},I=ge;i();function F(e,r,t){let o=e.indexOf(r);if(o===-1)return e;let n=r.length,c=0,u="";do u+=e.slice(c,o)+r+t,c=o+n,o=e.indexOf(r,c);while(o!==-1);return u+=e.slice(c),u}function w(e,r,t,o){let n=0,c="";do{let u=e[o-1]==="\r";c+=e.slice(n,u?o-1:o)+r+(u?`\r
2
+ `:`
3
+ `)+t,n=o+1,o=e.indexOf(`
4
+ `,n)}while(o!==-1);return c+=e.slice(n),c}var{stdout:_,stderr:P}=I,C=Symbol("GENERATOR"),g=Symbol("STYLER"),d=Symbol("IS_EMPTY"),G=["ansi","ansi","ansi256","ansi16m"],p=Object.create(null),pe=(e,r={})=>{if(r.level&&!(Number.isInteger(r.level)&&r.level>=0&&r.level<=3))throw new Error("The `level` option should be an integer from 0 to 3");let t=_?_.level:0;e.level=r.level===void 0?t:r.level};var de=e=>{let r=(...t)=>t.join(" ");return pe(r,e),Object.setPrototypeOf(r,m.prototype),r};function m(e){return de(e)}Object.setPrototypeOf(m.prototype,Function.prototype);for(let[e,r]of Object.entries(f))p[e]={get(){let t=O(this,A(r.open,r.close,this[g]),this[d]);return Object.defineProperty(this,e,{value:t}),t}};p.visible={get(){let e=O(this,this[g],!0);return Object.defineProperty(this,"visible",{value:e}),e}};var x=(e,r,t,...o)=>e==="rgb"?r==="ansi16m"?f[t].ansi16m(...o):r==="ansi256"?f[t].ansi256(f.rgbToAnsi256(...o)):f[t].ansi(f.rgbToAnsi(...o)):e==="hex"?x("rgb",r,t,...f.hexToRgb(...o)):f[t][e](...o),me=["rgb","hex","ansi256"];for(let e of me){p[e]={get(){let{level:t}=this;return function(...o){let n=A(x(e,G[t],"color",...o),f.color.close,this[g]);return O(this,n,this[d])}}};let r="bg"+e[0].toUpperCase()+e.slice(1);p[r]={get(){let{level:t}=this;return function(...o){let n=A(x(e,G[t],"bgColor",...o),f.bgColor.close,this[g]);return O(this,n,this[d])}}}}var he=Object.defineProperties(()=>{},{...p,level:{enumerable:!0,get(){return this[C].level},set(e){this[C].level=e}}}),A=(e,r,t)=>{let o,n;return t===void 0?(o=e,n=r):(o=t.openAll+e,n=r+t.closeAll),{open:e,close:r,openAll:o,closeAll:n,parent:t}},O=(e,r,t)=>{let o=(...n)=>Te(o,n.length===1?""+n[0]:n.join(" "));return Object.setPrototypeOf(o,he),o[C]=e,o[g]=r,o[d]=t,o},Te=(e,r)=>{if(e.level<=0||!r)return e[d]?"":r;let t=e[g];if(t===void 0)return r;let{openAll:o,closeAll:n}=t;if(r.includes("\x1B"))for(;t!==void 0;)r=F(r,t.close,t.open),t=t.parent;let c=r.indexOf(`
5
+ `);return c!==-1&&(r=w(r,n,o,c)),o+r+n};Object.defineProperties(m.prototype,p);var Oe=m(),ar=m({level:P?P.level:0});var fr=Oe;export{$ as a,q as b,S as c,X as d,Re as e,re as f,Ue as g,ne as h,fr as i};
@@ -0,0 +1 @@
1
+ import{c as s,g as h}from"./chunk-VKWPEFWQ.js";var v=s((O,x)=>{"use strict";h();x.exports=p;function p(i,f,e){i instanceof RegExp&&(i=o(i,e)),f instanceof RegExp&&(f=o(f,e));var n=d(i,f,e);return n&&{start:n[0],end:n[1],pre:e.slice(0,n[0]),body:e.slice(n[0]+i.length,n[1]),post:e.slice(n[1]+f.length)}}function o(i,f){var e=f.match(i);return e?e[0]:null}p.range=d;function d(i,f,e){var n,a,c,u,g,l=e.indexOf(i),t=e.indexOf(f,l+1),r=l;if(l>=0&&t>0){if(i===f)return[l,t];for(n=[],c=e.length;r>=0&&!g;)r==l?(n.push(r),l=e.indexOf(i,r+1)):n.length==1?g=[n.pop(),t]:(a=n.pop(),a<c&&(c=a,u=t),t=e.indexOf(f,r+1)),r=l<t&&l>=0?l:t;n.length&&(g=[c,u])}return g}});export{v as a};
@@ -0,0 +1 @@
1
+ import{a as P}from"./chunk-CTNBSUVU.js";import{Db as f,eb as g,pb as E}from"./chunk-VFM2KQRM.js";import{e as m}from"./chunk-773TIA5M.js";import{e as A,g as p}from"./chunk-VKWPEFWQ.js";p();p();var w=new Set(["THROTTLED","429"]),I=new Set(["ACCESS_DENIED","access_denied"]);function b(e){return Array.isArray(e)?e.flatMap(t=>{let s=[],n=t,r=n?.extensions?.code;typeof r=="string"&&s.push(r);let c=n?.extensions?.app_errors?.errors;if(Array.isArray(c))for(let u of c){let d=u?.category;typeof d=="string"&&s.push(d)}return s}):[]}function C(e){return e!==void 0&&w.has(e)}function v(e){return e!==void 0&&I.has(e)}function h(e){return b(e).some(C)}var M=A(P(),1),o;(function(e){e[e.Abort=0]="Abort",e[e.AbortSilent=1]="AbortSilent",e[e.Bug=2]="Bug"})(o||(o={}));var x=class extends Error{},i=class extends Error{tryMessage;type;nextSteps;formattedMessage;customSections;skipOclifErrorHandling;constructor(t,s,n=null,r,c){let u=typeof t=="string"||"value"in t;super(u?f(t):g(t)),n?n instanceof E?this.tryMessage=f(n):this.tryMessage=n:this.tryMessage=null,this.type=s,this.nextSteps=r,this.customSections=c,this.skipOclifErrorHandling=!0,u||(this.formattedMessage=t)}},l=class extends i{constructor(t,s=null,n,r){super(t,o.Abort,s,n,r)}},y=class extends i{command;args;constructor(t,s,n,r=null){super(t,o.Abort,r),this.command=s,this.args=n}},S=class extends i{constructor(){super("",o.AbortSilent)}},a=class extends i{constructor(t,s=null){super(t,o.Bug,s)}};async function B(e){let t;if(k(e))t=e;else if(typeof e=="string")t=new a(e);else if(e instanceof Error)t=new a(e.message),t.stack=e.stack;else{let n=e;t=new a(n?.message??"Unknown error"),n?.stack&&(t.stack=n?.stack)}let{renderFatalError:s}=await import("./ui-H5I5YVKV.js");return s(t),Promise.resolve(e)}function H(e){if(e instanceof M.Errors.CLIError){let t=new l(e.message);return t.stack=e.stack,Promise.resolve(t)}else return Promise.resolve(e)}function k(e){try{return Object.prototype.hasOwnProperty.call(e,"type")}catch{return!1}}function j(e){if(!k(e)){if(e instanceof Error){if(O(e))return!1;let t=e.message;return!R(t)}return!0}return e.type===o.Bug}function O(e){let t=e;if(typeof t.response!="object"||t.response===null||t.request===void 0)return!1;let s=t.response.status;return s===401||s===429||s===502||s===503||s===504?!0:h(t.response.errors)}function q(e){return m(e).replace("file:/","/").replace(/^\/?[A-Z]:/,"")}function R(e){return["EPERM: operation not permitted, scandir","EPERM: operation not permitted, rename","EACCES: permission denied","EPERM: operation not permitted, symlink","This version of npm supports the following node versions","EBUSY: resource busy or locked","ENOTEMPTY: directory not empty","getaddrinfo ENOTFOUND","Client network socket disconnected before secure TLS connection was established","spawn EPERM","socket hang up","The user aborted a request.","write EPIPE","Unsupported platform"].some(n=>e.includes(n))}export{b as a,C as b,v as c,h as d,o as e,x as f,i as g,l as h,y as i,S as j,a as k,B as l,H as m,j as n,q as o};
@@ -0,0 +1,2 @@
1
+ import{b as x,c as D,f as M}from"./chunk-U53OLUOE.js";import{d as w}from"./chunk-3JXPOOFV.js";import{D as s,G as h,J as e,z as y}from"./chunk-YFINLODF.js";import{a as o}from"./chunk-VASGXHYA.js";import{ua as u,xb as _}from"./chunk-VFM2KQRM.js";import{g as p}from"./chunk-VKWPEFWQ.js";p();async function $(){let a=new Date,n=`${a.getFullYear()}-${(a.getMonth()+1).toString().padStart(2,"0")}-${a.getDate().toString().padStart(2,"0")}`,i=w(),t=await s({message:"Type of message?",choices:[{label:"Info",value:"info"},{label:"Warning",value:"warning"},{label:"Error",value:"error"}]}),b=await e({message:"Title"}),E=await e({message:"Message"}),S=await s({message:"Frequency",choices:[{label:"Only once",value:"once"},{label:"Once a week",value:"once_a_week"},{label:"Once a day",value:"once_a_day"},{label:"Always",value:"always"}]}),r=await e({message:"Minimum CLI version (optional)",initialAnswer:o,allowEmpty:!0}),l=await e({message:"Maximum CLI version (optional)",initialAnswer:o,allowEmpty:!0}),m=await e({message:"Minimum date in YYYY-MM-DD format (optional)",initialAnswer:n,allowEmpty:!0}),c=await e({message:"Maximum date in YYYY-MM-DD format (optional)",initialAnswer:n,allowEmpty:!0}),f=await e({message:"Surface. E.g.: app, theme, hydrogen, theme_app_extension... (optional)",allowEmpty:!0}),g=await e({message:"Comma separated list of commands. E.g.: app:generate:extension (optional)",allowEmpty:!0}),T=await e({message:"Slack channel of the team who will own this notification"}),d=await x(),v={id:i,type:t,title:b,frequency:S,message:E,minVersion:r.length===0?void 0:r,maxVersion:l.length===0?void 0:l,minDate:m.length===0?void 0:m,maxDate:c.length===0?void 0:c,surface:f.length===0?void 0:f,commands:g.length===0?void 0:g.split(",").map(N=>N.trim()),ownerChannel:T};d.notifications.push(v),await u("./notifications.json",JSON.stringify(d)),y({headline:"notifications.json file updated successfully."})}async function j(){let a=await D(),n={type:{header:"Type",color:"dim"},title:{header:"Title",color:"dim"},message:{header:"Message",color:"dim"},filters:{header:"Filters",color:"dim"}},i=a.notifications.map(t=>({type:t.type,title:t.title??"",message:t.message,filters:M(t)}));h({rows:i,columns:n}),_(`
2
+ `)}export{$ as a,j as b};
@@ -0,0 +1,6 @@
1
+ import{a as f,b as R,c as _,d as N,e as O,f as F,g as j,h as x,i as E,j as L}from"./chunk-XHKWITLA.js";import{a as $}from"./chunk-YESGYUEL.js";import{b as C,c as I}from"./chunk-YEVGLC5X.js";import{b as A}from"./chunk-2XDUJQQN.js";import{A as v,B as P,D as b,V as D,z as w}from"./chunk-YFINLODF.js";import{h as k}from"./chunk-BWJIZYAG.js";import{a as z}from"./chunk-CTNBSUVU.js";import{wb as S}from"./chunk-VFM2KQRM.js";import{d as a,f as c,g as y}from"./chunk-773TIA5M.js";import{e as q,g as i}from"./chunk-VKWPEFWQ.js";i();i();i();import{randomBytes as U}from"node:crypto";import{lstat as p,mkdir as Q,realpath as T,rename as X,unlink as Z,writeFile as tt}from"node:fs/promises";function et(t){let e=a(t,".shopify","app-doctor");return{artifactDirectory:e,reviewPath:a(e,"review.json"),tracePath:a(e,"trace.json")}}async function B(t){let e=et(t.appRoot);return await nt(t.appRoot,e.artifactDirectory),await W(e.tracePath,`${JSON.stringify(t.trace,null,2)}
2
+ `),t.operation!=="scan"?{artifactDirectory:e.artifactDirectory,tracePath:e.tracePath}:(await W(e.reviewPath,`${JSON.stringify(t.reviewPack,null,2)}
3
+ `),e)}async function nt(t,e){let n=c(t),o=c(e);J(n,o);let r=await p(n);(r.isSymbolicLink()||!r.isDirectory())&&d(o);let s=n;for(let K of[".shopify","app-doctor"])s=a(s,K),await ot(s);let u=await T(n),V=await T(o);J(u,V)}async function ot(t){try{let n=await p(t);(n.isSymbolicLink()||!n.isDirectory())&&d(t);return}catch(n){if(n.code!=="ENOENT")throw n}await Q(t,{mode:448});let e=await p(t);(e.isSymbolicLink()||!e.isDirectory())&&d(t)}function J(t,e){let n=y(t,e);(!n||n.startsWith("..")||n.startsWith("/"))&&d(e)}function d(t){throw new k(`Refusing to write App Doctor artifacts through a symbolic link or outside the app: ${t}`,"Remove or replace the unsafe App Doctor artifact path, then run the command again.")}async function W(t,e){await h(t);let n=`${t}.${U(8).toString("hex")}.tmp`;await h(n);try{await tt(n,e,{encoding:"utf8",mode:384}),await h(t),await X(n,t)}catch(o){throw await Z(n).catch(()=>{}),o}}async function h(t){try{(await p(t)).isSymbolicLink()&&d(t)}catch(e){if(e.code==="ENOENT")return;throw e}}i();function H(t){return t.operation==="scan"?{operation:"scan",engine:t.engine,scan:t.scan,trace:t.trace,reviewPack:t.reviewPack}:{operation:"compile",engine:t.engine,scan:t.scan,trace:t.trace,findings:t.findings}}function Y(t){return`${JSON.stringify(t,null,2)}
4
+ `}i();var rt={high:"High",medium:"Medium",low:"Low"};function it(t){return{type:st(t),options:{headline:at(t),body:ct(t),...t.findings?{}:{nextSteps:ft(t.commands)},reference:[{subdued:`Engine: ${t.engine.name} ${t.engine.version}`},{subdued:`Ruleset: ${t.engine.ruleset}`}],customSections:dt(t)}}}function G(t){let{type:e,options:n}=it(t);if(e==="success"){w(n);return}if(e==="warning"){v(n);return}P(n)}function M(t){return t.scan.score===null||!t.scan.scan.coverage_complete||t.scan.scan.coverage_gaps.length>0}function st(t){return t.findings&&t.findings.rejected.length>0||t.scan.issues.some(e=>e.severity==="high")?"error":t.scan.issues.length>0||M(t)?"warning":"success"}function at(t){if(t.findings&&t.findings.rejected.length>0)return"App Doctor could not compile some agent findings.";let e=t.scan.issues.length;return e>0?`${e} security ${e===1?"issue":"issues"} found.`:M(t)?"Scan completed with coverage gaps.":"No security issues found."}function ct(t){let e=t.scan,n=[{userInput:f(e.app.name)},{char:"."},`${e.scan.files_scanned} files scanned in ${ht(t.elapsedMilliseconds)}.`],o=e.scan.checks_executed.filter(r=>r.status==="not_applicable").length;return o>0&&n.push({info:`
5
+ ${o} check${o===1?"":"s"} not applicable.`}),t.reviewCheckCount!==void 0&&n.push({info:`
6
+ ${t.reviewCheckCount} check${t.reviewCheckCount===1?"":"s"} ready for your coding agent.`}),n}function ft(t){return[["Investigate the review pack, then compile the trace with",{command:E(t.compile)}]]}function dt(t){let e=[];for(let n of ut(t.scan.issues))e.push({title:rt[n.severity],body:{list:{items:n.issues.map(o=>lt(o,t.verbose))}}});if(t.scan.scan.coverage_gaps.length>0){let n=t.scan.scan.coverage_gaps,o=n.slice(0,8).map(r=>f(r.message));n.length>8&&o.push({info:`${n.length-8} more coverage gaps`}),e.push({title:"Coverage gaps",body:{list:{items:o}}})}if(t.findings){let n=[t.findings.accepted===0&&t.findings.rejected.length>0?"No agent findings were merged.":`Merged ${t.findings.accepted} agent finding(s) into the trace.`,...t.findings.rejected.map(o=>({error:`Rejected: ${f(o)}`})),...(t.findings.warnings??[]).map(o=>({warn:f(o)})),["Trace written to",{filePath:t.tracePath}]];e.push({title:"Agent findings",body:{list:{items:n}}})}else t.reviewPath&&e.push({title:"Artifacts",body:{list:{items:[["Review pack:",{filePath:t.reviewPath}],["Trace:",{filePath:t.tracePath}]]}}});return t.verbose&&e.push({title:"Scan details",body:{tabularData:[["Framework",t.scan.detection.framework],["Surface",t.scan.detection.surface],["Languages",t.scan.detection.languages.map(n=>`${n.name} (${n.support})`).join(", ")||"none"],["Capabilities",pt(t.scan.capabilities)],["Rules run",String(t.scan.scan.rules_run)],["Not run",String(t.scan.scan.rules_skipped)],["Input hash",t.scan.scan.input_hash],["Result hash",t.scan.scan.result_hash]],firstColumnSubdued:!0}}),e}function lt(t,e){let n=R(t),o=n.location.line?`${n.location.file}:${n.location.line}`:n.location.file,r=[{bold:n.title},{subdued:n.id},{filePath:o}];return e&&(r.push({subdued:n.message},{subdued:`Fix: ${n.fix.description}`}),n.fix.guide&&(n.fix.guide.startsWith("https://")||n.fix.guide.startsWith("http://")?r.push({link:{label:"Docs",url:n.fix.guide}}):r.push({subdued:`Docs: ${n.fix.guide}`})),n.snippet&&r.push({subdued:`Code: ${n.snippet}`})),r}function ut(t){let e=[];for(let n of _(t)){let o=e[e.length-1];o?.severity===n.severity?o.issues.push(n):e.push({severity:n.severity,issues:[n]})}return e}function pt(t){let e=Object.entries(t).filter(([,n])=>n).map(([n])=>n);return e.length>0?e.join(", "):"none detected"}function ht(t){return t<1e3?`${Math.round(t)}ms`:`${(t/1e3).toFixed(1)}s`}var mt={message:"How would you like to hand the results to your coding agent?",choices:[{label:"Copy instructions to the clipboard",value:"copy"},{label:"Print instructions to the terminal",value:"print"},{label:"Nothing",value:"nothing"}],defaultValue:"copy"},gt={execute:async({directory:t,findingsPath:e})=>{let n=F(t),o=e?await O(e):void 0;return j({appRoot:n,findings:o})},writeArtifacts:B,canPrompt:D,selectInstructionsDestination:()=>b(mt),deliverInstructions:L,output:S,renderReport:G,setExitCode:t=>{process.exitCode=t}};async function yt(t,e){return t.json||t.skipInstructions||t.findingsPath?"nothing":t.yes?"print":e.canPrompt()?e.selectInstructionsDestination():"nothing"}function wt(t,e,n,o){return{scan:t.scan,engine:t.engine,verbose:n,elapsedMilliseconds:t.elapsedMilliseconds,commands:o,tracePath:e.tracePath,reviewPath:e.reviewPath,reviewCheckCount:t.operation==="scan"?t.reviewPack.checks.length:void 0,findings:t.operation==="compile"?t.findings:void 0}}async function m(t,e=gt){let n=await e.execute({directory:t.directory,findingsPath:t.findingsPath}),o=await e.writeArtifacts(n),r=x(n.appRoot);t.json?e.output(Y(H(n))):e.renderReport(wt(n,o,t.verbose,r));let s=await yt(t,e);s!=="nothing"&&await e.deliverInstructions({directory:t.directory,copy:s==="copy",scanComplete:!0,commands:r});let u=N(n,t.blocking);u!==0&&e.setExitCode(u)}var l=q(z(),1);var vt=["high","medium","low","none"],g=class t extends A{static hidden=!0;static summary="Check an app for Shopify-specific security issues.";static descriptionWithMarkdown="Runs Shopify App Doctor locally and creates its review pack and trace.\n\nPass `--findings` after completing the review pack to validate agent findings and compile them into the trace. In interactive terminals, the command offers to copy the coding-agent instructions, print them, or choose nothing; copying is the default. In CI and other non-interactive environments, instructions aren't offered unless you pass `--yes`, which prints them. JSON output never prompts or prints those instructions. You can also run `shopify app doctor instructions` to print, copy, or write them later.\n\nCVE detection runs `npm audit` (or the pnpm/yarn equivalent) in an isolated sandbox and sends package names and versions to the public npm registry at https://registry.npmjs.org/.";static description=this.descriptionWithoutMarkdown();static flags={...C,path:$.path,...I,findings:l.Flags.string({description:"Validate agent findings from a JSON file and compile them into the trace.",parse:async e=>c(e),env:"SHOPIFY_FLAG_APP_DOCTOR_FINDINGS"}),blocking:l.Flags.string({description:"The minimum finding severity that causes a non-zero exit code.",options:vt,default:"none",env:"SHOPIFY_FLAG_APP_DOCTOR_BLOCKING"}),yes:l.Flags.boolean({description:"Print coding-agent instructions without prompting.",default:!1,exclusive:["skip-instructions"],env:"SHOPIFY_FLAG_YES"}),"skip-instructions":l.Flags.boolean({description:"Don't offer to show coding-agent instructions.",default:!1,exclusive:["yes"],env:"SHOPIFY_FLAG_APP_DOCTOR_SKIP_INSTRUCTIONS"})};async run(){let{flags:e}=await this.parse(t);await m({directory:e.path,json:e.json,verbose:!!e.verbose,blocking:e.blocking,yes:e.yes,skipInstructions:e["skip-instructions"],findingsPath:e.findings})}};export{g as a};
@@ -0,0 +1,64 @@
1
+ import{a as bs,b as Ir,c as le,d as Es}from"./chunk-Q5LIJGT7.js";import{a as ct}from"./chunk-ZI7LK3LW.js";import{Y as Or,Z as ys,_ as _s}from"./chunk-F3NYCSXT.js";import{c as vs}from"./chunk-F3TMLDLC.js";import{Da as gs}from"./chunk-3JXPOOFV.js";import{Ab as ft,Wa as ot,ha as Fe,qb as Pe,sb as ut,ya as Sr}from"./chunk-VFM2KQRM.js";import{a as ms}from"./chunk-BOAGJ6P5.js";import{d as wr,g as st,i as at}from"./chunk-773TIA5M.js";import{a as S,c as E,e as ds,g as c}from"./chunk-VKWPEFWQ.js";var Fr=E((Ac,Rr)=>{c();Rr.exports=Dr;var lt=S("fs"),{EventEmitter:xs}=S("events"),{Minimatch:ht}=ys(),{resolve:ws}=S("path");function Ss(e,t){return new Promise((r,i)=>{lt.readdir(e,{withFileTypes:!0},(n,s)=>{if(n)switch(n.code){case"ENOTDIR":t?i(n):r([]);break;case"ENOTSUP":case"ENOENT":case"ENAMETOOLONG":case"UNKNOWN":r([]);break;default:i(n);break}else r(s)})})}function Tr(e,t){return new Promise((r,i)=>{(t?lt.stat:lt.lstat)(e,(s,a)=>{s?s.code==="ENOENT"?r(t?Tr(e,!1):null):r(null):r(a)})})}async function*Ar(e,t,r,i,n,s){let a=await Ss(t+e,s);for(let o of a){let u=o.name;u===void 0&&(u=o,i=!0);let f=e+"/"+u,l=f.slice(1),d=t+"/"+l,h=null;(i||r)&&(h=await Tr(d,r)),!h&&o.name!==void 0&&(h=o),h===null&&(h={isDirectory:()=>!1}),h.isDirectory()?n(l)||(yield{relative:l,absolute:d,stats:h},yield*Ar(f,t,r,i,n,!1)):yield{relative:l,absolute:d,stats:h}}}async function*Os(e,t,r,i){yield*Ar("",e,t,r,i,!0)}function Is(e){return{pattern:e.pattern,dot:!!e.dot,noglobstar:!!e.noglobstar,matchBase:!!e.matchBase,nocase:!!e.nocase,ignore:e.ignore,skip:e.skip,follow:!!e.follow,stat:!!e.stat,nodir:!!e.nodir,mark:!!e.mark,silent:!!e.silent,absolute:!!e.absolute}}var Ce=class extends xs{constructor(t,r,i){if(super(),typeof r=="function"&&(i=r,r=null),this.options=Is(r||{}),this.matchers=[],this.options.pattern){let n=Array.isArray(this.options.pattern)?this.options.pattern:[this.options.pattern];this.matchers=n.map(s=>new ht(s,{dot:this.options.dot,noglobstar:this.options.noglobstar,matchBase:this.options.matchBase,nocase:this.options.nocase}))}if(this.ignoreMatchers=[],this.options.ignore){let n=Array.isArray(this.options.ignore)?this.options.ignore:[this.options.ignore];this.ignoreMatchers=n.map(s=>new ht(s,{dot:!0}))}if(this.skipMatchers=[],this.options.skip){let n=Array.isArray(this.options.skip)?this.options.skip:[this.options.skip];this.skipMatchers=n.map(s=>new ht(s,{dot:!0}))}this.iterator=Os(ws(t||"."),this.options.follow,this.options.stat,this._shouldSkipDirectory.bind(this)),this.paused=!1,this.inactive=!1,this.aborted=!1,i&&(this._matches=[],this.on("match",n=>this._matches.push(this.options.absolute?n.absolute:n.relative)),this.on("error",n=>i(n)),this.on("end",()=>i(null,this._matches))),setTimeout(()=>this._next(),0)}_shouldSkipDirectory(t){return this.skipMatchers.some(r=>r.match(t))}_fileMatches(t,r){let i=t+(r?"/":"");return(this.matchers.length===0||this.matchers.some(n=>n.match(i)))&&!this.ignoreMatchers.some(n=>n.match(i))&&(!this.options.nodir||!r)}_next(){!this.paused&&!this.aborted?this.iterator.next().then(t=>{if(t.done)this.emit("end");else{let r=t.value.stats.isDirectory();if(this._fileMatches(t.value.relative,r)){let i=t.value.relative,n=t.value.absolute;this.options.mark&&r&&(i+="/",n+="/"),this.options.stat?this.emit("match",{relative:i,absolute:n,stat:t.value.stats}):this.emit("match",{relative:i,absolute:n})}this._next(this.iterator)}}).catch(t=>{this.abort(),this.emit("error",t),!t.code&&!this.options.silent&&console.error(t)}):this.inactive=!0}abort(){this.aborted=!0}pause(){this.paused=!0}resume(){this.paused=!1,this.inactive&&(this.inactive=!1,this._next())}};function Dr(e,t,r){return new Ce(e,t,r)}Dr.ReaddirGlob=Ce});var Cr=E((Rc,Pr)=>{c();Pr.exports=Ir().PassThrough});var pt=E((Pc,Nr)=>{c();var Lr=S("util"),Ne=Cr();Nr.exports={Readable:Le,Writable:Me};Lr.inherits(Le,Ne);Lr.inherits(Me,Ne);function Mr(e,t,r){e[t]=function(){return delete e[t],r.apply(this,arguments),this[t].apply(this,arguments)}}function Le(e,t){if(!(this instanceof Le))return new Le(e,t);Ne.call(this,t),Mr(this,"_read",function(){var r=e.call(this,t),i=this.emit.bind(this,"error");r.on("error",i),r.pipe(this)}),this.emit("readable")}function Me(e,t){if(!(this instanceof Me))return new Me(e,t);Ne.call(this,t),Mr(this,"_write",function(){var r=e.call(this,t),i=this.emit.bind(this,"error");r.on("error",i),this.pipe(r)}),this.emit("writable")}});var yt=E((Lc,kr)=>{c();var Br=9007199254740991,Ts="[object Arguments]",As="[object Function]",Ds="[object GeneratorFunction]",Rs=/^(?:0|[1-9]\d*)$/;function qr(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function Fs(e,t){for(var r=-1,i=Array(e);++r<e;)i[r]=t(r);return i}var Ee=Object.prototype,xe=Ee.hasOwnProperty,Gr=Ee.toString,Ps=Ee.propertyIsEnumerable,zr=Math.max;function Cs(e,t){var r=ks(e)||Us(e)?Fs(e.length,String):[],i=r.length,n=!!i;for(var s in e)(t||xe.call(e,s))&&!(n&&(s=="length"||Ur(s,i)))&&r.push(s);return r}function Ls(e,t,r,i){return e===void 0||dt(e,Ee[r])&&!xe.call(i,r)?t:e}function Ms(e,t,r){var i=e[t];(!(xe.call(e,t)&&dt(i,r))||r===void 0&&!(t in e))&&(e[t]=r)}function Ns(e){if(!gt(e))return js(e);var t=Gs(e),r=[];for(var i in e)i=="constructor"&&(t||!xe.call(e,i))||r.push(i);return r}function jr(e,t){return t=zr(t===void 0?e.length-1:t,0),function(){for(var r=arguments,i=-1,n=zr(r.length-t,0),s=Array(n);++i<n;)s[i]=r[t+i];i=-1;for(var a=Array(t+1);++i<t;)a[i]=r[i];return a[t]=s,qr(e,this,a)}}function zs(e,t,r,i){r||(r={});for(var n=-1,s=t.length;++n<s;){var a=t[n],o=i?i(r[a],e[a],a,r,e):void 0;Ms(r,a,o===void 0?e[a]:o)}return r}function Bs(e){return jr(function(t,r){var i=-1,n=r.length,s=n>1?r[n-1]:void 0,a=n>2?r[2]:void 0;for(s=e.length>3&&typeof s=="function"?(n--,s):void 0,a&&qs(r[0],r[1],a)&&(s=n<3?void 0:s,n=1),t=Object(t);++i<n;){var o=r[i];o&&e(t,o,i,s)}return t})}function Ur(e,t){return t=t??Br,!!t&&(typeof e=="number"||Rs.test(e))&&e>-1&&e%1==0&&e<t}function qs(e,t,r){if(!gt(r))return!1;var i=typeof t;return(i=="number"?mt(r)&&Ur(t,r.length):i=="string"&&t in r)?dt(r[t],e):!1}function Gs(e){var t=e&&e.constructor,r=typeof t=="function"&&t.prototype||Ee;return e===r}function js(e){var t=[];if(e!=null)for(var r in Object(e))t.push(r);return t}function dt(e,t){return e===t||e!==e&&t!==t}function Us(e){return Zs(e)&&xe.call(e,"callee")&&(!Ps.call(e,"callee")||Gr.call(e)==Ts)}var ks=Array.isArray;function mt(e){return e!=null&&Qs(e.length)&&!Hs(e)}function Zs(e){return $s(e)&&mt(e)}function Hs(e){var t=gt(e)?Gr.call(e):"";return t==As||t==Ds}function Qs(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=Br}function gt(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function $s(e){return!!e&&typeof e=="object"}var Ys=Bs(function(e,t,r,i){zs(t,Vs(t),e,i)}),Ks=jr(function(e){return e.push(void 0,Ls),qr(Ys,void 0,e)});function Vs(e){return mt(e)?Cs(e,!0):Ns(e)}kr.exports=Ks});var _t=E((Nc,Yr)=>{c();var Ws=9007199254740991,Xs="[object Arguments]",Js="[object Function]",ea="[object GeneratorFunction]",ta=typeof global=="object"&&global&&global.Object===Object&&global,ra=typeof self=="object"&&self&&self.Object===Object&&self,ia=ta||ra||Function("return this")();function na(e,t){for(var r=-1,i=t.length,n=e.length;++r<i;)e[n+r]=t[r];return e}var vt=Object.prototype,sa=vt.hasOwnProperty,Qr=vt.toString,Zr=ia.Symbol,aa=vt.propertyIsEnumerable,Hr=Zr?Zr.isConcatSpreadable:void 0;function $r(e,t,r,i,n){var s=-1,a=e.length;for(r||(r=oa),n||(n=[]);++s<a;){var o=e[s];t>0&&r(o)?t>1?$r(o,t-1,r,i,n):na(n,o):i||(n[n.length]=o)}return n}function oa(e){return ca(e)||fa(e)||!!(Hr&&e&&e[Hr])}function ua(e){var t=e?e.length:0;return t?$r(e,1):[]}function fa(e){return la(e)&&sa.call(e,"callee")&&(!aa.call(e,"callee")||Qr.call(e)==Xs)}var ca=Array.isArray;function ha(e){return e!=null&&da(e.length)&&!pa(e)}function la(e){return ga(e)&&ha(e)}function pa(e){var t=ma(e)?Qr.call(e):"";return t==Js||t==ea}function da(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=Ws}function ma(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function ga(e){return!!e&&typeof e=="object"}Yr.exports=ua});var Ot=E((Bc,si)=>{c();var ya=200,xt="__lodash_hash_undefined__",va=9007199254740991,_a="[object Arguments]",ba="[object Function]",Ea="[object GeneratorFunction]",xa=/[\\^$.*+?()[\]{}|]/g,wa=/^\[object .+?Constructor\]$/,Sa=typeof global=="object"&&global&&global.Object===Object&&global,Oa=typeof self=="object"&&self&&self.Object===Object&&self,wt=Sa||Oa||Function("return this")();function Ia(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function Ta(e,t){var r=e?e.length:0;return!!r&&Pa(e,t,0)>-1}function Aa(e,t,r){for(var i=-1,n=e?e.length:0;++i<n;)if(r(t,e[i]))return!0;return!1}function Da(e,t){for(var r=-1,i=e?e.length:0,n=Array(i);++r<i;)n[r]=t(e[r],r,e);return n}function Ra(e,t){for(var r=-1,i=t.length,n=e.length;++r<i;)e[n+r]=t[r];return e}function Fa(e,t,r,i){for(var n=e.length,s=r+(i?1:-1);i?s--:++s<n;)if(t(e[s],s,e))return s;return-1}function Pa(e,t,r){if(t!==t)return Fa(e,Ca,r);for(var i=r-1,n=e.length;++i<n;)if(e[i]===t)return i;return-1}function Ca(e){return e!==e}function La(e){return function(t){return e(t)}}function Ma(e,t){return e.has(t)}function Na(e,t){return e?.[t]}function za(e){var t=!1;if(e!=null&&typeof e.toString!="function")try{t=!!(e+"")}catch{}return t}var Ba=Array.prototype,qa=Function.prototype,St=Object.prototype,bt=wt["__core-js_shared__"],Kr=(function(){var e=/[^.]+$/.exec(bt&&bt.keys&&bt.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""})(),Jr=qa.toString,Be=St.hasOwnProperty,ei=St.toString,Ga=RegExp("^"+Jr.call(Be).replace(xa,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Vr=wt.Symbol,ja=St.propertyIsEnumerable,Ua=Ba.splice,Wr=Vr?Vr.isConcatSpreadable:void 0,Xr=Math.max,ka=ri(wt,"Map"),we=ri(Object,"create");function ne(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function Za(){this.__data__=we?we(null):{}}function Ha(e){return this.has(e)&&delete this.__data__[e]}function Qa(e){var t=this.__data__;if(we){var r=t[e];return r===xt?void 0:r}return Be.call(t,e)?t[e]:void 0}function $a(e){var t=this.__data__;return we?t[e]!==void 0:Be.call(t,e)}function Ya(e,t){var r=this.__data__;return r[e]=we&&t===void 0?xt:t,this}ne.prototype.clear=Za;ne.prototype.delete=Ha;ne.prototype.get=Qa;ne.prototype.has=$a;ne.prototype.set=Ya;function pe(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function Ka(){this.__data__=[]}function Va(e){var t=this.__data__,r=qe(t,e);if(r<0)return!1;var i=t.length-1;return r==i?t.pop():Ua.call(t,r,1),!0}function Wa(e){var t=this.__data__,r=qe(t,e);return r<0?void 0:t[r][1]}function Xa(e){return qe(this.__data__,e)>-1}function Ja(e,t){var r=this.__data__,i=qe(r,e);return i<0?r.push([e,t]):r[i][1]=t,this}pe.prototype.clear=Ka;pe.prototype.delete=Va;pe.prototype.get=Wa;pe.prototype.has=Xa;pe.prototype.set=Ja;function de(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function eo(){this.__data__={hash:new ne,map:new(ka||pe),string:new ne}}function to(e){return Ge(this,e).delete(e)}function ro(e){return Ge(this,e).get(e)}function io(e){return Ge(this,e).has(e)}function no(e,t){return Ge(this,e).set(e,t),this}de.prototype.clear=eo;de.prototype.delete=to;de.prototype.get=ro;de.prototype.has=io;de.prototype.set=no;function ze(e){var t=-1,r=e?e.length:0;for(this.__data__=new de;++t<r;)this.add(e[t])}function so(e){return this.__data__.set(e,xt),this}function ao(e){return this.__data__.has(e)}ze.prototype.add=ze.prototype.push=so;ze.prototype.has=ao;function qe(e,t){for(var r=e.length;r--;)if(go(e[r][0],t))return r;return-1}function oo(e,t,r,i){var n=-1,s=Ta,a=!0,o=e.length,u=[],f=t.length;if(!o)return u;r&&(t=Da(t,La(r))),i?(s=Aa,a=!1):t.length>=ya&&(s=Ma,a=!1,t=new ze(t));e:for(;++n<o;){var l=e[n],d=r?r(l):l;if(l=i||l!==0?l:0,a&&d===d){for(var h=f;h--;)if(t[h]===d)continue e;u.push(l)}else s(t,d,i)||u.push(l)}return u}function ti(e,t,r,i,n){var s=-1,a=e.length;for(r||(r=co),n||(n=[]);++s<a;){var o=e[s];t>0&&r(o)?t>1?ti(o,t-1,r,i,n):Ra(n,o):i||(n[n.length]=o)}return n}function uo(e){if(!ni(e)||lo(e))return!1;var t=ii(e)||za(e)?Ga:wa;return t.test(po(e))}function fo(e,t){return t=Xr(t===void 0?e.length-1:t,0),function(){for(var r=arguments,i=-1,n=Xr(r.length-t,0),s=Array(n);++i<n;)s[i]=r[t+i];i=-1;for(var a=Array(t+1);++i<t;)a[i]=r[i];return a[t]=s,Ia(e,this,a)}}function Ge(e,t){var r=e.__data__;return ho(t)?r[typeof t=="string"?"string":"hash"]:r.map}function ri(e,t){var r=Na(e,t);return uo(r)?r:void 0}function co(e){return vo(e)||yo(e)||!!(Wr&&e&&e[Wr])}function ho(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function lo(e){return!!Kr&&Kr in e}function po(e){if(e!=null){try{return Jr.call(e)}catch{}try{return e+""}catch{}}return""}var mo=fo(function(e,t){return Et(e)?oo(e,ti(t,1,Et,!0)):[]});function go(e,t){return e===t||e!==e&&t!==t}function yo(e){return Et(e)&&Be.call(e,"callee")&&(!ja.call(e,"callee")||ei.call(e)==_a)}var vo=Array.isArray;function _o(e){return e!=null&&bo(e.length)&&!ii(e)}function Et(e){return Eo(e)&&_o(e)}function ii(e){var t=ni(e)?ei.call(e):"";return t==ba||t==Ea}function bo(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=va}function ni(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function Eo(e){return!!e&&typeof e=="object"}si.exports=mo});var Ft=E((Gc,yi)=>{c();var xo=200,At="__lodash_hash_undefined__",wo=1/0,So=9007199254740991,Oo="[object Arguments]",Io="[object Function]",To="[object GeneratorFunction]",Ao=/[\\^$.*+?()[\]{}|]/g,Do=/^\[object .+?Constructor\]$/,Ro=typeof global=="object"&&global&&global.Object===Object&&global,Fo=typeof self=="object"&&self&&self.Object===Object&&self,Ue=Ro||Fo||Function("return this")();function Po(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function Co(e,t){var r=e?e.length:0;return!!r&&zo(e,t,0)>-1}function Lo(e,t,r){for(var i=-1,n=e?e.length:0;++i<n;)if(r(t,e[i]))return!0;return!1}function Mo(e,t){for(var r=-1,i=t.length,n=e.length;++r<i;)e[n+r]=t[r];return e}function No(e,t,r,i){for(var n=e.length,s=r+(i?1:-1);i?s--:++s<n;)if(t(e[s],s,e))return s;return-1}function zo(e,t,r){if(t!==t)return No(e,Bo,r);for(var i=r-1,n=e.length;++i<n;)if(e[i]===t)return i;return-1}function Bo(e){return e!==e}function qo(e,t){return e.has(t)}function Go(e,t){return e?.[t]}function jo(e){var t=!1;if(e!=null&&typeof e.toString!="function")try{t=!!(e+"")}catch{}return t}function ci(e){var t=-1,r=Array(e.size);return e.forEach(function(i){r[++t]=i}),r}var Uo=Array.prototype,ko=Function.prototype,Dt=Object.prototype,It=Ue["__core-js_shared__"],ai=(function(){var e=/[^.]+$/.exec(It&&It.keys&&It.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""})(),hi=ko.toString,ke=Dt.hasOwnProperty,li=Dt.toString,Zo=RegExp("^"+hi.call(ke).replace(Ao,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),oi=Ue.Symbol,Ho=Dt.propertyIsEnumerable,Qo=Uo.splice,ui=oi?oi.isConcatSpreadable:void 0,fi=Math.max,$o=Rt(Ue,"Map"),Tt=Rt(Ue,"Set"),Se=Rt(Object,"create");function se(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function Yo(){this.__data__=Se?Se(null):{}}function Ko(e){return this.has(e)&&delete this.__data__[e]}function Vo(e){var t=this.__data__;if(Se){var r=t[e];return r===At?void 0:r}return ke.call(t,e)?t[e]:void 0}function Wo(e){var t=this.__data__;return Se?t[e]!==void 0:ke.call(t,e)}function Xo(e,t){var r=this.__data__;return r[e]=Se&&t===void 0?At:t,this}se.prototype.clear=Yo;se.prototype.delete=Ko;se.prototype.get=Vo;se.prototype.has=Wo;se.prototype.set=Xo;function me(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function Jo(){this.__data__=[]}function eu(e){var t=this.__data__,r=Ze(t,e);if(r<0)return!1;var i=t.length-1;return r==i?t.pop():Qo.call(t,r,1),!0}function tu(e){var t=this.__data__,r=Ze(t,e);return r<0?void 0:t[r][1]}function ru(e){return Ze(this.__data__,e)>-1}function iu(e,t){var r=this.__data__,i=Ze(r,e);return i<0?r.push([e,t]):r[i][1]=t,this}me.prototype.clear=Jo;me.prototype.delete=eu;me.prototype.get=tu;me.prototype.has=ru;me.prototype.set=iu;function ge(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}function nu(){this.__data__={hash:new se,map:new($o||me),string:new se}}function su(e){return He(this,e).delete(e)}function au(e){return He(this,e).get(e)}function ou(e){return He(this,e).has(e)}function uu(e,t){return He(this,e).set(e,t),this}ge.prototype.clear=nu;ge.prototype.delete=su;ge.prototype.get=au;ge.prototype.has=ou;ge.prototype.set=uu;function je(e){var t=-1,r=e?e.length:0;for(this.__data__=new ge;++t<r;)this.add(e[t])}function fu(e){return this.__data__.set(e,At),this}function cu(e){return this.__data__.has(e)}je.prototype.add=je.prototype.push=fu;je.prototype.has=cu;function Ze(e,t){for(var r=e.length;r--;)if(bu(e[r][0],t))return r;return-1}function pi(e,t,r,i,n){var s=-1,a=e.length;for(r||(r=mu),n||(n=[]);++s<a;){var o=e[s];t>0&&r(o)?t>1?pi(o,t-1,r,i,n):Mo(n,o):i||(n[n.length]=o)}return n}function hu(e){if(!gi(e)||yu(e))return!1;var t=mi(e)||jo(e)?Zo:Do;return t.test(vu(e))}function lu(e,t){return t=fi(t===void 0?e.length-1:t,0),function(){for(var r=arguments,i=-1,n=fi(r.length-t,0),s=Array(n);++i<n;)s[i]=r[t+i];i=-1;for(var a=Array(t+1);++i<t;)a[i]=r[i];return a[t]=s,Po(e,this,a)}}function pu(e,t,r){var i=-1,n=Co,s=e.length,a=!0,o=[],u=o;if(r)a=!1,n=Lo;else if(s>=xo){var f=t?null:du(e);if(f)return ci(f);a=!1,n=qo,u=new je}else u=t?[]:o;e:for(;++i<s;){var l=e[i],d=t?t(l):l;if(l=r||l!==0?l:0,a&&d===d){for(var h=u.length;h--;)if(u[h]===d)continue e;t&&u.push(d),o.push(l)}else n(u,d,r)||(u!==o&&u.push(d),o.push(l))}return o}var du=Tt&&1/ci(new Tt([,-0]))[1]==wo?function(e){return new Tt(e)}:Iu;function He(e,t){var r=e.__data__;return gu(t)?r[typeof t=="string"?"string":"hash"]:r.map}function Rt(e,t){var r=Go(e,t);return hu(r)?r:void 0}function mu(e){return xu(e)||Eu(e)||!!(ui&&e&&e[ui])}function gu(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function yu(e){return!!ai&&ai in e}function vu(e){if(e!=null){try{return hi.call(e)}catch{}try{return e+""}catch{}}return""}var _u=lu(function(e){return pu(pi(e,1,di,!0))});function bu(e,t){return e===t||e!==e&&t!==t}function Eu(e){return di(e)&&ke.call(e,"callee")&&(!Ho.call(e,"callee")||li.call(e)==Oo)}var xu=Array.isArray;function wu(e){return e!=null&&Su(e.length)&&!mi(e)}function di(e){return Ou(e)&&wu(e)}function mi(e){var t=gi(e)?li.call(e):"";return t==Io||t==To}function Su(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=So}function gi(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function Ou(e){return!!e&&typeof e=="object"}function Iu(){}yi.exports=_u});var Pt=E((Uc,bi)=>{c();var Tu="[object Object]";function Au(e){var t=!1;if(e!=null&&typeof e.toString!="function")try{t=!!(e+"")}catch{}return t}function Du(e,t){return function(r){return e(t(r))}}var Ru=Function.prototype,vi=Object.prototype,_i=Ru.toString,Fu=vi.hasOwnProperty,Pu=_i.call(Object),Cu=vi.toString,Lu=Du(Object.getPrototypeOf,Object);function Mu(e){return!!e&&typeof e=="object"}function Nu(e){if(!Mu(e)||Cu.call(e)!=Tu||Au(e))return!1;var t=Lu(e);if(t===null)return!0;var r=Fu.call(t,"constructor")&&t.constructor;return typeof r=="function"&&r instanceof r&&_i.call(r)==Pu}bi.exports=Nu});var xi=E((Zc,Ei)=>{c();Ei.exports=function(e,t){for(var r=[],i=0;i<e.length;i++){var n=t(e[i],i);zu(n)?r.push.apply(r,n):r.push(n)}return r};var zu=Array.isArray||function(e){return Object.prototype.toString.call(e)==="[object Array]"}});var Ri=E((Qc,Di)=>{c();var Bu=xi(),wi=ms();Di.exports=ju;var Si="\0SLASH"+Math.random()+"\0",Oi="\0OPEN"+Math.random()+"\0",Lt="\0CLOSE"+Math.random()+"\0",Ii="\0COMMA"+Math.random()+"\0",Ti="\0PERIOD"+Math.random()+"\0";function Ct(e){return parseInt(e,10)==e?parseInt(e,10):e.charCodeAt(0)}function qu(e){return e.split("\\\\").join(Si).split("\\{").join(Oi).split("\\}").join(Lt).split("\\,").join(Ii).split("\\.").join(Ti)}function Gu(e){return e.split(Si).join("\\").split(Oi).join("{").split(Lt).join("}").split(Ii).join(",").split(Ti).join(".")}function Ai(e){if(!e)return[""];var t=[],r=wi("{","}",e);if(!r)return e.split(",");var i=r.pre,n=r.body,s=r.post,a=i.split(",");a[a.length-1]+="{"+n+"}";var o=Ai(s);return s.length&&(a[a.length-1]+=o.shift(),a.push.apply(a,o)),t.push.apply(t,a),t}function ju(e,t){if(!e)return[];t=t||{};var r=t.max==null?1/0:t.max;return e.substr(0,2)==="{}"&&(e="\\{\\}"+e.substr(2)),Oe(qu(e),r,!0).map(Gu)}function Uu(e){return"{"+e+"}"}function ku(e){return/^-?0\d/.test(e)}function Zu(e,t){return e<=t}function Hu(e,t){return e>=t}function Oe(e,t,r){for(var i=[];;){var n=wi("{","}",e);if(!n||/\$$/.test(n.pre))return[e];var s=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(n.body),a=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(n.body),o=s||a,u=n.body.indexOf(",")>=0;if(!o&&!u){if(n.post.match(/,(?!,).*\}/)){e=n.pre+"{"+n.body+Lt+n.post,r=!0;continue}return[e]}var f;if(o)f=n.body.split(/\.\./);else if(f=Ai(n.body),f.length===1&&(f=Oe(f[0],t,!1).map(Uu),f.length===1)){var d=n.post.length?Oe(n.post,t,!1):[""];return d.map(function(P){return n.pre+f[0]+P})}var l=n.pre,d=n.post.length?Oe(n.post,t,!1):[""],h;if(o){var g=Ct(f[0]),v=Ct(f[1]),O=Math.max(f[0].length,f[1].length),F=f.length==3?Math.max(Math.abs(Ct(f[2])),1):1,D=Zu,C=v<g;C&&(F*=-1,D=Hu);var $=f.some(ku);h=[];for(var q=g;D(q,v)&&h.length<t;q+=F){var M;if(a)M=String.fromCharCode(q),M==="\\"&&(M="");else if(M=String(q),$){var W=O-M.length;if(W>0){var p=new Array(W+1).join("0");q<0?M="-"+p+M.slice(1):M=p+M}}h.push(M)}}else h=Bu(f,function(I){return Oe(I,t,!1)});for(var R=0;R<h.length;R++)for(var m=0;m<d.length&&i.length<t;m++){var w=l+h[R]+d[m];(!r||o||w)&&i.push(w)}return i}}});var Ye=E((Yc,Mi)=>{c();Mi.exports=U;U.Minimatch=N;var Ie=(function(){try{return S("path")}catch{}})()||{sep:"/"};U.sep=Ie.sep;var ae=U.GLOBSTAR=N.GLOBSTAR={},Qu=Ri(),Fi={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},Mt="[^/]",Nt=Mt+"*?",$u="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",Yu="(?:(?!(?:\\/|^)\\.).)*?",Pi=Ku("().*{}+?[]^$\\!");function Ku(e){return e.split("").reduce(function(t,r){return t[r]=!0,t},{})}var Ci=/\/+/;U.filter=Vu;function Vu(e,t){return t=t||{},function(r,i,n){return U(r,e,t)}}function X(e,t){t=t||{};var r={};return Object.keys(e).forEach(function(i){r[i]=e[i]}),Object.keys(t).forEach(function(i){r[i]=t[i]}),r}U.defaults=function(e){if(!e||typeof e!="object"||!Object.keys(e).length)return U;var t=U,r=function(n,s,a){return t(n,s,X(e,a))};return r.Minimatch=function(n,s){return new t.Minimatch(n,X(e,s))},r.Minimatch.defaults=function(n){return t.defaults(X(e,n)).Minimatch},r.filter=function(n,s){return t.filter(n,X(e,s))},r.defaults=function(n){return t.defaults(X(e,n))},r.makeRe=function(n,s){return t.makeRe(n,X(e,s))},r.braceExpand=function(n,s){return t.braceExpand(n,X(e,s))},r.match=function(i,n,s){return t.match(i,n,X(e,s))},r};N.defaults=function(e){return U.defaults(e).Minimatch};function U(e,t,r){return $e(t),r||(r={}),!r.nocomment&&t.charAt(0)==="#"?!1:new N(t,r).match(e)}function N(e,t){if(!(this instanceof N))return new N(e,t);$e(e),t||(t={}),e=e.trim(),!t.allowWindowsEscape&&Ie.sep!=="/"&&(e=e.split(Ie.sep).join("/")),this.options=t,this.maxGlobstarRecursion=t.maxGlobstarRecursion!==void 0?t.maxGlobstarRecursion:200,this.set=[],this.pattern=e,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.partial=!!t.partial,this.make()}N.prototype.debug=function(){};N.prototype.make=Wu;function Wu(){var e=this.pattern,t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=!0;return}if(!e){this.empty=!0;return}this.parseNegate();var r=this.globSet=this.braceExpand();t.debug&&(this.debug=function(){console.error.apply(console,arguments)}),this.debug(this.pattern,r),r=this.globParts=r.map(function(i){return i.split(Ci)}),this.debug(this.pattern,r),r=r.map(function(i,n,s){return i.map(this.parse,this)},this),this.debug(this.pattern,r),r=r.filter(function(i){return i.indexOf(!1)===-1}),this.debug(this.pattern,r),this.set=r}N.prototype.parseNegate=Xu;function Xu(){var e=this.pattern,t=!1,r=this.options,i=0;if(!r.nonegate){for(var n=0,s=e.length;n<s&&e.charAt(n)==="!";n++)t=!t,i++;i&&(this.pattern=e.substr(i)),this.negate=t}}U.braceExpand=function(e,t){return Li(e,t)};N.prototype.braceExpand=Li;function Li(e,t){return t||(this instanceof N?t=this.options:t={}),e=typeof e>"u"?this.pattern:e,$e(e),t.nobrace||!/\{(?:(?!\{).)*\}/.test(e)?[e]:Qu(e)}var Ju=1024*64,$e=function(e){if(typeof e!="string")throw new TypeError("invalid pattern");if(e.length>Ju)throw new TypeError("pattern is too long")};N.prototype.parse=ef;var Qe={};function ef(e,t){$e(e);var r=this.options;if(e==="**")if(r.noglobstar)e="*";else return ae;if(e==="")return"";var i="",n=!!r.nocase,s=!1,a=[],o=[],u,f=!1,l=-1,d=-1,h=e.charAt(0)==="."?"":r.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)",g=this;function v(){if(u){switch(u){case"*":i+=Nt,n=!0;break;case"?":i+=Mt,n=!0;break;default:i+="\\"+u;break}g.debug("clearStateChar %j %j",u,i),u=!1}}for(var O=0,F=e.length,D;O<F&&(D=e.charAt(O));O++){if(this.debug("%s %s %s %j",e,O,i,D),s&&Pi[D]){i+="\\"+D,s=!1;continue}switch(D){case"/":return!1;case"\\":v(),s=!0;continue;case"?":case"*":case"+":case"@":case"!":if(this.debug("%s %s %s %j <-- stateChar",e,O,i,D),f){this.debug(" in class"),D==="!"&&O===d+1&&(D="^"),i+=D;continue}if(D==="*"&&u==="*")continue;g.debug("call clearStateChar %j",u),v(),u=D,r.noext&&v();continue;case"(":if(f){i+="(";continue}if(!u){i+="\\(";continue}a.push({type:u,start:O-1,reStart:i.length,open:Fi[u].open,close:Fi[u].close}),i+=u==="!"?"(?:(?!(?:":"(?:",this.debug("plType %j %j",u,i),u=!1;continue;case")":if(f||!a.length){i+="\\)";continue}v(),n=!0;var C=a.pop();i+=C.close,C.type==="!"&&o.push(C),C.reEnd=i.length;continue;case"|":if(f||!a.length||s){i+="\\|",s=!1;continue}v(),i+="|";continue;case"[":if(v(),f){i+="\\"+D;continue}f=!0,d=O,l=i.length,i+=D;continue;case"]":if(O===d+1||!f){i+="\\"+D,s=!1;continue}var $=e.substring(d+1,O);try{RegExp("["+$+"]")}catch{var q=this.parse($,Qe);i=i.substr(0,l)+"\\["+q[0]+"\\]",n=n||q[1],f=!1;continue}n=!0,f=!1,i+=D;continue;default:v(),s?s=!1:Pi[D]&&!(D==="^"&&f)&&(i+="\\"),i+=D}}for(f&&($=e.substr(d+1),q=this.parse($,Qe),i=i.substr(0,l)+"\\["+q[0],n=n||q[1]),C=a.pop();C;C=a.pop()){var M=i.slice(C.reStart+C.open.length);this.debug("setting tail",i,C),M=M.replace(/((?:\\{2}){0,64})(\\?)\|/g,function(Er,xr,nt){return nt||(nt="\\"),xr+xr+nt+"|"}),this.debug(`tail=%j
2
+ %s`,M,M,C,i);var W=C.type==="*"?Nt:C.type==="?"?Mt:"\\"+C.type;n=!0,i=i.slice(0,C.reStart)+W+"\\("+M}v(),s&&(i+="\\\\");var p=!1;switch(i.charAt(0)){case"[":case".":case"(":p=!0}for(var R=o.length-1;R>-1;R--){var m=o[R],w=i.slice(0,m.reStart),I=i.slice(m.reStart,m.reEnd-8),P=i.slice(m.reEnd-8,m.reEnd),K=i.slice(m.reEnd);P+=K;var hs=w.split("(").length-1,rt=K;for(O=0;O<hs;O++)rt=rt.replace(/\)[+*?]?/,"");K=rt;var br="";K===""&&t!==Qe&&(br="$");var ls=w+I+K+br+P;i=ls}if(i!==""&&n&&(i="(?=.)"+i),p&&(i=h+i),t===Qe)return[i,n];if(!n)return rf(e);var ps=r.nocase?"i":"";try{var it=new RegExp("^"+i+"$",ps)}catch{return new RegExp("$.")}return it._glob=e,it._src=i,it}U.makeRe=function(e,t){return new N(e,t||{}).makeRe()};N.prototype.makeRe=tf;function tf(){if(this.regexp||this.regexp===!1)return this.regexp;var e=this.set;if(!e.length)return this.regexp=!1,this.regexp;var t=this.options,r=t.noglobstar?Nt:t.dot?$u:Yu,i=t.nocase?"i":"",n=e.map(function(s){return s.map(function(a){return a===ae?r:typeof a=="string"?nf(a):a._src}).join("\\/")}).join("|");n="^(?:"+n+")$",this.negate&&(n="^(?!"+n+").*$");try{this.regexp=new RegExp(n,i)}catch{this.regexp=!1}return this.regexp}U.match=function(e,t,r){r=r||{};var i=new N(t,r);return e=e.filter(function(n){return i.match(n)}),i.options.nonull&&!e.length&&e.push(t),e};N.prototype.match=function(t,r){if(typeof r>"u"&&(r=this.partial),this.debug("match",t,this.pattern),this.comment)return!1;if(this.empty)return t==="";if(t==="/"&&r)return!0;var i=this.options;Ie.sep!=="/"&&(t=t.split(Ie.sep).join("/")),t=t.split(Ci),this.debug(this.pattern,"split",t);var n=this.set;this.debug(this.pattern,"set",n);var s,a;for(a=t.length-1;a>=0&&(s=t[a],!s);a--);for(a=0;a<n.length;a++){var o=n[a],u=t;i.matchBase&&o.length===1&&(u=[s]);var f=this.matchOne(u,o,r);if(f)return i.flipNegate?!0:!this.negate}return i.flipNegate?!1:this.negate};N.prototype.matchOne=function(e,t,r){return t.indexOf(ae)!==-1?this._matchGlobstar(e,t,r,0,0):this._matchOne(e,t,r,0,0)};N.prototype._matchGlobstar=function(e,t,r,i,n){var s,a=-1;for(s=n;s<t.length;s++)if(t[s]===ae){a=s;break}var o=-1;for(s=t.length-1;s>=0;s--)if(t[s]===ae){o=s;break}var u=t.slice(n,a),f=r?t.slice(a+1):t.slice(a+1,o),l=r?[]:t.slice(o+1);if(u.length){var d=e.slice(i,i+u.length);if(!this._matchOne(d,u,r,0,0))return!1;i+=u.length}var h=0;if(l.length){if(l.length+i>e.length)return!1;var g=e.length-l.length;if(this._matchOne(e,l,r,g,0))h=l.length;else{if(e[e.length-1]!==""||i+l.length===e.length||(g--,!this._matchOne(e,l,r,g,0)))return!1;h=l.length+1}}if(!f.length){var v=!!h;for(s=i;s<e.length-h;s++){var O=String(e[s]);if(v=!0,O==="."||O===".."||!this.options.dot&&O.charAt(0)===".")return!1}return r||v}for(var F=[[[],0]],D=F[0],C=0,$=[0],q=0;q<f.length;q++){var M=f[q];M===ae?($.push(C),D=[[],0],F.push(D)):(D[0].push(M),C++)}for(var W=F.length-1,p=e.length-h,R=0;R<F.length;R++)F[R][1]=p-($[W--]+F[R][0].length);return!!this._matchGlobStarBodySections(e,F,i,0,r,0,!!h)};N.prototype._matchGlobStarBodySections=function(e,t,r,i,n,s,a){var o=t[i];if(!o){for(var u=r;u<e.length;u++){a=!0;var f=e[u];if(f==="."||f===".."||!this.options.dot&&f.charAt(0)===".")return!1}return a}for(var l=o[0],d=o[1];r<=d;){var h=this._matchOne(e.slice(0,r+l.length),l,n,r,0);if(h&&s<this.maxGlobstarRecursion){var g=this._matchGlobStarBodySections(e,t,r+l.length,i+1,n,s+1,a);if(g!==!1)return g}var f=e[r];if(f==="."||f===".."||!this.options.dot&&f.charAt(0)===".")return!1;r++}return n||null};N.prototype._matchOne=function(e,t,r,i,n){var s,a,o,u;for(s=i,a=n,o=e.length,u=t.length;s<o&&a<u;s++,a++){this.debug("matchOne loop");var f=t[a],l=e[s];if(this.debug(t,f,l),f===!1||f===ae)return!1;var d;if(typeof f=="string"?(d=l===f,this.debug("string match",f,l,d)):(d=l.match(f),this.debug("pattern match",f,l,d)),!d)return!1}if(s===o&&a===u)return!0;if(s===o)return r;if(a===u)return s===o-1&&e[s]==="";throw new Error("wtf?")};function rf(e){return e.replace(/\\(.)/g,"$1")}function nf(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}});var Ve=E((Vc,Ke)=>{"use strict";c();function Ni(e){return e.charAt(0)==="/"}function zi(e){var t=/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/,r=t.exec(e),i=r[1]||"",n=!!(i&&i.charAt(1)!==":");return!!(r[2]||n)}Ke.exports=process.platform==="win32"?zi:Ni;Ke.exports.posix=Ni;Ke.exports.win32=zi});var Bt=E(J=>{c();J.setopts=cf;J.ownProp=Bi;J.makeAbs=Te;J.finish=hf;J.mark=lf;J.isIgnored=Gi;J.childrenIgnored=pf;function Bi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var sf=S("fs"),ye=S("path"),af=Ye(),qi=Ve(),zt=af.Minimatch;function of(e,t){return e.localeCompare(t,"en")}function uf(e,t){e.ignore=t.ignore||[],Array.isArray(e.ignore)||(e.ignore=[e.ignore]),e.ignore.length&&(e.ignore=e.ignore.map(ff))}function ff(e){var t=null;if(e.slice(-3)==="/**"){var r=e.replace(/(\/\*\*)+$/,"");t=new zt(r,{dot:!0})}return{matcher:new zt(e,{dot:!0}),gmatcher:t}}function cf(e,t,r){if(r||(r={}),r.matchBase&&t.indexOf("/")===-1){if(r.noglobstar)throw new Error("base matching requires globstar");t="**/"+t}e.silent=!!r.silent,e.pattern=t,e.strict=r.strict!==!1,e.realpath=!!r.realpath,e.realpathCache=r.realpathCache||Object.create(null),e.follow=!!r.follow,e.dot=!!r.dot,e.mark=!!r.mark,e.nodir=!!r.nodir,e.nodir&&(e.mark=!0),e.sync=!!r.sync,e.nounique=!!r.nounique,e.nonull=!!r.nonull,e.nosort=!!r.nosort,e.nocase=!!r.nocase,e.stat=!!r.stat,e.noprocess=!!r.noprocess,e.absolute=!!r.absolute,e.fs=r.fs||sf,e.maxLength=r.maxLength||1/0,e.cache=r.cache||Object.create(null),e.statCache=r.statCache||Object.create(null),e.symlinks=r.symlinks||Object.create(null),uf(e,r),e.changedCwd=!1;var i=process.cwd();Bi(r,"cwd")?(e.cwd=ye.resolve(r.cwd),e.changedCwd=e.cwd!==i):e.cwd=i,e.root=r.root||ye.resolve(e.cwd,"/"),e.root=ye.resolve(e.root),process.platform==="win32"&&(e.root=e.root.replace(/\\/g,"/")),e.cwdAbs=qi(e.cwd)?e.cwd:Te(e,e.cwd),process.platform==="win32"&&(e.cwdAbs=e.cwdAbs.replace(/\\/g,"/")),e.nomount=!!r.nomount,r.nonegate=!0,r.nocomment=!0,r.allowWindowsEscape=!1,e.minimatch=new zt(t,r),e.options=e.minimatch.options}function hf(e){for(var t=e.nounique,r=t?[]:Object.create(null),i=0,n=e.matches.length;i<n;i++){var s=e.matches[i];if(!s||Object.keys(s).length===0){if(e.nonull){var a=e.minimatch.globSet[i];t?r.push(a):r[a]=!0}}else{var o=Object.keys(s);t?r.push.apply(r,o):o.forEach(function(u){r[u]=!0})}}if(t||(r=Object.keys(r)),e.nosort||(r=r.sort(of)),e.mark){for(var i=0;i<r.length;i++)r[i]=e._mark(r[i]);e.nodir&&(r=r.filter(function(u){var f=!/\/$/.test(u),l=e.cache[u]||e.cache[Te(e,u)];return f&&l&&(f=l!=="DIR"&&!Array.isArray(l)),f}))}e.ignore.length&&(r=r.filter(function(u){return!Gi(e,u)})),e.found=r}function lf(e,t){var r=Te(e,t),i=e.cache[r],n=t;if(i){var s=i==="DIR"||Array.isArray(i),a=t.slice(-1)==="/";if(s&&!a?n+="/":!s&&a&&(n=n.slice(0,-1)),n!==t){var o=Te(e,n);e.statCache[o]=e.statCache[r],e.cache[o]=e.cache[r]}}return n}function Te(e,t){var r=t;return t.charAt(0)==="/"?r=ye.join(e.root,t):qi(t)||t===""?r=t:e.changedCwd?r=ye.resolve(e.cwd,t):r=ye.resolve(t),process.platform==="win32"&&(r=r.replace(/\\/g,"/")),r}function Gi(e,t){return e.ignore.length?e.ignore.some(function(r){return r.matcher.match(t)||!!(r.gmatcher&&r.gmatcher.match(t))}):!1}function pf(e,t){return e.ignore.length?e.ignore.some(function(r){return!!(r.gmatcher&&r.gmatcher.match(t))}):!1}});var Hi=E((ih,Zi)=>{c();Zi.exports=ki;ki.GlobSync=z;var df=Or(),ji=Ye(),eh=ji.Minimatch,th=Xe().Glob,rh=S("util"),qt=S("path"),Ui=S("assert"),We=Ve(),oe=Bt(),mf=oe.setopts,Gt=oe.ownProp,gf=oe.childrenIgnored,yf=oe.isIgnored;function ki(e,t){if(typeof t=="function"||arguments.length===3)throw new TypeError(`callback provided to sync glob
3
+ See: https://github.com/isaacs/node-glob/issues/167`);return new z(e,t).found}function z(e,t){if(!e)throw new Error("must provide pattern");if(typeof t=="function"||arguments.length===3)throw new TypeError(`callback provided to sync glob
4
+ See: https://github.com/isaacs/node-glob/issues/167`);if(!(this instanceof z))return new z(e,t);if(mf(this,e,t),this.noprocess)return this;var r=this.minimatch.set.length;this.matches=new Array(r);for(var i=0;i<r;i++)this._process(this.minimatch.set[i],i,!1);this._finish()}z.prototype._finish=function(){if(Ui.ok(this instanceof z),this.realpath){var e=this;this.matches.forEach(function(t,r){var i=e.matches[r]=Object.create(null);for(var n in t)try{n=e._makeAbs(n);var s=df.realpathSync(n,e.realpathCache);i[s]=!0}catch(a){if(a.syscall==="stat")i[e._makeAbs(n)]=!0;else throw a}})}oe.finish(this)};z.prototype._process=function(e,t,r){Ui.ok(this instanceof z);for(var i=0;typeof e[i]=="string";)i++;var n;switch(i){case e.length:this._processSimple(e.join("/"),t);return;case 0:n=null;break;default:n=e.slice(0,i).join("/");break}var s=e.slice(i),a;n===null?a=".":((We(n)||We(e.map(function(f){return typeof f=="string"?f:"[*]"}).join("/")))&&(!n||!We(n))&&(n="/"+n),a=n);var o=this._makeAbs(a);if(!gf(this,a)){var u=s[0]===ji.GLOBSTAR;u?this._processGlobStar(n,a,o,s,t,r):this._processReaddir(n,a,o,s,t,r)}};z.prototype._processReaddir=function(e,t,r,i,n,s){var a=this._readdir(r,s);if(a){for(var o=i[0],u=!!this.minimatch.negate,f=o._glob,l=this.dot||f.charAt(0)===".",d=[],h=0;h<a.length;h++){var g=a[h];if(g.charAt(0)!=="."||l){var v;u&&!e?v=!g.match(o):v=g.match(o),v&&d.push(g)}}var O=d.length;if(O!==0){if(i.length===1&&!this.mark&&!this.stat){this.matches[n]||(this.matches[n]=Object.create(null));for(var h=0;h<O;h++){var g=d[h];e&&(e.slice(-1)!=="/"?g=e+"/"+g:g=e+g),g.charAt(0)==="/"&&!this.nomount&&(g=qt.join(this.root,g)),this._emitMatch(n,g)}return}i.shift();for(var h=0;h<O;h++){var g=d[h],F;e?F=[e,g]:F=[g],this._process(F.concat(i),n,s)}}}};z.prototype._emitMatch=function(e,t){if(!yf(this,t)){var r=this._makeAbs(t);if(this.mark&&(t=this._mark(t)),this.absolute&&(t=r),!this.matches[e][t]){if(this.nodir){var i=this.cache[r];if(i==="DIR"||Array.isArray(i))return}this.matches[e][t]=!0,this.stat&&this._stat(t)}}};z.prototype._readdirInGlobStar=function(e){if(this.follow)return this._readdir(e,!1);var t,r,i;try{r=this.fs.lstatSync(e)}catch(s){if(s.code==="ENOENT")return null}var n=r&&r.isSymbolicLink();return this.symlinks[e]=n,!n&&r&&!r.isDirectory()?this.cache[e]="FILE":t=this._readdir(e,!1),t};z.prototype._readdir=function(e,t){var r;if(t&&!Gt(this.symlinks,e))return this._readdirInGlobStar(e);if(Gt(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return null;if(Array.isArray(i))return i}try{return this._readdirEntries(e,this.fs.readdirSync(e))}catch(n){return this._readdirError(e,n),null}};z.prototype._readdirEntries=function(e,t){if(!this.mark&&!this.stat)for(var r=0;r<t.length;r++){var i=t[r];e==="/"?i=e+i:i=e+"/"+i,this.cache[i]=!0}return this.cache[e]=t,t};z.prototype._readdirError=function(e,t){switch(t.code){case"ENOTSUP":case"ENOTDIR":var r=this._makeAbs(e);if(this.cache[r]="FILE",r===this.cwdAbs){var i=new Error(t.code+" invalid cwd "+this.cwd);throw i.path=this.cwd,i.code=t.code,i}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=!1;break;default:if(this.cache[this._makeAbs(e)]=!1,this.strict)throw t;this.silent||console.error("glob error",t);break}};z.prototype._processGlobStar=function(e,t,r,i,n,s){var a=this._readdir(r,s);if(a){var o=i.slice(1),u=e?[e]:[],f=u.concat(o);this._process(f,n,!1);var l=a.length,d=this.symlinks[r];if(!(d&&s))for(var h=0;h<l;h++){var g=a[h];if(!(g.charAt(0)==="."&&!this.dot)){var v=u.concat(a[h],o);this._process(v,n,!0);var O=u.concat(a[h],i);this._process(O,n,!0)}}}};z.prototype._processSimple=function(e,t){var r=this._stat(e);if(this.matches[t]||(this.matches[t]=Object.create(null)),!!r){if(e&&We(e)&&!this.nomount){var i=/[\/\\]$/.test(e);e.charAt(0)==="/"?e=qt.join(this.root,e):(e=qt.resolve(this.root,e),i&&(e+="/"))}process.platform==="win32"&&(e=e.replace(/\\/g,"/")),this._emitMatch(t,e)}};z.prototype._stat=function(e){var t=this._makeAbs(e),r=e.slice(-1)==="/";if(e.length>this.maxLength)return!1;if(!this.stat&&Gt(this.cache,t)){var a=this.cache[t];if(Array.isArray(a)&&(a="DIR"),!r||a==="DIR")return a;if(r&&a==="FILE")return!1}var i,n=this.statCache[t];if(!n){var s;try{s=this.fs.lstatSync(t)}catch(o){if(o&&(o.code==="ENOENT"||o.code==="ENOTDIR"))return this.statCache[t]=!1,!1}if(s&&s.isSymbolicLink())try{n=this.fs.statSync(t)}catch{n=s}else n=s}this.statCache[t]=n;var a=!0;return n&&(a=n.isDirectory()?"DIR":"FILE"),this.cache[t]=this.cache[t]||a,r&&a==="FILE"?!1:a};z.prototype._mark=function(e){return oe.mark(this,e)};z.prototype._makeAbs=function(e){return oe.makeAbs(this,e)}});var Xe=E((oh,$i)=>{c();$i.exports=ue;var vf=Or(),Qi=Ye(),sh=Qi.Minimatch,_f=vs(),bf=S("events").EventEmitter,jt=S("path"),Ut=S("assert"),Ae=Ve(),Zt=Hi(),fe=Bt(),Ef=fe.setopts,kt=fe.ownProp,Ht=_s(),ah=S("util"),xf=fe.childrenIgnored,wf=fe.isIgnored,Sf=gs();function ue(e,t,r){if(typeof t=="function"&&(r=t,t={}),t||(t={}),t.sync){if(r)throw new TypeError("callback provided to sync glob");return Zt(e,t)}return new A(e,t,r)}ue.sync=Zt;var Of=ue.GlobSync=Zt.GlobSync;ue.glob=ue;function If(e,t){if(t===null||typeof t!="object")return e;for(var r=Object.keys(t),i=r.length;i--;)e[r[i]]=t[r[i]];return e}ue.hasMagic=function(e,t){var r=If({},t);r.noprocess=!0;var i=new A(e,r),n=i.minimatch.set;if(!e)return!1;if(n.length>1)return!0;for(var s=0;s<n[0].length;s++)if(typeof n[0][s]!="string")return!0;return!1};ue.Glob=A;_f(A,bf);function A(e,t,r){if(typeof t=="function"&&(r=t,t=null),t&&t.sync){if(r)throw new TypeError("callback provided to sync glob");return new Of(e,t)}if(!(this instanceof A))return new A(e,t,r);Ef(this,e,t),this._didRealPath=!1;var i=this.minimatch.set.length;this.matches=new Array(i),typeof r=="function"&&(r=Sf(r),this.on("error",r),this.on("end",function(u){r(null,u)}));var n=this;if(this._processing=0,this._emitQueue=[],this._processQueue=[],this.paused=!1,this.noprocess)return this;if(i===0)return o();for(var s=!0,a=0;a<i;a++)this._process(this.minimatch.set[a],a,!1,o);s=!1;function o(){--n._processing,n._processing<=0&&(s?process.nextTick(function(){n._finish()}):n._finish())}}A.prototype._finish=function(){if(Ut(this instanceof A),!this.aborted){if(this.realpath&&!this._didRealpath)return this._realpath();fe.finish(this),this.emit("end",this.found)}};A.prototype._realpath=function(){if(this._didRealpath)return;this._didRealpath=!0;var e=this.matches.length;if(e===0)return this._finish();for(var t=this,r=0;r<this.matches.length;r++)this._realpathSet(r,i);function i(){--e===0&&t._finish()}};A.prototype._realpathSet=function(e,t){var r=this.matches[e];if(!r)return t();var i=Object.keys(r),n=this,s=i.length;if(s===0)return t();var a=this.matches[e]=Object.create(null);i.forEach(function(o,u){o=n._makeAbs(o),vf.realpath(o,n.realpathCache,function(f,l){f?f.syscall==="stat"?a[o]=!0:n.emit("error",f):a[l]=!0,--s===0&&(n.matches[e]=a,t())})})};A.prototype._mark=function(e){return fe.mark(this,e)};A.prototype._makeAbs=function(e){return fe.makeAbs(this,e)};A.prototype.abort=function(){this.aborted=!0,this.emit("abort")};A.prototype.pause=function(){this.paused||(this.paused=!0,this.emit("pause"))};A.prototype.resume=function(){if(this.paused){if(this.emit("resume"),this.paused=!1,this._emitQueue.length){var e=this._emitQueue.slice(0);this._emitQueue.length=0;for(var t=0;t<e.length;t++){var r=e[t];this._emitMatch(r[0],r[1])}}if(this._processQueue.length){var i=this._processQueue.slice(0);this._processQueue.length=0;for(var t=0;t<i.length;t++){var n=i[t];this._processing--,this._process(n[0],n[1],n[2],n[3])}}}};A.prototype._process=function(e,t,r,i){if(Ut(this instanceof A),Ut(typeof i=="function"),!this.aborted){if(this._processing++,this.paused){this._processQueue.push([e,t,r,i]);return}for(var n=0;typeof e[n]=="string";)n++;var s;switch(n){case e.length:this._processSimple(e.join("/"),t,i);return;case 0:s=null;break;default:s=e.slice(0,n).join("/");break}var a=e.slice(n),o;s===null?o=".":((Ae(s)||Ae(e.map(function(l){return typeof l=="string"?l:"[*]"}).join("/")))&&(!s||!Ae(s))&&(s="/"+s),o=s);var u=this._makeAbs(o);if(xf(this,o))return i();var f=a[0]===Qi.GLOBSTAR;f?this._processGlobStar(s,o,u,a,t,r,i):this._processReaddir(s,o,u,a,t,r,i)}};A.prototype._processReaddir=function(e,t,r,i,n,s,a){var o=this;this._readdir(r,s,function(u,f){return o._processReaddir2(e,t,r,i,n,s,f,a)})};A.prototype._processReaddir2=function(e,t,r,i,n,s,a,o){if(!a)return o();for(var u=i[0],f=!!this.minimatch.negate,l=u._glob,d=this.dot||l.charAt(0)===".",h=[],g=0;g<a.length;g++){var v=a[g];if(v.charAt(0)!=="."||d){var O;f&&!e?O=!v.match(u):O=v.match(u),O&&h.push(v)}}var F=h.length;if(F===0)return o();if(i.length===1&&!this.mark&&!this.stat){this.matches[n]||(this.matches[n]=Object.create(null));for(var g=0;g<F;g++){var v=h[g];e&&(e!=="/"?v=e+"/"+v:v=e+v),v.charAt(0)==="/"&&!this.nomount&&(v=jt.join(this.root,v)),this._emitMatch(n,v)}return o()}i.shift();for(var g=0;g<F;g++){var v=h[g],D;e&&(e!=="/"?v=e+"/"+v:v=e+v),this._process([v].concat(i),n,s,o)}o()};A.prototype._emitMatch=function(e,t){if(!this.aborted&&!wf(this,t)){if(this.paused){this._emitQueue.push([e,t]);return}var r=Ae(t)?t:this._makeAbs(t);if(this.mark&&(t=this._mark(t)),this.absolute&&(t=r),!this.matches[e][t]){if(this.nodir){var i=this.cache[r];if(i==="DIR"||Array.isArray(i))return}this.matches[e][t]=!0;var n=this.statCache[r];n&&this.emit("stat",t,n),this.emit("match",t)}}};A.prototype._readdirInGlobStar=function(e,t){if(this.aborted)return;if(this.follow)return this._readdir(e,!1,t);var r="lstat\0"+e,i=this,n=Ht(r,s);n&&i.fs.lstat(e,n);function s(a,o){if(a&&a.code==="ENOENT")return t();var u=o&&o.isSymbolicLink();i.symlinks[e]=u,!u&&o&&!o.isDirectory()?(i.cache[e]="FILE",t()):i._readdir(e,!1,t)}};A.prototype._readdir=function(e,t,r){if(!this.aborted&&(r=Ht("readdir\0"+e+"\0"+t,r),!!r)){if(t&&!kt(this.symlinks,e))return this._readdirInGlobStar(e,r);if(kt(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return r();if(Array.isArray(i))return r(null,i)}var n=this;n.fs.readdir(e,Tf(this,e,r))}};function Tf(e,t,r){return function(i,n){i?e._readdirError(t,i,r):e._readdirEntries(t,n,r)}}A.prototype._readdirEntries=function(e,t,r){if(!this.aborted){if(!this.mark&&!this.stat)for(var i=0;i<t.length;i++){var n=t[i];e==="/"?n=e+n:n=e+"/"+n,this.cache[n]=!0}return this.cache[e]=t,r(null,t)}};A.prototype._readdirError=function(e,t,r){if(!this.aborted){switch(t.code){case"ENOTSUP":case"ENOTDIR":var i=this._makeAbs(e);if(this.cache[i]="FILE",i===this.cwdAbs){var n=new Error(t.code+" invalid cwd "+this.cwd);n.path=this.cwd,n.code=t.code,this.emit("error",n),this.abort()}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=!1;break;default:this.cache[this._makeAbs(e)]=!1,this.strict&&(this.emit("error",t),this.abort()),this.silent||console.error("glob error",t);break}return r()}};A.prototype._processGlobStar=function(e,t,r,i,n,s,a){var o=this;this._readdir(r,s,function(u,f){o._processGlobStar2(e,t,r,i,n,s,f,a)})};A.prototype._processGlobStar2=function(e,t,r,i,n,s,a,o){if(!a)return o();var u=i.slice(1),f=e?[e]:[],l=f.concat(u);this._process(l,n,!1,o);var d=this.symlinks[r],h=a.length;if(d&&s)return o();for(var g=0;g<h;g++){var v=a[g];if(!(v.charAt(0)==="."&&!this.dot)){var O=f.concat(a[g],u);this._process(O,n,!0,o);var F=f.concat(a[g],i);this._process(F,n,!0,o)}}o()};A.prototype._processSimple=function(e,t,r){var i=this;this._stat(e,function(n,s){i._processSimple2(e,t,n,s,r)})};A.prototype._processSimple2=function(e,t,r,i,n){if(this.matches[t]||(this.matches[t]=Object.create(null)),!i)return n();if(e&&Ae(e)&&!this.nomount){var s=/[\/\\]$/.test(e);e.charAt(0)==="/"?e=jt.join(this.root,e):(e=jt.resolve(this.root,e),s&&(e+="/"))}process.platform==="win32"&&(e=e.replace(/\\/g,"/")),this._emitMatch(t,e),n()};A.prototype._stat=function(e,t){var r=this._makeAbs(e),i=e.slice(-1)==="/";if(e.length>this.maxLength)return t();if(!this.stat&&kt(this.cache,r)){var n=this.cache[r];if(Array.isArray(n)&&(n="DIR"),!i||n==="DIR")return t(null,n);if(i&&n==="FILE")return t()}var s,a=this.statCache[r];if(a!==void 0){if(a===!1)return t(null,a);var o=a.isDirectory()?"DIR":"FILE";return i&&o==="FILE"?t():t(null,o,a)}var u=this,f=Ht("stat\0"+r,l);f&&u.fs.lstat(r,f);function l(d,h){if(h&&h.isSymbolicLink())return u.fs.stat(r,function(g,v){g?u._stat2(e,r,null,h,t):u._stat2(e,r,g,v,t)});u._stat2(e,r,d,h,t)}};A.prototype._stat2=function(e,t,r,i,n){if(r&&(r.code==="ENOENT"||r.code==="ENOTDIR"))return this.statCache[t]=!1,n();var s=e.slice(-1)==="/";if(this.statCache[t]=i,t.slice(-1)==="/"&&i&&!i.isDirectory())return n(null,!1,i);var a=!0;return i&&(a=i.isDirectory()?"DIR":"FILE"),this.cache[t]=this.cache[t]||a,s&&a==="FILE"?n():n(null,a,i)}});var Wi=E((fh,Vi)=>{c();var Ki=Fe(),ve=S("path"),Qt=_t(),Af=Ot(),Df=Ft(),Rf=Pt(),Ff=Xe(),ce=Vi.exports={},Yi=/[\/\\]/g,Pf=function(e,t){var r=[];return Qt(e).forEach(function(i){var n=i.indexOf("!")===0;n&&(i=i.slice(1));var s=t(i);n?r=Af(r,s):r=Df(r,s)}),r};ce.exists=function(){var e=ve.join.apply(ve,arguments);return Ki.existsSync(e)};ce.expand=function(...e){var t=Rf(e[0])?e.shift():{},r=Array.isArray(e[0])?e[0]:e;if(r.length===0)return[];var i=Pf(r,function(n){return Ff.sync(n,t)});return t.filter&&(i=i.filter(function(n){n=ve.join(t.cwd||"",n);try{return typeof t.filter=="function"?t.filter(n):Ki.statSync(n)[t.filter]()}catch{return!1}})),i};ce.expandMapping=function(e,t,r){r=Object.assign({rename:function(s,a){return ve.join(s||"",a)}},r);var i=[],n={};return ce.expand(r,e).forEach(function(s){var a=s;r.flatten&&(a=ve.basename(a)),r.ext&&(a=a.replace(/(\.[^\/]*)?$/,r.ext));var o=r.rename(t,a,r);r.cwd&&(s=ve.join(r.cwd,s)),o=o.replace(Yi,"/"),s=s.replace(Yi,"/"),n[o]?n[o].src.push(s):(i.push({src:[s],dest:o}),n[o]=i[i.length-1])}),i};ce.normalizeFilesArray=function(e){var t=[];return e.forEach(function(r){var i;("src"in r||"dest"in r)&&t.push(r)}),t.length===0?[]:(t=_(t).chain().forEach(function(r){!("src"in r)||!r.src||(Array.isArray(r.src)?r.src=Qt(r.src):r.src=[r.src])}).map(function(r){var i=Object.assign({},r);if(delete i.src,delete i.dest,r.expand)return ce.expandMapping(r.src,r.dest,i).map(function(s){var a=Object.assign({},r);return a.orig=Object.assign({},r),a.src=s.src,a.dest=s.dest,["expand","cwd","flatten","rename","ext"].forEach(function(o){delete a[o]}),a});var n=Object.assign({},r);return n.orig=Object.assign({},r),"src"in n&&Object.defineProperty(n,"src",{enumerable:!0,get:function s(){var a;return"result"in s||(a=r.src,a=Array.isArray(a)?Qt(a):[a],s.result=ce.expand(i,a)),s.result}}),"dest"in n&&(n.dest=r.dest),n}).flatten().value(),t)}});var De=E((lh,en)=>{c();var $t=Fe(),Xi=S("path"),hh=S("util"),Cf=pt(),Ji=ct(),Lf=yt(),Mf=S("stream").Stream,Nf=Ir().PassThrough,k=en.exports={};k.file=Wi();k.collectStream=function(e,t){var r=[],i=0;e.on("error",t),e.on("data",function(n){r.push(n),i+=n.length}),e.on("end",function(){var n=new Buffer(i),s=0;r.forEach(function(a){a.copy(n,s),s+=a.length}),t(null,n)})};k.dateify=function(e){return e=e||new Date,e instanceof Date?e=e:typeof e=="string"?e=new Date(e):e=new Date,e};k.defaults=function(e,t,r){var i=arguments;return i[0]=i[0]||{},Lf(...i)};k.isStream=function(e){return e instanceof Mf};k.lazyReadStream=function(e){return new Cf.Readable(function(){return $t.createReadStream(e)})};k.normalizeInputSource=function(e){if(e===null)return new Buffer(0);if(typeof e=="string")return new Buffer(e);if(k.isStream(e)&&!e._readableState){var t=new Nf;return e.pipe(t),t}return e};k.sanitizePath=function(e){return Ji(e,!1).replace(/^\w+:/,"").replace(/^(\.\.\/|\/)+/,"")};k.trailingSlashIt=function(e){return e.slice(-1)!=="/"?e+"/":e};k.unixifyPath=function(e){return Ji(e,!1).replace(/^\w+:/,"")};k.walkdir=function(e,t,r){var i=[];typeof t=="function"&&(r=t,t=e),$t.readdir(e,function(n,s){var a=0,o,u;if(n)return r(n);(function f(){if(o=s[a++],!o)return r(null,i);u=Xi.join(e,o),$t.stat(u,function(l,d){i.push({path:u,relative:Xi.relative(t,u).replace(/\\/g,"/"),stats:d}),d&&d.isDirectory()?k.walkdir(u,t,function(h,g){g.forEach(function(v){i.push(v)}),f()}):f()})})()})}});var sn=E((rn,nn)=>{c();var zf=S("util"),Bf={ABORTED:"archive was aborted",DIRECTORYDIRPATHREQUIRED:"diretory dirpath argument must be a non-empty string value",DIRECTORYFUNCTIONINVALIDDATA:"invalid data returned by directory custom data function",ENTRYNAMEREQUIRED:"entry name must be a non-empty string value",FILEFILEPATHREQUIRED:"file filepath argument must be a non-empty string value",FINALIZING:"archive already finalizing",QUEUECLOSED:"queue closed",NOENDMETHOD:"no suitable finalize/end method defined by module",DIRECTORYNOTSUPPORTED:"support for directory entries not defined by module",FORMATSET:"archive format already set",INPUTSTEAMBUFFERREQUIRED:"input source must be valid Stream or Buffer instance",MODULESET:"module already set",SYMLINKNOTSUPPORTED:"support for symlink entries not defined by module",SYMLINKFILEPATHREQUIRED:"symlink filepath argument must be a non-empty string value",SYMLINKTARGETREQUIRED:"symlink target argument must be a non-empty string value",ENTRYNOTSUPPORTED:"entry not supported"};function tn(e,t){Error.captureStackTrace(this,this.constructor),this.message=Bf[e]||e,this.code=e,this.data=t}zf.inherits(tn,Error);rn=nn.exports=tn});var cn=E((mh,fn)=>{c();var Vt=S("fs"),on=Fr(),an=bs(),Yt=S("path"),Y=De(),qf=S("util").inherits,L=sn(),un=le().Transform,Kt=process.platform==="win32",T=function(e,t){if(!(this instanceof T))return new T(e,t);typeof e!="string"&&(t=e,e="zip"),t=this.options=Y.defaults(t,{highWaterMark:1024*1024,statConcurrency:4}),un.call(this,t),this._format=!1,this._module=!1,this._pending=0,this._pointer=0,this._entriesCount=0,this._entriesProcessedCount=0,this._fsEntriesTotalBytes=0,this._fsEntriesProcessedBytes=0,this._queue=an.queue(this._onQueueTask.bind(this),1),this._queue.drain(this._onQueueDrain.bind(this)),this._statQueue=an.queue(this._onStatQueueTask.bind(this),t.statConcurrency),this._statQueue.drain(this._onQueueDrain.bind(this)),this._state={aborted:!1,finalize:!1,finalizing:!1,finalized:!1,modulePiped:!1},this._streams=[]};qf(T,un);T.prototype._abort=function(){this._state.aborted=!0,this._queue.kill(),this._statQueue.kill(),this._queue.idle()&&this._shutdown()};T.prototype._append=function(e,t){t=t||{};var r={source:null,filepath:e};t.name||(t.name=e),t.sourcePath=e,r.data=t,this._entriesCount++,t.stats&&t.stats instanceof Vt.Stats?(r=this._updateQueueTaskWithStats(r,t.stats),r&&(t.stats.size&&(this._fsEntriesTotalBytes+=t.stats.size),this._queue.push(r))):this._statQueue.push(r)};T.prototype._finalize=function(){this._state.finalizing||this._state.finalized||this._state.aborted||(this._state.finalizing=!0,this._moduleFinalize(),this._state.finalizing=!1,this._state.finalized=!0)};T.prototype._maybeFinalize=function(){return this._state.finalizing||this._state.finalized||this._state.aborted?!1:this._state.finalize&&this._pending===0&&this._queue.idle()&&this._statQueue.idle()?(this._finalize(),!0):!1};T.prototype._moduleAppend=function(e,t,r){if(this._state.aborted){r();return}this._module.append(e,t,function(i){if(this._task=null,this._state.aborted){this._shutdown();return}if(i){this.emit("error",i),setImmediate(r);return}this.emit("entry",t),this._entriesProcessedCount++,t.stats&&t.stats.size&&(this._fsEntriesProcessedBytes+=t.stats.size),this.emit("progress",{entries:{total:this._entriesCount,processed:this._entriesProcessedCount},fs:{totalBytes:this._fsEntriesTotalBytes,processedBytes:this._fsEntriesProcessedBytes}}),setImmediate(r)}.bind(this))};T.prototype._moduleFinalize=function(){typeof this._module.finalize=="function"?this._module.finalize():typeof this._module.end=="function"?this._module.end():this.emit("error",new L("NOENDMETHOD"))};T.prototype._modulePipe=function(){this._module.on("error",this._onModuleError.bind(this)),this._module.pipe(this),this._state.modulePiped=!0};T.prototype._moduleSupports=function(e){return!this._module.supports||!this._module.supports[e]?!1:this._module.supports[e]};T.prototype._moduleUnpipe=function(){this._module.unpipe(this),this._state.modulePiped=!1};T.prototype._normalizeEntryData=function(e,t){e=Y.defaults(e,{type:"file",name:null,date:null,mode:null,prefix:null,sourcePath:null,stats:!1}),t&&e.stats===!1&&(e.stats=t);var r=e.type==="directory";return e.name&&(typeof e.prefix=="string"&&e.prefix!==""&&(e.name=e.prefix+"/"+e.name,e.prefix=null),e.name=Y.sanitizePath(e.name),e.type!=="symlink"&&e.name.slice(-1)==="/"?(r=!0,e.type="directory"):r&&(e.name+="/")),typeof e.mode=="number"?Kt?e.mode&=511:e.mode&=4095:e.stats&&e.mode===null?(Kt?e.mode=e.stats.mode&511:e.mode=e.stats.mode&4095,Kt&&r&&(e.mode=493)):e.mode===null&&(e.mode=r?493:420),e.stats&&e.date===null?e.date=e.stats.mtime:e.date=Y.dateify(e.date),e};T.prototype._onModuleError=function(e){this.emit("error",e)};T.prototype._onQueueDrain=function(){this._state.finalizing||this._state.finalized||this._state.aborted||this._state.finalize&&this._pending===0&&this._queue.idle()&&this._statQueue.idle()&&this._finalize()};T.prototype._onQueueTask=function(e,t){var r=()=>{e.data.callback&&e.data.callback(),t()};if(this._state.finalizing||this._state.finalized||this._state.aborted){r();return}this._task=e,this._moduleAppend(e.source,e.data,r)};T.prototype._onStatQueueTask=function(e,t){if(this._state.finalizing||this._state.finalized||this._state.aborted){t();return}Vt.lstat(e.filepath,function(r,i){if(this._state.aborted){setImmediate(t);return}if(r){this._entriesCount--,this.emit("warning",r),setImmediate(t);return}e=this._updateQueueTaskWithStats(e,i),e&&(i.size&&(this._fsEntriesTotalBytes+=i.size),this._queue.push(e)),setImmediate(t)}.bind(this))};T.prototype._shutdown=function(){this._moduleUnpipe(),this.end()};T.prototype._transform=function(e,t,r){e&&(this._pointer+=e.length),r(null,e)};T.prototype._updateQueueTaskWithStats=function(e,t){if(t.isFile())e.data.type="file",e.data.sourceType="stream",e.source=Y.lazyReadStream(e.filepath);else if(t.isDirectory()&&this._moduleSupports("directory"))e.data.name=Y.trailingSlashIt(e.data.name),e.data.type="directory",e.data.sourcePath=Y.trailingSlashIt(e.filepath),e.data.sourceType="buffer",e.source=Buffer.concat([]);else if(t.isSymbolicLink()&&this._moduleSupports("symlink")){var r=Vt.readlinkSync(e.filepath),i=Yt.dirname(e.filepath);e.data.type="symlink",e.data.linkname=Yt.relative(i,Yt.resolve(i,r)),e.data.sourceType="buffer",e.source=Buffer.concat([])}else return t.isDirectory()?this.emit("warning",new L("DIRECTORYNOTSUPPORTED",e.data)):t.isSymbolicLink()?this.emit("warning",new L("SYMLINKNOTSUPPORTED",e.data)):this.emit("warning",new L("ENTRYNOTSUPPORTED",e.data)),null;return e.data=this._normalizeEntryData(e.data,t),e};T.prototype.abort=function(){return this._state.aborted||this._state.finalized?this:(this._abort(),this)};T.prototype.append=function(e,t){if(this._state.finalize||this._state.aborted)return this.emit("error",new L("QUEUECLOSED")),this;if(t=this._normalizeEntryData(t),typeof t.name!="string"||t.name.length===0)return this.emit("error",new L("ENTRYNAMEREQUIRED")),this;if(t.type==="directory"&&!this._moduleSupports("directory"))return this.emit("error",new L("DIRECTORYNOTSUPPORTED",{name:t.name})),this;if(e=Y.normalizeInputSource(e),Buffer.isBuffer(e))t.sourceType="buffer";else if(Y.isStream(e))t.sourceType="stream";else return this.emit("error",new L("INPUTSTEAMBUFFERREQUIRED",{name:t.name})),this;return this._entriesCount++,this._queue.push({data:t,source:e}),this};T.prototype.directory=function(e,t,r){if(this._state.finalize||this._state.aborted)return this.emit("error",new L("QUEUECLOSED")),this;if(typeof e!="string"||e.length===0)return this.emit("error",new L("DIRECTORYDIRPATHREQUIRED")),this;this._pending++,t===!1?t="":typeof t!="string"&&(t=e);var i=!1;typeof r=="function"?(i=r,r={}):typeof r!="object"&&(r={});var n={stat:!0,dot:!0};function s(){this._pending--,this._maybeFinalize()}function a(f){this.emit("error",f)}function o(f){u.pause();var l=!1,d=Object.assign({},r);d.name=f.relative,d.prefix=t,d.stats=f.stat,d.callback=u.resume.bind(u);try{if(i){if(d=i(d),d===!1)l=!0;else if(typeof d!="object")throw new L("DIRECTORYFUNCTIONINVALIDDATA",{dirpath:e})}}catch(h){this.emit("error",h);return}if(l){u.resume();return}this._append(f.absolute,d)}var u=on(e,n);return u.on("error",a.bind(this)),u.on("match",o.bind(this)),u.on("end",s.bind(this)),this};T.prototype.file=function(e,t){return this._state.finalize||this._state.aborted?(this.emit("error",new L("QUEUECLOSED")),this):typeof e!="string"||e.length===0?(this.emit("error",new L("FILEFILEPATHREQUIRED")),this):(this._append(e,t),this)};T.prototype.glob=function(e,t,r){this._pending++,t=Y.defaults(t,{stat:!0,pattern:e});function i(){this._pending--,this._maybeFinalize()}function n(o){this.emit("error",o)}function s(o){a.pause();var u=Object.assign({},r);u.callback=a.resume.bind(a),u.stats=o.stat,u.name=o.relative,this._append(o.absolute,u)}var a=on(t.cwd||".",t);return a.on("error",n.bind(this)),a.on("match",s.bind(this)),a.on("end",i.bind(this)),this};T.prototype.finalize=function(){if(this._state.aborted){var e=new L("ABORTED");return this.emit("error",e),Promise.reject(e)}if(this._state.finalize){var t=new L("FINALIZING");return this.emit("error",t),Promise.reject(t)}this._state.finalize=!0,this._pending===0&&this._queue.idle()&&this._statQueue.idle()&&this._finalize();var r=this;return new Promise(function(i,n){var s;r._module.on("end",function(){s||i()}),r._module.on("error",function(a){s=!0,n(a)})})};T.prototype.setFormat=function(e){return this._format?(this.emit("error",new L("FORMATSET")),this):(this._format=e,this)};T.prototype.setModule=function(e){return this._state.aborted?(this.emit("error",new L("ABORTED")),this):this._state.module?(this.emit("error",new L("MODULESET")),this):(this._module=e,this._modulePipe(),this)};T.prototype.symlink=function(e,t,r){if(this._state.finalize||this._state.aborted)return this.emit("error",new L("QUEUECLOSED")),this;if(typeof e!="string"||e.length===0)return this.emit("error",new L("SYMLINKFILEPATHREQUIRED")),this;if(typeof t!="string"||t.length===0)return this.emit("error",new L("SYMLINKTARGETREQUIRED",{filepath:e})),this;if(!this._moduleSupports("symlink"))return this.emit("error",new L("SYMLINKNOTSUPPORTED",{filepath:e})),this;var i={};return i.type="symlink",i.name=e.replace(/\\/g,"/"),i.linkname=t.replace(/\\/g,"/"),i.sourceType="buffer",typeof r=="number"&&(i.mode=r),this._entriesCount++,this._queue.push({data:i,source:Buffer.concat([])}),this};T.prototype.pointer=function(){return this._pointer};T.prototype.use=function(e){return this._streams.push(e),this};fn.exports=T});var et=E((yh,hn)=>{c();var Je=hn.exports=function(){};Je.prototype.getName=function(){};Je.prototype.getSize=function(){};Je.prototype.getLastModifiedDate=function(){};Je.prototype.isDirectory=function(){}});var tt=E((_h,ln)=>{c();var Q=ln.exports={};Q.dateToDos=function(e,t){t=t||!1;var r=t?e.getFullYear():e.getUTCFullYear();if(r<1980)return 2162688;if(r>=2044)return 2141175677;var i={year:r,month:t?e.getMonth():e.getUTCMonth(),date:t?e.getDate():e.getUTCDate(),hours:t?e.getHours():e.getUTCHours(),minutes:t?e.getMinutes():e.getUTCMinutes(),seconds:t?e.getSeconds():e.getUTCSeconds()};return i.year-1980<<25|i.month+1<<21|i.date<<16|i.hours<<11|i.minutes<<5|i.seconds/2};Q.dosToDate=function(e){return new Date((e>>25&127)+1980,(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(e&31)<<1)};Q.fromDosTime=function(e){return Q.dosToDate(e.readUInt32LE(0))};Q.getEightBytes=function(e){var t=Buffer.alloc(8);return t.writeUInt32LE(e%4294967296,0),t.writeUInt32LE(e/4294967296|0,4),t};Q.getShortBytes=function(e){var t=Buffer.alloc(2);return t.writeUInt16LE((e&65535)>>>0,0),t};Q.getShortBytesValue=function(e,t){return e.readUInt16LE(t)};Q.getLongBytes=function(e){var t=Buffer.alloc(4);return t.writeUInt32LE((e&4294967295)>>>0,0),t};Q.getLongBytesValue=function(e,t){return e.readUInt32LE(t)};Q.toDosTime=function(e){return Q.getLongBytes(Q.dateToDos(e))}});var Wt=E((Eh,vn)=>{c();var pn=tt(),dn=8,mn=1,Gf=4,jf=2,gn=64,yn=2048,G=vn.exports=function(){return this instanceof G?(this.descriptor=!1,this.encryption=!1,this.utf8=!1,this.numberOfShannonFanoTrees=0,this.strongEncryption=!1,this.slidingDictionarySize=0,this):new G};G.prototype.encode=function(){return pn.getShortBytes((this.descriptor?dn:0)|(this.utf8?yn:0)|(this.encryption?mn:0)|(this.strongEncryption?gn:0))};G.prototype.parse=function(e,t){var r=pn.getShortBytesValue(e,t),i=new G;return i.useDataDescriptor((r&dn)!==0),i.useUTF8ForNames((r&yn)!==0),i.useStrongEncryption((r&gn)!==0),i.useEncryption((r&mn)!==0),i.setSlidingDictionarySize((r&jf)!==0?8192:4096),i.setNumberOfShannonFanoTrees((r&Gf)!==0?3:2),i};G.prototype.setNumberOfShannonFanoTrees=function(e){this.numberOfShannonFanoTrees=e};G.prototype.getNumberOfShannonFanoTrees=function(){return this.numberOfShannonFanoTrees};G.prototype.setSlidingDictionarySize=function(e){this.slidingDictionarySize=e};G.prototype.getSlidingDictionarySize=function(){return this.slidingDictionarySize};G.prototype.useDataDescriptor=function(e){this.descriptor=e};G.prototype.usesDataDescriptor=function(){return this.descriptor};G.prototype.useEncryption=function(e){this.encryption=e};G.prototype.usesEncryption=function(){return this.encryption};G.prototype.useStrongEncryption=function(e){this.strongEncryption=e};G.prototype.usesStrongEncryption=function(){return this.strongEncryption};G.prototype.useUTF8ForNames=function(e){this.utf8=e};G.prototype.usesUTF8ForNames=function(){return this.utf8}});var bn=E((wh,_n)=>{c();_n.exports={PERM_MASK:4095,FILE_TYPE_FLAG:61440,LINK_FLAG:40960,FILE_FLAG:32768,DIR_FLAG:16384,DEFAULT_LINK_PERM:511,DEFAULT_DIR_PERM:493,DEFAULT_FILE_PERM:420}});var Xt=E((Oh,En)=>{c();En.exports={WORD:4,DWORD:8,EMPTY:Buffer.alloc(0),SHORT:2,SHORT_MASK:65535,SHORT_SHIFT:16,SHORT_ZERO:Buffer.from(Array(2)),LONG:4,LONG_ZERO:Buffer.from(Array(4)),MIN_VERSION_INITIAL:10,MIN_VERSION_DATA_DESCRIPTOR:20,MIN_VERSION_ZIP64:45,VERSION_MADEBY:45,METHOD_STORED:0,METHOD_DEFLATED:8,PLATFORM_UNIX:3,PLATFORM_FAT:0,SIG_LFH:67324752,SIG_DD:134695760,SIG_CFH:33639248,SIG_EOCD:101010256,SIG_ZIP64_EOCD:101075792,SIG_ZIP64_EOCD_LOC:117853008,ZIP64_MAGIC_SHORT:65535,ZIP64_MAGIC:4294967295,ZIP64_EXTRA_ID:1,ZLIB_NO_COMPRESSION:0,ZLIB_BEST_SPEED:1,ZLIB_BEST_COMPRESSION:9,ZLIB_DEFAULT_COMPRESSION:-1,MODE_MASK:4095,DEFAULT_FILE_MODE:33188,DEFAULT_DIR_MODE:16877,EXT_FILE_ATTR_DIR:1106051088,EXT_FILE_ATTR_FILE:2175008800,S_IFMT:61440,S_IFIFO:4096,S_IFCHR:8192,S_IFDIR:16384,S_IFBLK:24576,S_IFREG:32768,S_IFLNK:40960,S_IFSOCK:49152,S_DOS_A:32,S_DOS_D:16,S_DOS_V:8,S_DOS_S:4,S_DOS_H:2,S_DOS_R:1}});var Jt=E((Th,In)=>{c();var Uf=S("util").inherits,kf=ct(),wn=et(),Sn=Wt(),xn=bn(),j=Xt(),On=tt(),x=In.exports=function(e){if(!(this instanceof x))return new x(e);wn.call(this),this.platform=j.PLATFORM_FAT,this.method=-1,this.name=null,this.size=0,this.csize=0,this.gpb=new Sn,this.crc=0,this.time=-1,this.minver=j.MIN_VERSION_INITIAL,this.mode=-1,this.extra=null,this.exattr=0,this.inattr=0,this.comment=null,e&&this.setName(e)};Uf(x,wn);x.prototype.getCentralDirectoryExtra=function(){return this.getExtra()};x.prototype.getComment=function(){return this.comment!==null?this.comment:""};x.prototype.getCompressedSize=function(){return this.csize};x.prototype.getCrc=function(){return this.crc};x.prototype.getExternalAttributes=function(){return this.exattr};x.prototype.getExtra=function(){return this.extra!==null?this.extra:j.EMPTY};x.prototype.getGeneralPurposeBit=function(){return this.gpb};x.prototype.getInternalAttributes=function(){return this.inattr};x.prototype.getLastModifiedDate=function(){return this.getTime()};x.prototype.getLocalFileDataExtra=function(){return this.getExtra()};x.prototype.getMethod=function(){return this.method};x.prototype.getName=function(){return this.name};x.prototype.getPlatform=function(){return this.platform};x.prototype.getSize=function(){return this.size};x.prototype.getTime=function(){return this.time!==-1?On.dosToDate(this.time):-1};x.prototype.getTimeDos=function(){return this.time!==-1?this.time:0};x.prototype.getUnixMode=function(){return this.platform!==j.PLATFORM_UNIX?0:this.getExternalAttributes()>>j.SHORT_SHIFT&j.SHORT_MASK};x.prototype.getVersionNeededToExtract=function(){return this.minver};x.prototype.setComment=function(e){Buffer.byteLength(e)!==e.length&&this.getGeneralPurposeBit().useUTF8ForNames(!0),this.comment=e};x.prototype.setCompressedSize=function(e){if(e<0)throw new Error("invalid entry compressed size");this.csize=e};x.prototype.setCrc=function(e){if(e<0)throw new Error("invalid entry crc32");this.crc=e};x.prototype.setExternalAttributes=function(e){this.exattr=e>>>0};x.prototype.setExtra=function(e){this.extra=e};x.prototype.setGeneralPurposeBit=function(e){if(!(e instanceof Sn))throw new Error("invalid entry GeneralPurposeBit");this.gpb=e};x.prototype.setInternalAttributes=function(e){this.inattr=e};x.prototype.setMethod=function(e){if(e<0)throw new Error("invalid entry compression method");this.method=e};x.prototype.setName=function(e,t=!1){e=kf(e,!1).replace(/^\w+:/,"").replace(/^(\.\.\/|\/)+/,""),t&&(e=`/${e}`),Buffer.byteLength(e)!==e.length&&this.getGeneralPurposeBit().useUTF8ForNames(!0),this.name=e};x.prototype.setPlatform=function(e){this.platform=e};x.prototype.setSize=function(e){if(e<0)throw new Error("invalid entry size");this.size=e};x.prototype.setTime=function(e,t){if(!(e instanceof Date))throw new Error("invalid entry time");this.time=On.dateToDos(e,t)};x.prototype.setUnixMode=function(e){e|=this.isDirectory()?j.S_IFDIR:j.S_IFREG;var t=0;t|=e<<j.SHORT_SHIFT|(this.isDirectory()?j.S_DOS_D:j.S_DOS_A),this.setExternalAttributes(t),this.mode=e&j.MODE_MASK,this.platform=j.PLATFORM_UNIX};x.prototype.setVersionNeededToExtract=function(e){this.minver=e};x.prototype.isDirectory=function(){return this.getName().slice(-1)==="/"};x.prototype.isUnixSymlink=function(){return(this.getUnixMode()&xn.FILE_TYPE_FLAG)===xn.LINK_FLAG};x.prototype.isZip64=function(){return this.csize>j.ZIP64_MAGIC||this.size>j.ZIP64_MAGIC}});var tr=E((Dh,Tn)=>{c();var Zf=S("stream").Stream,Hf=le().PassThrough,er=Tn.exports={};er.isStream=function(e){return e instanceof Zf};er.normalizeInputSource=function(e){if(e===null)return Buffer.alloc(0);if(typeof e=="string")return Buffer.from(e);if(er.isStream(e)&&!e._readableState){var t=new Hf;return e.pipe(t),t}return e}});var ir=E((Fh,Dn)=>{c();var Qf=S("util").inherits,rr=le().Transform,$f=et(),An=tr(),Z=Dn.exports=function(e){if(!(this instanceof Z))return new Z(e);rr.call(this,e),this.offset=0,this._archive={finish:!1,finished:!1,processing:!1}};Qf(Z,rr);Z.prototype._appendBuffer=function(e,t,r){};Z.prototype._appendStream=function(e,t,r){};Z.prototype._emitErrorCallback=function(e){e&&this.emit("error",e)};Z.prototype._finish=function(e){};Z.prototype._normalizeEntry=function(e){};Z.prototype._transform=function(e,t,r){r(null,e)};Z.prototype.entry=function(e,t,r){if(t=t||null,typeof r!="function"&&(r=this._emitErrorCallback.bind(this)),!(e instanceof $f)){r(new Error("not a valid instance of ArchiveEntry"));return}if(this._archive.finish||this._archive.finished){r(new Error("unacceptable entry after finish"));return}if(this._archive.processing){r(new Error("already processing an entry"));return}if(this._archive.processing=!0,this._normalizeEntry(e),this._entry=e,t=An.normalizeInputSource(t),Buffer.isBuffer(t))this._appendBuffer(e,t,r);else if(An.isStream(t))this._appendStream(e,t,r);else{this._archive.processing=!1,r(new Error("input source must be valid Stream or Buffer instance"));return}return this};Z.prototype.finish=function(){if(this._archive.processing){this._archive.finish=!0;return}this._finish()};Z.prototype.getBytesWritten=function(){return this.offset};Z.prototype.write=function(e,t){return e&&(this.offset+=e.length),rr.prototype.write.call(this,e,t)}});var or=E((Ch,Fn)=>{c();var ee=S("buffer").Buffer,nr=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];typeof Int32Array<"u"&&(nr=new Int32Array(nr));function Rn(e){if(ee.isBuffer(e))return e;var t=typeof ee.alloc=="function"&&typeof ee.from=="function";if(typeof e=="number")return t?ee.alloc(e):new ee(e);if(typeof e=="string")return t?ee.from(e):new ee(e);throw new Error("input must be buffer, number, or string, received "+typeof e)}function Yf(e){var t=Rn(4);return t.writeInt32BE(e,0),t}function sr(e,t){e=Rn(e),ee.isBuffer(t)&&(t=t.readUInt32BE(0));for(var r=~~t^-1,i=0;i<e.length;i++)r=nr[(r^e[i])&255]^r>>>8;return r^-1}function ar(){return Yf(sr.apply(null,arguments))}ar.signed=function(){return sr.apply(null,arguments)};ar.unsigned=function(){return sr.apply(null,arguments)>>>0};Fn.exports=ar});var fr=E(ur=>{c();var Pn;(function(e){typeof DO_NOT_EXPORT_CRC>"u"?typeof ur=="object"?e(ur):typeof define=="function"&&define.amd?define(function(){var t={};return e(t),t}):e(Pn={}):e(Pn={})})(function(e){e.version="1.2.2";function t(){for(var p=0,R=new Array(256),m=0;m!=256;++m)p=m,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,R[m]=p;return typeof Int32Array<"u"?new Int32Array(R):R}var r=t();function i(p){var R=0,m=0,w=0,I=typeof Int32Array<"u"?new Int32Array(4096):new Array(4096);for(w=0;w!=256;++w)I[w]=p[w];for(w=0;w!=256;++w)for(m=p[w],R=256+w;R<4096;R+=256)m=I[R]=m>>>8^p[m&255];var P=[];for(w=1;w!=16;++w)P[w-1]=typeof Int32Array<"u"?I.subarray(w*256,w*256+256):I.slice(w*256,w*256+256);return P}var n=i(r),s=n[0],a=n[1],o=n[2],u=n[3],f=n[4],l=n[5],d=n[6],h=n[7],g=n[8],v=n[9],O=n[10],F=n[11],D=n[12],C=n[13],$=n[14];function q(p,R){for(var m=R^-1,w=0,I=p.length;w<I;)m=m>>>8^r[(m^p.charCodeAt(w++))&255];return~m}function M(p,R){for(var m=R^-1,w=p.length-15,I=0;I<w;)m=$[p[I++]^m&255]^C[p[I++]^m>>8&255]^D[p[I++]^m>>16&255]^F[p[I++]^m>>>24]^O[p[I++]]^v[p[I++]]^g[p[I++]]^h[p[I++]]^d[p[I++]]^l[p[I++]]^f[p[I++]]^u[p[I++]]^o[p[I++]]^a[p[I++]]^s[p[I++]]^r[p[I++]];for(w+=15;I<w;)m=m>>>8^r[(m^p[I++])&255];return~m}function W(p,R){for(var m=R^-1,w=0,I=p.length,P=0,K=0;w<I;)P=p.charCodeAt(w++),P<128?m=m>>>8^r[(m^P)&255]:P<2048?(m=m>>>8^r[(m^(192|P>>6&31))&255],m=m>>>8^r[(m^(128|P&63))&255]):P>=55296&&P<57344?(P=(P&1023)+64,K=p.charCodeAt(w++)&1023,m=m>>>8^r[(m^(240|P>>8&7))&255],m=m>>>8^r[(m^(128|P>>2&63))&255],m=m>>>8^r[(m^(128|K>>6&15|(P&3)<<4))&255],m=m>>>8^r[(m^(128|K&63))&255]):(m=m>>>8^r[(m^(224|P>>12&15))&255],m=m>>>8^r[(m^(128|P>>6&63))&255],m=m>>>8^r[(m^(128|P&63))&255]);return~m}e.table=r,e.bstr=q,e.buf=M,e.str=W})});var Ln=E((zh,Cn)=>{"use strict";c();var{Transform:Kf}=le(),Vf=fr(),cr=class extends Kf{constructor(t){super(t),this.checksum=Buffer.allocUnsafe(4),this.checksum.writeInt32BE(0,0),this.rawSize=0}_transform(t,r,i){t&&(this.checksum=Vf.buf(t,this.checksum)>>>0,this.rawSize+=t.length),i(null,t)}digest(t){let r=Buffer.allocUnsafe(4);return r.writeUInt32BE(this.checksum>>>0,0),t?r.toString(t):r}hex(){return this.digest("hex").toUpperCase()}size(){return this.rawSize}};Cn.exports=cr});var Nn=E((qh,Mn)=>{"use strict";c();var{DeflateRaw:Wf}=S("zlib"),Xf=fr(),hr=class extends Wf{constructor(t){super(t),this.checksum=Buffer.allocUnsafe(4),this.checksum.writeInt32BE(0,0),this.rawSize=0,this.compressedSize=0}push(t,r){return t&&(this.compressedSize+=t.length),super.push(t,r)}_transform(t,r,i){t&&(this.checksum=Xf.buf(t,this.checksum)>>>0,this.rawSize+=t.length),super._transform(t,r,i)}digest(t){let r=Buffer.allocUnsafe(4);return r.writeUInt32BE(this.checksum>>>0,0),t?r.toString(t):r}hex(){return this.digest("hex").toUpperCase()}size(t=!1){return t?this.compressedSize:this.rawSize}};Mn.exports=hr});var lr=E((jh,zn)=>{"use strict";c();zn.exports={CRC32Stream:Ln(),DeflateCRC32Stream:Nn()}});var Gn=E((Qh,qn)=>{c();var Jf=S("util").inherits,ec=or(),{CRC32Stream:tc}=lr(),{DeflateCRC32Stream:rc}=lr(),Bn=ir(),kh=Jt(),Zh=Wt(),b=Xt(),Hh=tr(),y=tt(),B=qn.exports=function(e){if(!(this instanceof B))return new B(e);e=this.options=this._defaults(e),Bn.call(this,e),this._entry=null,this._entries=[],this._archive={centralLength:0,centralOffset:0,comment:"",finish:!1,finished:!1,processing:!1,forceZip64:e.forceZip64,forceLocalTime:e.forceLocalTime}};Jf(B,Bn);B.prototype._afterAppend=function(e){this._entries.push(e),e.getGeneralPurposeBit().usesDataDescriptor()&&this._writeDataDescriptor(e),this._archive.processing=!1,this._entry=null,this._archive.finish&&!this._archive.finished&&this._finish()};B.prototype._appendBuffer=function(e,t,r){t.length===0&&e.setMethod(b.METHOD_STORED);var i=e.getMethod();if(i===b.METHOD_STORED&&(e.setSize(t.length),e.setCompressedSize(t.length),e.setCrc(ec.unsigned(t))),this._writeLocalFileHeader(e),i===b.METHOD_STORED){this.write(t),this._afterAppend(e),r(null,e);return}else if(i===b.METHOD_DEFLATED){this._smartStream(e,r).end(t);return}else{r(new Error("compression method "+i+" not implemented"));return}};B.prototype._appendStream=function(e,t,r){e.getGeneralPurposeBit().useDataDescriptor(!0),e.setVersionNeededToExtract(b.MIN_VERSION_DATA_DESCRIPTOR),this._writeLocalFileHeader(e);var i=this._smartStream(e,r);t.once("error",function(n){i.emit("error",n),i.end()}),t.pipe(i)};B.prototype._defaults=function(e){return typeof e!="object"&&(e={}),typeof e.zlib!="object"&&(e.zlib={}),typeof e.zlib.level!="number"&&(e.zlib.level=b.ZLIB_BEST_SPEED),e.forceZip64=!!e.forceZip64,e.forceLocalTime=!!e.forceLocalTime,e};B.prototype._finish=function(){this._archive.centralOffset=this.offset,this._entries.forEach(function(e){this._writeCentralFileHeader(e)}.bind(this)),this._archive.centralLength=this.offset-this._archive.centralOffset,this.isZip64()&&this._writeCentralDirectoryZip64(),this._writeCentralDirectoryEnd(),this._archive.processing=!1,this._archive.finish=!0,this._archive.finished=!0,this.end()};B.prototype._normalizeEntry=function(e){e.getMethod()===-1&&e.setMethod(b.METHOD_DEFLATED),e.getMethod()===b.METHOD_DEFLATED&&(e.getGeneralPurposeBit().useDataDescriptor(!0),e.setVersionNeededToExtract(b.MIN_VERSION_DATA_DESCRIPTOR)),e.getTime()===-1&&e.setTime(new Date,this._archive.forceLocalTime),e._offsets={file:0,data:0,contents:0}};B.prototype._smartStream=function(e,t){var r=e.getMethod()===b.METHOD_DEFLATED,i=r?new rc(this.options.zlib):new tc,n=null;function s(){var a=i.digest().readUInt32BE(0);e.setCrc(a),e.setSize(i.size()),e.setCompressedSize(i.size(!0)),this._afterAppend(e),t(n,e)}return i.once("end",s.bind(this)),i.once("error",function(a){n=a}),i.pipe(this,{end:!1}),i};B.prototype._writeCentralDirectoryEnd=function(){var e=this._entries.length,t=this._archive.centralLength,r=this._archive.centralOffset;this.isZip64()&&(e=b.ZIP64_MAGIC_SHORT,t=b.ZIP64_MAGIC,r=b.ZIP64_MAGIC),this.write(y.getLongBytes(b.SIG_EOCD)),this.write(b.SHORT_ZERO),this.write(b.SHORT_ZERO),this.write(y.getShortBytes(e)),this.write(y.getShortBytes(e)),this.write(y.getLongBytes(t)),this.write(y.getLongBytes(r));var i=this.getComment(),n=Buffer.byteLength(i);this.write(y.getShortBytes(n)),this.write(i)};B.prototype._writeCentralDirectoryZip64=function(){this.write(y.getLongBytes(b.SIG_ZIP64_EOCD)),this.write(y.getEightBytes(44)),this.write(y.getShortBytes(b.MIN_VERSION_ZIP64)),this.write(y.getShortBytes(b.MIN_VERSION_ZIP64)),this.write(b.LONG_ZERO),this.write(b.LONG_ZERO),this.write(y.getEightBytes(this._entries.length)),this.write(y.getEightBytes(this._entries.length)),this.write(y.getEightBytes(this._archive.centralLength)),this.write(y.getEightBytes(this._archive.centralOffset)),this.write(y.getLongBytes(b.SIG_ZIP64_EOCD_LOC)),this.write(b.LONG_ZERO),this.write(y.getEightBytes(this._archive.centralOffset+this._archive.centralLength)),this.write(y.getLongBytes(1))};B.prototype._writeCentralFileHeader=function(e){var t=e.getGeneralPurposeBit(),r=e.getMethod(),i=e._offsets,n=e.getSize(),s=e.getCompressedSize();if(e.isZip64()||i.file>b.ZIP64_MAGIC){n=b.ZIP64_MAGIC,s=b.ZIP64_MAGIC,e.setVersionNeededToExtract(b.MIN_VERSION_ZIP64);var a=Buffer.concat([y.getShortBytes(b.ZIP64_EXTRA_ID),y.getShortBytes(24),y.getEightBytes(e.getSize()),y.getEightBytes(e.getCompressedSize()),y.getEightBytes(i.file)],28);e.setExtra(a)}this.write(y.getLongBytes(b.SIG_CFH)),this.write(y.getShortBytes(e.getPlatform()<<8|b.VERSION_MADEBY)),this.write(y.getShortBytes(e.getVersionNeededToExtract())),this.write(t.encode()),this.write(y.getShortBytes(r)),this.write(y.getLongBytes(e.getTimeDos())),this.write(y.getLongBytes(e.getCrc())),this.write(y.getLongBytes(s)),this.write(y.getLongBytes(n));var o=e.getName(),u=e.getComment(),f=e.getCentralDirectoryExtra();t.usesUTF8ForNames()&&(o=Buffer.from(o),u=Buffer.from(u)),this.write(y.getShortBytes(o.length)),this.write(y.getShortBytes(f.length)),this.write(y.getShortBytes(u.length)),this.write(b.SHORT_ZERO),this.write(y.getShortBytes(e.getInternalAttributes())),this.write(y.getLongBytes(e.getExternalAttributes())),i.file>b.ZIP64_MAGIC?this.write(y.getLongBytes(b.ZIP64_MAGIC)):this.write(y.getLongBytes(i.file)),this.write(o),this.write(f),this.write(u)};B.prototype._writeDataDescriptor=function(e){this.write(y.getLongBytes(b.SIG_DD)),this.write(y.getLongBytes(e.getCrc())),e.isZip64()?(this.write(y.getEightBytes(e.getCompressedSize())),this.write(y.getEightBytes(e.getSize()))):(this.write(y.getLongBytes(e.getCompressedSize())),this.write(y.getLongBytes(e.getSize())))};B.prototype._writeLocalFileHeader=function(e){var t=e.getGeneralPurposeBit(),r=e.getMethod(),i=e.getName(),n=e.getLocalFileDataExtra();e.isZip64()&&(t.useDataDescriptor(!0),e.setVersionNeededToExtract(b.MIN_VERSION_ZIP64)),t.usesUTF8ForNames()&&(i=Buffer.from(i)),e._offsets.file=this.offset,this.write(y.getLongBytes(b.SIG_LFH)),this.write(y.getShortBytes(e.getVersionNeededToExtract())),this.write(t.encode()),this.write(y.getShortBytes(r)),this.write(y.getLongBytes(e.getTimeDos())),e._offsets.data=this.offset,t.usesDataDescriptor()?(this.write(b.LONG_ZERO),this.write(b.LONG_ZERO),this.write(b.LONG_ZERO)):(this.write(y.getLongBytes(e.getCrc())),this.write(y.getLongBytes(e.getCompressedSize())),this.write(y.getLongBytes(e.getSize()))),this.write(y.getShortBytes(i.length)),this.write(y.getShortBytes(n.length)),this.write(i),this.write(n),e._offsets.contents=this.offset};B.prototype.getComment=function(e){return this._archive.comment!==null?this._archive.comment:""};B.prototype.isZip64=function(){return this._archive.forceZip64||this._entries.length>b.ZIP64_MAGIC_SHORT||this._archive.centralLength>b.ZIP64_MAGIC||this._archive.centralOffset>b.ZIP64_MAGIC};B.prototype.setComment=function(e){this._archive.comment=e}});var pr=E((Yh,jn)=>{c();jn.exports={ArchiveEntry:et(),ZipArchiveEntry:Jt(),ArchiveOutputStream:ir(),ZipArchiveOutputStream:Gn()}});var Hn=E((Vh,Zn)=>{c();var kn=Fe(),_e=S("path"),dr=_t(),ic=Ot(),nc=Ft(),sc=Pt(),ac=Xe(),he=Zn.exports={},Un=/[\/\\]/g,oc=function(e,t){var r=[];return dr(e).forEach(function(i){var n=i.indexOf("!")===0;n&&(i=i.slice(1));var s=t(i);n?r=ic(r,s):r=nc(r,s)}),r};he.exists=function(){var e=_e.join.apply(_e,arguments);return kn.existsSync(e)};he.expand=function(...e){var t=sc(e[0])?e.shift():{},r=Array.isArray(e[0])?e[0]:e;if(r.length===0)return[];var i=oc(r,function(n){return ac.sync(n,t)});return t.filter&&(i=i.filter(function(n){n=_e.join(t.cwd||"",n);try{return typeof t.filter=="function"?t.filter(n):kn.statSync(n)[t.filter]()}catch{return!1}})),i};he.expandMapping=function(e,t,r){r=Object.assign({rename:function(s,a){return _e.join(s||"",a)}},r);var i=[],n={};return he.expand(r,e).forEach(function(s){var a=s;r.flatten&&(a=_e.basename(a)),r.ext&&(a=a.replace(/(\.[^\/]*)?$/,r.ext));var o=r.rename(t,a,r);r.cwd&&(s=_e.join(r.cwd,s)),o=o.replace(Un,"/"),s=s.replace(Un,"/"),n[o]?n[o].src.push(s):(i.push({src:[s],dest:o}),n[o]=i[i.length-1])}),i};he.normalizeFilesArray=function(e){var t=[];return e.forEach(function(r){var i;("src"in r||"dest"in r)&&t.push(r)}),t.length===0?[]:(t=_(t).chain().forEach(function(r){!("src"in r)||!r.src||(Array.isArray(r.src)?r.src=dr(r.src):r.src=[r.src])}).map(function(r){var i=Object.assign({},r);if(delete i.src,delete i.dest,r.expand)return he.expandMapping(r.src,r.dest,i).map(function(s){var a=Object.assign({},r);return a.orig=Object.assign({},r),a.src=s.src,a.dest=s.dest,["expand","cwd","flatten","rename","ext"].forEach(function(o){delete a[o]}),a});var n=Object.assign({},r);return n.orig=Object.assign({},r),"src"in n&&Object.defineProperty(n,"src",{enumerable:!0,get:function s(){var a;return"result"in s||(a=r.src,a=Array.isArray(a)?dr(a):[a],s.result=he.expand(i,a)),s.result}}),"dest"in n&&(n.dest=r.dest),n}).flatten().value(),t)}});var Kn=E((Xh,Yn)=>{c();var mr=Fe(),Qn=S("path"),uc=pt(),$n=ct(),fc=yt(),cc=S("stream").Stream,hc=le().PassThrough,H=Yn.exports={};H.file=Hn();H.collectStream=function(e,t){var r=[],i=0;e.on("error",t),e.on("data",function(n){r.push(n),i+=n.length}),e.on("end",function(){var n=Buffer.alloc(i),s=0;r.forEach(function(a){a.copy(n,s),s+=a.length}),t(null,n)})};H.dateify=function(e){return e=e||new Date,e instanceof Date?e=e:typeof e=="string"?e=new Date(e):e=new Date,e};H.defaults=function(e,t,r){var i=arguments;return i[0]=i[0]||{},fc(...i)};H.isStream=function(e){return e instanceof cc};H.lazyReadStream=function(e){return new uc.Readable(function(){return mr.createReadStream(e)})};H.normalizeInputSource=function(e){return e===null?Buffer.alloc(0):typeof e=="string"?Buffer.from(e):H.isStream(e)?e.pipe(new hc):e};H.sanitizePath=function(e){return $n(e,!1).replace(/^\w+:/,"").replace(/^(\.\.\/|\/)+/,"")};H.trailingSlashIt=function(e){return e.slice(-1)!=="/"?e+"/":e};H.unixifyPath=function(e){return $n(e,!1).replace(/^\w+:/,"")};H.walkdir=function(e,t,r){var i=[];typeof t=="function"&&(r=t,t=e),mr.readdir(e,function(n,s){var a=0,o,u;if(n)return r(n);(function f(){if(o=s[a++],!o)return r(null,i);u=Qn.join(e,o),mr.stat(u,function(l,d){i.push({path:u,relative:Qn.relative(t,u).replace(/\\/g,"/"),stats:d}),d&&d.isDirectory()?H.walkdir(u,t,function(h,g){g.forEach(function(v){i.push(v)}),f()}):f()})})()})}});var Wn=E((el,Vn)=>{c();var lc=S("util").inherits,yr=pr().ZipArchiveOutputStream,pc=pr().ZipArchiveEntry,gr=Kn(),be=Vn.exports=function(e){if(!(this instanceof be))return new be(e);e=this.options=e||{},e.zlib=e.zlib||{},yr.call(this,e),typeof e.level=="number"&&e.level>=0&&(e.zlib.level=e.level,delete e.level),!e.forceZip64&&typeof e.zlib.level=="number"&&e.zlib.level===0&&(e.store=!0),e.namePrependSlash=e.namePrependSlash||!1,e.comment&&e.comment.length>0&&this.setComment(e.comment)};lc(be,yr);be.prototype._normalizeFileData=function(e){e=gr.defaults(e,{type:"file",name:null,namePrependSlash:this.options.namePrependSlash,linkname:null,date:null,mode:null,store:this.options.store,comment:""});var t=e.type==="directory",r=e.type==="symlink";return e.name&&(e.name=gr.sanitizePath(e.name),!r&&e.name.slice(-1)==="/"?(t=!0,e.type="directory"):t&&(e.name+="/")),(t||r)&&(e.store=!0),e.date=gr.dateify(e.date),e};be.prototype.entry=function(e,t,r){if(typeof r!="function"&&(r=this._emitErrorCallback.bind(this)),t=this._normalizeFileData(t),t.type!=="file"&&t.type!=="directory"&&t.type!=="symlink"){r(new Error(t.type+" entries not currently supported"));return}if(typeof t.name!="string"||t.name.length===0){r(new Error("entry name must be a non-empty string value"));return}if(t.type==="symlink"&&typeof t.linkname!="string"){r(new Error("entry linkname must be a non-empty string value when type equals symlink"));return}var i=new pc(t.name);return i.setTime(t.date,this.options.forceLocalTime),t.namePrependSlash&&i.setName(t.name,!0),t.store&&i.setMethod(0),t.comment.length>0&&i.setComment(t.comment),t.type==="symlink"&&typeof t.mode!="number"&&(t.mode=40960),typeof t.mode=="number"&&(t.type==="symlink"&&(t.mode|=40960),i.setUnixMode(t.mode)),t.type==="symlink"&&typeof t.linkname=="string"&&(e=Buffer.from(t.linkname)),yr.prototype.entry.call(this,i,e,r)};be.prototype.finalize=function(){this.finish()}});var Jn=E((rl,Xn)=>{c();var dc=Wn(),mc=De(),te=function(e){if(!(this instanceof te))return new te(e);e=this.options=mc.defaults(e,{comment:"",forceUTC:!1,namePrependSlash:!1,store:!1}),this.supports={directory:!0,symlink:!0},this.engine=new dc(e)};te.prototype.append=function(e,t,r){this.engine.entry(e,t,r)};te.prototype.finalize=function(){this.engine.finalize()};te.prototype.on=function(){return this.engine.on.apply(this.engine,arguments)};te.prototype.pipe=function(){return this.engine.pipe.apply(this.engine,arguments)};te.prototype.unpipe=function(){return this.engine.unpipe.apply(this.engine,arguments)};Xn.exports=te});var rs=E((nl,ts)=>{c();var gc=S("zlib"),yc=Es(),es=De(),V=function(e){if(!(this instanceof V))return new V(e);e=this.options=es.defaults(e,{gzip:!1}),typeof e.gzipOptions!="object"&&(e.gzipOptions={}),this.supports={directory:!0,symlink:!0},this.engine=yc.pack(e),this.compressor=!1,e.gzip&&(this.compressor=gc.createGzip(e.gzipOptions),this.compressor.on("error",this._onCompressorError.bind(this)))};V.prototype._onCompressorError=function(e){this.engine.emit("error",e)};V.prototype.append=function(e,t,r){var i=this;t.mtime=t.date;function n(a,o){if(a){r(a);return}i.engine.entry(t,o,function(u){r(u,t)})}if(t.sourceType==="buffer")n(null,e);else if(t.sourceType==="stream"&&t.stats){t.size=t.stats.size;var s=i.engine.entry(t,function(a){r(a,t)});e.pipe(s)}else t.sourceType==="stream"&&es.collectStream(e,n)};V.prototype.finalize=function(){this.engine.finalize()};V.prototype.on=function(){return this.engine.on.apply(this.engine,arguments)};V.prototype.pipe=function(e,t){return this.compressor?this.engine.pipe.apply(this.engine,[this.compressor]).pipe(e,t):this.engine.pipe.apply(this.engine,arguments)};V.prototype.unpipe=function(){return this.compressor?this.compressor.unpipe.apply(this.compressor,arguments):this.engine.unpipe.apply(this.engine,arguments)};ts.exports=V});var as=E((al,ss)=>{c();var vc=S("util").inherits,is=le().Transform,_c=or(),ns=De(),re=function(e){if(!(this instanceof re))return new re(e);e=this.options=ns.defaults(e,{}),is.call(this,e),this.supports={directory:!0,symlink:!0},this.files=[]};vc(re,is);re.prototype._transform=function(e,t,r){r(null,e)};re.prototype._writeStringified=function(){var e=JSON.stringify(this.files);this.write(e)};re.prototype.append=function(e,t,r){var i=this;t.crc32=0;function n(s,a){if(s){r(s);return}t.size=a.length||0,t.crc32=_c.unsigned(a),i.files.push(t),r(null,t)}t.sourceType==="buffer"?n(null,e):t.sourceType==="stream"&&ns.collectStream(e,n)};re.prototype.finalize=function(){this._writeStringified(),this.end()};ss.exports=re});var us=E((ul,os)=>{c();var bc=cn(),Re={},ie=function(e,t){return ie.create(e,t)};ie.create=function(e,t){if(Re[e]){var r=new bc(e,t);return r.setFormat(e),r.setModule(new Re[e](t)),r}else throw new Error("create("+e+"): format not registered")};ie.registerFormat=function(e,t){if(Re[e])throw new Error("register("+e+"): format already registered");if(typeof t!="function")throw new Error("register("+e+"): format module invalid");if(typeof t.prototype.append!="function"||typeof t.prototype.finalize!="function")throw new Error("register("+e+"): format module missing methods");Re[e]=t};ie.isRegisteredFormat=function(e){return!!Re[e]};ie.registerFormat("zip",Jn());ie.registerFormat("tar",rs());ie.registerFormat("json",as());os.exports=ie});c();var _r=ds(us());import{createWriteStream as fs,readFileSync as Ec,writeFileSync as xc}from"fs";import{readFile as wc}from"fs/promises";import{tmpdir as Sc}from"os";import{randomUUID as Oc}from"crypto";import{brotliCompressSync as Ic,constants as vr}from"zlib";async function vl(e){let{inputDirectory:t,outputZipPath:r,matchFilePattern:i="**/*"}=e;ft(ut`Zipping ${Pe.path(t)} into ${Pe.path(r)}`);let n=await ot(i,{cwd:t,absolute:!0,dot:!0,followSymbolicLinks:!1});return new Promise((s,a)=>{let o=(0,_r.default)("zip"),u=fs(r);u.on("close",()=>{s()}),o.on("error",h=>{a(h)}),o.pipe(u);let f=new Set;for(let h of n){let g=st(t,h);Tc(g,f)}let l=Array.from(f).sort((h,g)=>h.localeCompare(g));for(let h of l){let g=h.endsWith("/")?h:`${h}/`;o.append(Buffer.alloc(0),{name:g})}let d=n.map(async h=>{await cs(t,h,o)});Promise.all(d).then(()=>{o.finalize()}).catch(h=>{a(h)})})}function Tc(e,t){let r=at(e);for(;r&&r!=="."&&r!=="/";){t.add(r);let i=at(r);if(i===r)break;r=i}}async function cs(e,t,r){let i=st(e,t);if(!t||!i)return;let n=await wc(t);r.append(n,{name:i})}async function _l(e){let t=wr(Sc(),`${Oc()}.tar`);try{await new Promise((n,s)=>{let a=(0,_r.default)("tar"),o=fs(t);o.on("close",()=>n()),a.on("error",u=>s(u)),a.pipe(o),ot(e.matchFilePattern??"**/*",{cwd:e.inputDirectory,absolute:!0,dot:!0,followSymbolicLinks:!1}).then(async u=>{let f=u.map(async l=>{await cs(e.inputDirectory,l,a)});await Promise.all(f),a.finalize()}).catch(u=>{s(u instanceof Error?u:new Error(String(u)))})});let r=Ec(t),i=Ic(r,{params:{[vr.BROTLI_PARAM_QUALITY]:7,[vr.BROTLI_PARAM_MODE]:vr.BROTLI_MODE_GENERIC}});xc(e.outputPath,i)}finally{try{await Sr(t)}catch{ft(ut`Failed to clean up temporary file: ${Pe.path(t)}`)}}}export{vl as a,_l as b};
5
+ /*! Bundled license information:
6
+
7
+ archiver/lib/error.js:
8
+ archiver/lib/core.js:
9
+ (**
10
+ * Archiver Core
11
+ *
12
+ * @ignore
13
+ * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
14
+ * @copyright (c) 2012-2014 Chris Talkington, contributors.
15
+ *)
16
+
17
+ crc-32/crc32.js:
18
+ (*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com *)
19
+
20
+ zip-stream/index.js:
21
+ (**
22
+ * ZipStream
23
+ *
24
+ * @ignore
25
+ * @license [MIT]{@link https://github.com/archiverjs/node-zip-stream/blob/master/LICENSE}
26
+ * @copyright (c) 2014 Chris Talkington, contributors.
27
+ *)
28
+
29
+ archiver/lib/plugins/zip.js:
30
+ (**
31
+ * ZIP Format Plugin
32
+ *
33
+ * @module plugins/zip
34
+ * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
35
+ * @copyright (c) 2012-2014 Chris Talkington, contributors.
36
+ *)
37
+
38
+ archiver/lib/plugins/tar.js:
39
+ (**
40
+ * TAR Format Plugin
41
+ *
42
+ * @module plugins/tar
43
+ * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
44
+ * @copyright (c) 2012-2014 Chris Talkington, contributors.
45
+ *)
46
+
47
+ archiver/lib/plugins/json.js:
48
+ (**
49
+ * JSON Format Plugin
50
+ *
51
+ * @module plugins/json
52
+ * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
53
+ * @copyright (c) 2012-2014 Chris Talkington, contributors.
54
+ *)
55
+
56
+ archiver/index.js:
57
+ (**
58
+ * Archiver Vending
59
+ *
60
+ * @ignore
61
+ * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
62
+ * @copyright (c) 2012-2014 Chris Talkington, contributors.
63
+ *)
64
+ */
@@ -0,0 +1,2 @@
1
+ import{a as V,b as F}from"./chunk-4QBJ5JBX.js";import{h as v}from"./chunk-BWJIZYAG.js";import{Ta as I,ma as _,ua as l}from"./chunk-VFM2KQRM.js";import{a as T,c as k,e as $,g as h}from"./chunk-VKWPEFWQ.js";var L=k((z,a)=>{h();var S={};S.__wbindgen_placeholder__=a.exports;var s,{TextEncoder:q,TextDecoder:U}=T("util");function A(e){return e==null}var f=null;function g(){return(f===null||f.buffer.detached===!0||f.buffer.detached===void 0&&f.buffer!==s.memory.buffer)&&(f=new DataView(s.memory.buffer)),f}var w=0,b=null;function p(){return(b===null||b.byteLength===0)&&(b=new Uint8Array(s.memory.buffer)),b}var m=new q("utf-8"),C=typeof m.encodeInto=="function"?function(e,t){return m.encodeInto(e,t)}:function(e,t){let r=m.encode(e);return t.set(r),{read:e.length,written:r.length}};function M(e,t,r){if(r===void 0){let i=m.encode(e),u=t(i.length,1)>>>0;return p().subarray(u,u+i.length).set(i),w=i.length,u}let n=e.length,o=t(n,1)>>>0,d=p(),c=0;for(;c<n;c++){let i=e.charCodeAt(c);if(i>127)break;d[o+c]=i}if(c!==n){c!==0&&(e=e.slice(c)),o=r(o,n,n=c+e.length*3,1)>>>0;let i=p().subarray(o+c,o+n),u=C(e,i);c+=u.written,o=r(o,n,c,1)>>>0}return w=c,o}var j=new U("utf-8",{ignoreBOM:!0,fatal:!0});j.decode();function y(e,t){return e=e>>>0,j.decode(p().subarray(e,e+t))}function D(e){let t=s.__wbindgen_export_0.get(e);return s.__externref_table_dealloc(e),t}a.exports.echoToml=function(e){let t,r;try{let d=M(e,s.__wbindgen_malloc,s.__wbindgen_realloc),c=w,i=s.echoToml(d,c);var n=i[0],o=i[1];if(i[3])throw n=0,o=0,D(i[2]);return t=n,r=o,y(n,o)}finally{s.__wbindgen_free(t,r,1)}};a.exports.updateTomlValues=function(e,t){let r,n;try{let c=M(e,s.__wbindgen_malloc,s.__wbindgen_realloc),i=w,u=s.updateTomlValues(c,i,t);var o=u[0],d=u[1];if(u[3])throw o=0,d=0,D(u[2]);return r=o,n=d,y(o,d)}finally{s.__wbindgen_free(r,n,1)}};a.exports.__wbg_from_2a5d3e218e67aa85=function(e){return Array.from(e)};a.exports.__wbg_get_b9b93047fe3cf45b=function(e,t){return e[t>>>0]};a.exports.__wbg_length_e2d2a49132c1b256=function(e){return e.length};a.exports.__wbindgen_boolean_get=function(e){let t=e;return typeof t=="boolean"?t?1:0:2};a.exports.__wbindgen_init_externref_table=function(){let e=s.__wbindgen_export_0,t=e.grow(4);e.set(0,void 0),e.set(t+0,void 0),e.set(t+1,null),e.set(t+2,!0),e.set(t+3,!1)};a.exports.__wbindgen_is_array=function(e){return Array.isArray(e)};a.exports.__wbindgen_is_undefined=function(e){return e===void 0};a.exports.__wbindgen_number_get=function(e,t){let r=t,n=typeof r=="number"?r:void 0;g().setFloat64(e+8,A(n)?0:n,!0),g().setInt32(e+0,!A(n),!0)};a.exports.__wbindgen_string_get=function(e,t){let r=t,n=typeof r=="string"?r:void 0;var o=A(n)?0:M(n,s.__wbindgen_malloc,s.__wbindgen_realloc),d=w;g().setInt32(e+4,d,!0),g().setInt32(e+0,o,!0)};a.exports.__wbindgen_string_new=function(e,t){return y(e,t)};a.exports.__wbindgen_throw=function(e,t){throw new Error(y(e,t))};var N=T("path").join(__dirname,"toml_patch_bg.wasm"),R=T("fs").readFileSync(N),B=new WebAssembly.Module(R),P=new WebAssembly.Instance(B,S);s=P.exports;a.exports.__wasm=s;s.__wbindgen_start()});h();var E=$(L()),x=class extends v{path;constructor(t,r){super(r),this.name="TomlFileError",this.path=t}},O=class e{static async read(t){if(!await I(t))throw new x(t,`TOML file not found: ${t}`);let r=await _(t),n=new e(t,{});return n.content=n.decode(r),n}path;content;errors=[];constructor(t,r){this.path=t,this.content=r}async patch(t){let r=W(t),n=await _(this.path),o=(0,E.updateTomlValues)(n,r),d=this.decode(o);await l(this.path,o),this.content=d}async remove(t){let r=t.split("."),n=await _(this.path),o=(0,E.updateTomlValues)(n,[[r,void 0]]),d=this.decode(o);await l(this.path,o),this.content=d}async replace(t){let r=F(t);this.decode(r),await l(this.path,r),this.content=t}async transformRaw(t){let r=await _(this.path),n=t(r),o=this.decode(n);await l(this.path,n),this.content=o}decode(t){try{return V(t)}catch(r){let n=r;if(n.line!==void 0&&n.col!==void 0){let o=String(n.message).split(`
2
+ `)[0]??"Invalid TOML";throw new x(this.path,`${o} at row ${n.line}, col ${n.col}`)}throw r}}};function W(e,t=[]){return Object.entries(e).flatMap(([r,n])=>{let o=[...t,r];return n!==null&&typeof n=="object"&&!Array.isArray(n)?W(n,o):[[o,n]]})}export{L as a,x as b,O as c};
@@ -0,0 +1,7 @@
1
+ import{A as n,B as i,C as t,G as s,y as e,z as o}from"./chunk-YFINLODF.js";import{h as d,k as l}from"./chunk-BWJIZYAG.js";import{g as r}from"./chunk-VKWPEFWQ.js";r();async function u(){e({headline:"CLI update available.",body:["Run",{command:"npm run shopify upgrade"},{char:"."}]}),e({headline:["To connect this project to your shopify store cd into:",{filePath:"/my-store/hydrogen.config.js"},{char:"."}],body:["You can also try the following steps:",{list:{items:[["Run",{command:"shopify project connect"}],["Run",{command:"hydrogen start"}]]}}]}),e({headline:"About your app.",customSections:[{body:{tabularData:[["Configuration file",{filePath:"shopify.app.scalable-transaction-app.toml"}],["App name",{userInput:"scalable-transaction-app"}],["Access scopes","read_products,write_products"]],firstColumnSubdued:!0}}]}),e({headline:[{userInput:"my-app"},"initialized and ready to build."],nextSteps:[["Run",{command:"cd verification-app"}],["To preview your project, run",{command:"npm app dev"}],["To add extensions, run",{command:"npm generate extension"}]],reference:[["Run",{command:"npm shopify help"}],{link:{label:"Dev docs",url:"https://shopify.dev"}}],customSections:[{title:"Custom section",body:{list:{items:[{link:{label:"Item 1",url:"https://shopify.com"}},"Item 2",{link:{url:"https://community.shopify.com/"}}]}}},{title:"Custom section 2",body:{list:{items:["Item 1","Item 2","Item 3"]}}}]}),o({headline:"CLI updated.",body:"You are now running version 3.47."}),o({headline:"Deployment successful.",body:"Your extensions have been uploaded to your Shopify Partners Dashboard.",nextSteps:[{link:{label:"See your deployment and set it live",url:"https://partners.shopify.com/1797046/apps/4523695/deployments"}}]}),n({headline:"You have reached your limit of checkout extensions for this app.",body:"You can free up space for a new one by deleting an existing one."}),n({headline:"Required access scope update.",body:"The deadline for re-selecting your app scopes is May 1, 2022.",reference:[{link:{label:"Dev docs",url:"https://shopify.dev/app/scopes"}}]});let a=new l("Something went wrong.");a.stack=`
2
+ Error: Unexpected error
3
+ at Module._compile (internal/modules/cjs/loader.js:1137:30)
4
+ at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)
5
+ at Module.load (internal/modules/cjs/loader.js:985:32)
6
+ at Function.Module._load (internal/modules/cjs/loader.js:878:14)
7
+ `,t(a);let c=[["Have you",{link:{label:"created a Shopify Partners organization",url:"https://partners.shopify.com/signup"}},{char:"?"}],"Have you confirmed your accounts from the emails you received?",["Need to connect to a different App or organization? Run the command again with",{command:"--reset"}]];t(new d("No Organization found",void 0,c)),i({headline:"Version couldn't be released.",body:"This version needs to be submitted for review and approved by Shopify before it can be released."}),s({rows:[{id:"1",name:"John Doe",email:"jon@doe.com"},{id:"2",name:"Jane Doe",email:"jane@doe.com"},{id:"3",name:"John Smith",email:"jon@smith.com"}],columns:{id:{header:"ID",color:"red"},name:{header:"Name",color:"dim"},email:{}}})}export{u as a};
@@ -0,0 +1 @@
1
+ import{c,g as o}from"./chunk-VKWPEFWQ.js";var p=c((x,e)=>{"use strict";o();e.exports=(t,s=process.argv)=>{let r=t.startsWith("-")?"":t.length===1?"-":"--",i=s.indexOf(r+t),n=s.indexOf("--");return i!==-1&&(n===-1||i<n)}});export{p as a};