create-qwik 1.7.1 → 1.7.2

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 (85) hide show
  1. package/LICENSE +22 -0
  2. package/create-qwik.cjs +1 -1
  3. package/dist/index.cjs +204 -0
  4. package/{starters → dist/starters}/apps/base/package.json +3 -3
  5. package/{starters → dist/starters}/apps/library/package.json +1 -1
  6. package/package.json +5 -5
  7. package/index.cjs +0 -204
  8. /package/{starters → dist/starters}/apps/base/.eslintignore +0 -0
  9. /package/{starters → dist/starters}/apps/base/.eslintrc.cjs +0 -0
  10. /package/{starters → dist/starters}/apps/base/.prettierignore +0 -0
  11. /package/{starters → dist/starters}/apps/base/.vscode/extensions.json +0 -0
  12. /package/{starters → dist/starters}/apps/base/.vscode/launch.json +0 -0
  13. /package/{starters → dist/starters}/apps/base/.vscode/qwik-city.code-snippets +0 -0
  14. /package/{starters → dist/starters}/apps/base/.vscode/qwik.code-snippets +0 -0
  15. /package/{starters → dist/starters}/apps/base/.vscode/settings.json +0 -0
  16. /package/{starters → dist/starters}/apps/base/README.md +0 -0
  17. /package/{starters → dist/starters}/apps/base/gitignore +0 -0
  18. /package/{starters → dist/starters}/apps/base/public/favicon.svg +0 -0
  19. /package/{starters → dist/starters}/apps/base/public/manifest.json +0 -0
  20. /package/{starters → dist/starters}/apps/base/public/robots.txt +0 -0
  21. /package/{starters → dist/starters}/apps/base/qwik.env.d.ts +0 -0
  22. /package/{starters → dist/starters}/apps/base/src/entry.dev.tsx +0 -0
  23. /package/{starters → dist/starters}/apps/base/src/entry.preview.tsx +0 -0
  24. /package/{starters → dist/starters}/apps/base/src/entry.ssr.tsx +0 -0
  25. /package/{starters → dist/starters}/apps/base/src/global.css +0 -0
  26. /package/{starters → dist/starters}/apps/base/src/routes/service-worker.ts +0 -0
  27. /package/{starters → dist/starters}/apps/base/tsconfig.json +0 -0
  28. /package/{starters → dist/starters}/apps/base/vite.config.ts +0 -0
  29. /package/{starters → dist/starters}/apps/empty/package.json +0 -0
  30. /package/{starters → dist/starters}/apps/empty/public/favicon.svg +0 -0
  31. /package/{starters → dist/starters}/apps/empty/public/manifest.json +0 -0
  32. /package/{starters → dist/starters}/apps/empty/public/robots.txt +0 -0
  33. /package/{starters → dist/starters}/apps/empty/src/components/router-head/router-head.tsx +0 -0
  34. /package/{starters → dist/starters}/apps/empty/src/global.css +0 -0
  35. /package/{starters → dist/starters}/apps/empty/src/root.tsx +0 -0
  36. /package/{starters → dist/starters}/apps/empty/src/routes/index.tsx +0 -0
  37. /package/{starters → dist/starters}/apps/empty/src/routes/layout.tsx +0 -0
  38. /package/{starters → dist/starters}/apps/empty/src/routes/service-worker.ts +0 -0
  39. /package/{starters → dist/starters}/apps/library/.eslintignore +0 -0
  40. /package/{starters → dist/starters}/apps/library/.eslintrc.cjs +0 -0
  41. /package/{starters → dist/starters}/apps/library/.prettierignore +0 -0
  42. /package/{starters → dist/starters}/apps/library/README.md +0 -0
  43. /package/{starters → dist/starters}/apps/library/gitignore +0 -0
  44. /package/{starters → dist/starters}/apps/library/src/components/counter/counter.tsx +0 -0
  45. /package/{starters → dist/starters}/apps/library/src/components/logo/logo.tsx +0 -0
  46. /package/{starters → dist/starters}/apps/library/src/entry.dev.tsx +0 -0
  47. /package/{starters → dist/starters}/apps/library/src/entry.ssr.tsx +0 -0
  48. /package/{starters → dist/starters}/apps/library/src/index.ts +0 -0
  49. /package/{starters → dist/starters}/apps/library/src/root.tsx +0 -0
  50. /package/{starters → dist/starters}/apps/library/tsconfig.json +0 -0
  51. /package/{starters → dist/starters}/apps/library/vite.config.ts +0 -0
  52. /package/{starters → dist/starters}/apps/playground/package.json +0 -0
  53. /package/{starters → dist/starters}/apps/playground/public/favicon.svg +0 -0
  54. /package/{starters → dist/starters}/apps/playground/public/fonts/poppins-400.woff2 +0 -0
  55. /package/{starters → dist/starters}/apps/playground/public/fonts/poppins-500.woff2 +0 -0
  56. /package/{starters → dist/starters}/apps/playground/public/fonts/poppins-700.woff2 +0 -0
  57. /package/{starters → dist/starters}/apps/playground/public/manifest.json +0 -0
  58. /package/{starters → dist/starters}/apps/playground/public/robots.txt +0 -0
  59. /package/{starters → dist/starters}/apps/playground/src/components/router-head/router-head.tsx +0 -0
  60. /package/{starters → dist/starters}/apps/playground/src/components/starter/counter/counter.module.css +0 -0
  61. /package/{starters → dist/starters}/apps/playground/src/components/starter/counter/counter.tsx +0 -0
  62. /package/{starters → dist/starters}/apps/playground/src/components/starter/footer/footer.module.css +0 -0
  63. /package/{starters → dist/starters}/apps/playground/src/components/starter/footer/footer.tsx +0 -0
  64. /package/{starters → dist/starters}/apps/playground/src/components/starter/gauge/gauge.module.css +0 -0
  65. /package/{starters → dist/starters}/apps/playground/src/components/starter/gauge/index.tsx +0 -0
  66. /package/{starters → dist/starters}/apps/playground/src/components/starter/header/header.module.css +0 -0
  67. /package/{starters → dist/starters}/apps/playground/src/components/starter/header/header.tsx +0 -0
  68. /package/{starters → dist/starters}/apps/playground/src/components/starter/hero/hero.module.css +0 -0
  69. /package/{starters → dist/starters}/apps/playground/src/components/starter/hero/hero.tsx +0 -0
  70. /package/{starters → dist/starters}/apps/playground/src/components/starter/icons/qwik.tsx +0 -0
  71. /package/{starters → dist/starters}/apps/playground/src/components/starter/infobox/infobox.module.css +0 -0
  72. /package/{starters → dist/starters}/apps/playground/src/components/starter/infobox/infobox.tsx +0 -0
  73. /package/{starters → dist/starters}/apps/playground/src/components/starter/next-steps/next-steps.module.css +0 -0
  74. /package/{starters → dist/starters}/apps/playground/src/components/starter/next-steps/next-steps.tsx +0 -0
  75. /package/{starters → dist/starters}/apps/playground/src/global.css +0 -0
  76. /package/{starters → dist/starters}/apps/playground/src/media/thunder.png +0 -0
  77. /package/{starters → dist/starters}/apps/playground/src/root.tsx +0 -0
  78. /package/{starters → dist/starters}/apps/playground/src/routes/demo/flower/flower.css +0 -0
  79. /package/{starters → dist/starters}/apps/playground/src/routes/demo/flower/index.tsx +0 -0
  80. /package/{starters → dist/starters}/apps/playground/src/routes/demo/todolist/index.tsx +0 -0
  81. /package/{starters → dist/starters}/apps/playground/src/routes/demo/todolist/todolist.module.css +0 -0
  82. /package/{starters → dist/starters}/apps/playground/src/routes/index.tsx +0 -0
  83. /package/{starters → dist/starters}/apps/playground/src/routes/layout.tsx +0 -0
  84. /package/{starters → dist/starters}/apps/playground/src/routes/service-worker.ts +0 -0
  85. /package/{starters → dist/starters}/apps/playground/src/routes/styles.css +0 -0
package/index.cjs DELETED
@@ -1,204 +0,0 @@
1
- /**
2
- * @license
3
- * create-qwik 1.7.1
4
- * Copyright Builder.io, Inc. All Rights Reserved.
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://github.com/QwikDev/qwik/blob/main/LICENSE
7
- */
8
- "use strict";var Qo=Object.create;var Jt=Object.defineProperty;var Zo=Object.getOwnPropertyDescriptor;var Xo=Object.getOwnPropertyNames;var eu=Object.getPrototypeOf,tu=Object.prototype.hasOwnProperty;var pe=(n,e)=>()=>(e||n((e={exports:{}}).exports,e),e.exports),nu=(n,e)=>{for(var t in e)Jt(n,t,{get:e[t],enumerable:!0})},ni=(n,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Xo(e))!tu.call(n,r)&&r!==t&&Jt(n,r,{get:()=>e[r],enumerable:!(s=Zo(e,r))||s.enumerable});return n};var ce=(n,e,t)=>(t=n!=null?Qo(eu(n)):{},ni(e||!n||!n.__esModule?Jt(t,"default",{value:n,enumerable:!0}):t,n)),su=n=>ni(Jt({},"__esModule",{value:!0}),n);var Un=pe((dc,si)=>{"use strict";var zn="\x1B",ee=`${zn}[`,iu="\x07",qn={to(n,e){return e?`${ee}${e+1};${n+1}H`:`${ee}${n+1}G`},move(n,e){let t="";return n<0?t+=`${ee}${-n}D`:n>0&&(t+=`${ee}${n}C`),e<0?t+=`${ee}${-e}A`:e>0&&(t+=`${ee}${e}B`),t},up:(n=1)=>`${ee}${n}A`,down:(n=1)=>`${ee}${n}B`,forward:(n=1)=>`${ee}${n}C`,backward:(n=1)=>`${ee}${n}D`,nextLine:(n=1)=>`${ee}E`.repeat(n),prevLine:(n=1)=>`${ee}F`.repeat(n),left:`${ee}G`,hide:`${ee}?25l`,show:`${ee}?25h`,save:`${zn}7`,restore:`${zn}8`},ru={up:(n=1)=>`${ee}S`.repeat(n),down:(n=1)=>`${ee}T`.repeat(n)},ou={screen:`${ee}2J`,up:(n=1)=>`${ee}1J`.repeat(n),down:(n=1)=>`${ee}J`.repeat(n),line:`${ee}2K`,lineEnd:`${ee}K`,lineStart:`${ee}1K`,lines(n){let e="";for(let t=0;t<n;t++)e+=this.line+(t<n-1?qn.up():"");return n&&(e+=qn.left),e}};si.exports={cursor:qn,scroll:ru,erase:ou,beep:iu}});var Vn=pe((mc,Hn)=>{var uu=require("tty"),au=!("NO_COLOR"in process.env||process.argv.includes("--no-color"))&&("FORCE_COLOR"in process.env||process.argv.includes("--color")||process.platform==="win32"||uu.isatty(1)&&process.env.TERM!=="dumb"||"CI"in process.env),Q=(n,e,t=n)=>s=>{let r=""+s,o=r.indexOf(e,n.length);return~o?n+ii(r,e,t,o)+e:n+r+e},ii=(n,e,t,s)=>{let r=n.substring(0,s)+t,o=n.substring(s+e.length),i=o.indexOf(e);return~i?r+ii(o,e,t,i):r+o},ri=(n=au)=>({isColorSupported:n,reset:n?e=>`\x1B[0m${e}\x1B[0m`:String,bold:n?Q("\x1B[1m","\x1B[22m","\x1B[22m\x1B[1m"):String,dim:n?Q("\x1B[2m","\x1B[22m","\x1B[22m\x1B[2m"):String,italic:n?Q("\x1B[3m","\x1B[23m"):String,underline:n?Q("\x1B[4m","\x1B[24m"):String,inverse:n?Q("\x1B[7m","\x1B[27m"):String,hidden:n?Q("\x1B[8m","\x1B[28m"):String,strikethrough:n?Q("\x1B[9m","\x1B[29m"):String,black:n?Q("\x1B[30m","\x1B[39m"):String,red:n?Q("\x1B[31m","\x1B[39m"):String,green:n?Q("\x1B[32m","\x1B[39m"):String,yellow:n?Q("\x1B[33m","\x1B[39m"):String,blue:n?Q("\x1B[34m","\x1B[39m"):String,magenta:n?Q("\x1B[35m","\x1B[39m"):String,cyan:n?Q("\x1B[36m","\x1B[39m"):String,white:n?Q("\x1B[37m","\x1B[39m"):String,gray:n?Q("\x1B[90m","\x1B[39m"):String,bgBlack:n?Q("\x1B[40m","\x1B[49m"):String,bgRed:n?Q("\x1B[41m","\x1B[49m"):String,bgGreen:n?Q("\x1B[42m","\x1B[49m"):String,bgYellow:n?Q("\x1B[43m","\x1B[49m"):String,bgBlue:n?Q("\x1B[44m","\x1B[49m"):String,bgMagenta:n?Q("\x1B[45m","\x1B[49m"):String,bgCyan:n?Q("\x1B[46m","\x1B[49m"):String,bgWhite:n?Q("\x1B[47m","\x1B[49m"):String});Hn.exports=ri();Hn.exports.createColors=ri});var Ri=pe((Jc,Wi)=>{"use strict";Wi.exports=function(){if(process.env.npm_config_user_agent)return Lu(process.env.npm_config_user_agent)};function Lu(n){let e=n.split(" ")[0],t=e.lastIndexOf("/"),s=e.substring(0,t);return{name:s==="npminstall"?"cnpm":s,version:e.substring(t+1)}}});var qi=pe((Kc,zi)=>{zi.exports=Li;Li.sync=qu;var Ni=require("fs");function zu(n,e){var t=e.pathExt!==void 0?e.pathExt:process.env.PATHEXT;if(!t||(t=t.split(";"),t.indexOf("")!==-1))return!0;for(var s=0;s<t.length;s++){var r=t[s].toLowerCase();if(r&&n.substr(-r.length).toLowerCase()===r)return!0}return!1}function ki(n,e,t){return!n.isSymbolicLink()&&!n.isFile()?!1:zu(e,t)}function Li(n,e,t){Ni.stat(n,function(s,r){t(s,s?!1:ki(r,n,e))})}function qu(n,e){return ki(Ni.statSync(n),n,e)}});var Yi=pe((Qc,Gi)=>{Gi.exports=Hi;Hi.sync=Uu;var Ui=require("fs");function Hi(n,e,t){Ui.stat(n,function(s,r){t(s,s?!1:Vi(r,e))})}function Uu(n,e){return Vi(Ui.statSync(n),e)}function Vi(n,e){return n.isFile()&&Hu(n,e)}function Hu(n,e){var t=n.mode,s=n.uid,r=n.gid,o=e.uid!==void 0?e.uid:process.getuid&&process.getuid(),i=e.gid!==void 0?e.gid:process.getgid&&process.getgid(),a=parseInt("100",8),D=parseInt("010",8),h=parseInt("001",8),f=a|D,c=t&h||t&D&&r===i||t&a&&s===o||t&f&&o===0;return c}});var Ki=pe((Xc,Ji)=>{var Zc=require("fs"),on;process.platform==="win32"||global.TESTING_WINDOWS?on=qi():on=Yi();Ji.exports=as;as.sync=Vu;function as(n,e,t){if(typeof e=="function"&&(t=e,e={}),!t){if(typeof Promise!="function")throw new TypeError("callback not provided");return new Promise(function(s,r){as(n,e||{},function(o,i){o?r(o):s(i)})})}on(n,e||{},function(s,r){s&&(s.code==="EACCES"||e&&e.ignoreErrors)&&(s=null,r=!1),t(s,r)})}function Vu(n,e){try{return on.sync(n,e||{})}catch(t){if(e&&e.ignoreErrors||t.code==="EACCES")return!1;throw t}}});var sr=pe((el,nr)=>{var $t=process.platform==="win32"||process.env.OSTYPE==="cygwin"||process.env.OSTYPE==="msys",Qi=require("path"),Gu=$t?";":":",Zi=Ki(),Xi=n=>Object.assign(new Error(`not found: ${n}`),{code:"ENOENT"}),er=(n,e)=>{let t=e.colon||Gu,s=n.match(/\//)||$t&&n.match(/\\/)?[""]:[...$t?[process.cwd()]:[],...(e.path||process.env.PATH||"").split(t)],r=$t?e.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM":"",o=$t?r.split(t):[""];return $t&&n.indexOf(".")!==-1&&o[0]!==""&&o.unshift(""),{pathEnv:s,pathExt:o,pathExtExe:r}},tr=(n,e,t)=>{typeof e=="function"&&(t=e,e={}),e||(e={});let{pathEnv:s,pathExt:r,pathExtExe:o}=er(n,e),i=[],a=h=>new Promise((f,c)=>{if(h===s.length)return e.all&&i.length?f(i):c(Xi(n));let d=s[h],C=/^".*"$/.test(d)?d.slice(1,-1):d,E=Qi.join(C,n),b=!C&&/^\.[\\\/]/.test(n)?n.slice(0,2)+E:E;f(D(b,h,0))}),D=(h,f,c)=>new Promise((d,C)=>{if(c===r.length)return d(a(f+1));let E=r[c];Zi(h+E,{pathExt:o},(b,g)=>{if(!b&&g)if(e.all)i.push(h+E);else return d(h+E);return d(D(h,f,c+1))})});return t?a(0).then(h=>t(null,h),t):a(0)},Yu=(n,e)=>{e=e||{};let{pathEnv:t,pathExt:s,pathExtExe:r}=er(n,e),o=[];for(let i=0;i<t.length;i++){let a=t[i],D=/^".*"$/.test(a)?a.slice(1,-1):a,h=Qi.join(D,n),f=!D&&/^\.[\\\/]/.test(n)?n.slice(0,2)+h:h;for(let c=0;c<s.length;c++){let d=f+s[c];try{if(Zi.sync(d,{pathExt:r}))if(e.all)o.push(d);else return d}catch{}}}if(e.all&&o.length)return o;if(e.nothrow)return null;throw Xi(n)};nr.exports=tr;tr.sync=Yu});var rr=pe((tl,cs)=>{"use strict";var ir=(n={})=>{let e=n.env||process.env;return(n.platform||process.platform)!=="win32"?"PATH":Object.keys(e).reverse().find(s=>s.toUpperCase()==="PATH")||"Path"};cs.exports=ir;cs.exports.default=ir});var cr=pe((nl,ar)=>{"use strict";var or=require("path"),Ju=sr(),Ku=rr();function ur(n,e){let t=n.options.env||process.env,s=process.cwd(),r=n.options.cwd!=null,o=r&&process.chdir!==void 0&&!process.chdir.disabled;if(o)try{process.chdir(n.options.cwd)}catch{}let i;try{i=Ju.sync(n.command,{path:t[Ku({env:t})],pathExt:e?or.delimiter:void 0})}catch{}finally{o&&process.chdir(s)}return i&&(i=or.resolve(r?n.options.cwd:"",i)),i}function Qu(n){return ur(n)||ur(n,!0)}ar.exports=Qu});var lr=pe((sl,Ds)=>{"use strict";var ls=/([()\][%!^"`<>&|;, *?])/g;function Zu(n){return n=n.replace(ls,"^$1"),n}function Xu(n,e){return n=`${n}`,n=n.replace(/(\\*)"/g,'$1$1\\"'),n=n.replace(/(\\*)$/,"$1$1"),n=`"${n}"`,n=n.replace(ls,"^$1"),e&&(n=n.replace(ls,"^$1")),n}Ds.exports.command=Zu;Ds.exports.argument=Xu});var hr=pe((il,Dr)=>{"use strict";Dr.exports=/^#!(.*)/});var pr=pe((rl,fr)=>{"use strict";var ea=hr();fr.exports=(n="")=>{let e=n.match(ea);if(!e)return null;let[t,s]=e[0].replace(/#! ?/,"").split(" "),r=t.split("/").pop();return r==="env"?s:s?`${r} ${s}`:r}});var mr=pe((ol,dr)=>{"use strict";var hs=require("fs"),ta=pr();function na(n){let t=Buffer.alloc(150),s;try{s=hs.openSync(n,"r"),hs.readSync(s,t,0,150,0),hs.closeSync(s)}catch{}return ta(t.toString())}dr.exports=na});var Er=pe((ul,Fr)=>{"use strict";var sa=require("path"),gr=cr(),Cr=lr(),ia=mr(),ra=process.platform==="win32",oa=/\.(?:com|exe)$/i,ua=/node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;function aa(n){n.file=gr(n);let e=n.file&&ia(n.file);return e?(n.args.unshift(n.file),n.command=e,gr(n)):n.file}function ca(n){if(!ra)return n;let e=aa(n),t=!oa.test(e);if(n.options.forceShell||t){let s=ua.test(e);n.command=sa.normalize(n.command),n.command=Cr.command(n.command),n.args=n.args.map(o=>Cr.argument(o,s));let r=[n.command].concat(n.args).join(" ");n.args=["/d","/s","/c",`"${r}"`],n.command=process.env.comspec||"cmd.exe",n.options.windowsVerbatimArguments=!0}return n}function la(n,e,t){e&&!Array.isArray(e)&&(t=e,e=null),e=e?e.slice(0):[],t=Object.assign({},t);let s={command:n,args:e,options:t,file:void 0,original:{command:n,args:e}};return t.shell?s:ca(s)}Fr.exports=la});var wr=pe((al,yr)=>{"use strict";var fs=process.platform==="win32";function ps(n,e){return Object.assign(new Error(`${e} ${n.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${e} ${n.command}`,path:n.command,spawnargs:n.args})}function Da(n,e){if(!fs)return;let t=n.emit;n.emit=function(s,r){if(s==="exit"){let o=br(r,e,"spawn");if(o)return t.call(n,"error",o)}return t.apply(n,arguments)}}function br(n,e){return fs&&n===1&&!e.file?ps(e.original,"spawn"):null}function ha(n,e){return fs&&n===1&&!e.file?ps(e.original,"spawnSync"):null}yr.exports={hookChildProcess:Da,verifyENOENT:br,verifyENOENTSync:ha,notFoundError:ps}});var xr=pe((cl,xt)=>{"use strict";var Ar=require("child_process"),ds=Er(),ms=wr();function $r(n,e,t){let s=ds(n,e,t),r=Ar.spawn(s.command,s.args,s.options);return ms.hookChildProcess(r,s),r}function fa(n,e,t){let s=ds(n,e,t),r=Ar.spawnSync(s.command,s.args,s.options);return r.error=r.error||ms.verifyENOENTSync(r.status,s),r}xt.exports=$r;xt.exports.spawn=$r;xt.exports.sync=fa;xt.exports._parse=ds;xt.exports._enoent=ms});var fc={};nu(fc,{createApp:()=>Ko,runCli:()=>Dc,runCreateCli:()=>Xs,runCreateInteractiveCli:()=>ti});module.exports=su(fc);var ge=ce(Un(),1),bt=require("node:process"),Ve=ce(require("node:readline"),1),Jn=ce(require("node:readline"),1),pi=require("node:tty"),Qt=ce(Vn(),1);function cu({onlyFirst:n=!1}={}){let e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(e,n?void 0:"g")}function di(n){if(typeof n!="string")throw new TypeError(`Expected a \`string\`, got \`${typeof n}\``);return n.replace(cu(),"")}function mi(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var gi={exports:{}};(function(n){var e={};n.exports=e,e.eastAsianWidth=function(s){var r=s.charCodeAt(0),o=s.length==2?s.charCodeAt(1):0,i=r;return 55296<=r&&r<=56319&&56320<=o&&o<=57343&&(r&=1023,o&=1023,i=r<<10|o,i+=65536),i==12288||65281<=i&&i<=65376||65504<=i&&i<=65510?"F":i==8361||65377<=i&&i<=65470||65474<=i&&i<=65479||65482<=i&&i<=65487||65490<=i&&i<=65495||65498<=i&&i<=65500||65512<=i&&i<=65518?"H":4352<=i&&i<=4447||4515<=i&&i<=4519||4602<=i&&i<=4607||9001<=i&&i<=9002||11904<=i&&i<=11929||11931<=i&&i<=12019||12032<=i&&i<=12245||12272<=i&&i<=12283||12289<=i&&i<=12350||12353<=i&&i<=12438||12441<=i&&i<=12543||12549<=i&&i<=12589||12593<=i&&i<=12686||12688<=i&&i<=12730||12736<=i&&i<=12771||12784<=i&&i<=12830||12832<=i&&i<=12871||12880<=i&&i<=13054||13056<=i&&i<=19903||19968<=i&&i<=42124||42128<=i&&i<=42182||43360<=i&&i<=43388||44032<=i&&i<=55203||55216<=i&&i<=55238||55243<=i&&i<=55291||63744<=i&&i<=64255||65040<=i&&i<=65049||65072<=i&&i<=65106||65108<=i&&i<=65126||65128<=i&&i<=65131||110592<=i&&i<=110593||127488<=i&&i<=127490||127504<=i&&i<=127546||127552<=i&&i<=127560||127568<=i&&i<=127569||131072<=i&&i<=194367||177984<=i&&i<=196605||196608<=i&&i<=262141?"W":32<=i&&i<=126||162<=i&&i<=163||165<=i&&i<=166||i==172||i==175||10214<=i&&i<=10221||10629<=i&&i<=10630?"Na":i==161||i==164||167<=i&&i<=168||i==170||173<=i&&i<=174||176<=i&&i<=180||182<=i&&i<=186||188<=i&&i<=191||i==198||i==208||215<=i&&i<=216||222<=i&&i<=225||i==230||232<=i&&i<=234||236<=i&&i<=237||i==240||242<=i&&i<=243||247<=i&&i<=250||i==252||i==254||i==257||i==273||i==275||i==283||294<=i&&i<=295||i==299||305<=i&&i<=307||i==312||319<=i&&i<=322||i==324||328<=i&&i<=331||i==333||338<=i&&i<=339||358<=i&&i<=359||i==363||i==462||i==464||i==466||i==468||i==470||i==472||i==474||i==476||i==593||i==609||i==708||i==711||713<=i&&i<=715||i==717||i==720||728<=i&&i<=731||i==733||i==735||768<=i&&i<=879||913<=i&&i<=929||931<=i&&i<=937||945<=i&&i<=961||963<=i&&i<=969||i==1025||1040<=i&&i<=1103||i==1105||i==8208||8211<=i&&i<=8214||8216<=i&&i<=8217||8220<=i&&i<=8221||8224<=i&&i<=8226||8228<=i&&i<=8231||i==8240||8242<=i&&i<=8243||i==8245||i==8251||i==8254||i==8308||i==8319||8321<=i&&i<=8324||i==8364||i==8451||i==8453||i==8457||i==8467||i==8470||8481<=i&&i<=8482||i==8486||i==8491||8531<=i&&i<=8532||8539<=i&&i<=8542||8544<=i&&i<=8555||8560<=i&&i<=8569||i==8585||8592<=i&&i<=8601||8632<=i&&i<=8633||i==8658||i==8660||i==8679||i==8704||8706<=i&&i<=8707||8711<=i&&i<=8712||i==8715||i==8719||i==8721||i==8725||i==8730||8733<=i&&i<=8736||i==8739||i==8741||8743<=i&&i<=8748||i==8750||8756<=i&&i<=8759||8764<=i&&i<=8765||i==8776||i==8780||i==8786||8800<=i&&i<=8801||8804<=i&&i<=8807||8810<=i&&i<=8811||8814<=i&&i<=8815||8834<=i&&i<=8835||8838<=i&&i<=8839||i==8853||i==8857||i==8869||i==8895||i==8978||9312<=i&&i<=9449||9451<=i&&i<=9547||9552<=i&&i<=9587||9600<=i&&i<=9615||9618<=i&&i<=9621||9632<=i&&i<=9633||9635<=i&&i<=9641||9650<=i&&i<=9651||9654<=i&&i<=9655||9660<=i&&i<=9661||9664<=i&&i<=9665||9670<=i&&i<=9672||i==9675||9678<=i&&i<=9681||9698<=i&&i<=9701||i==9711||9733<=i&&i<=9734||i==9737||9742<=i&&i<=9743||9748<=i&&i<=9749||i==9756||i==9758||i==9792||i==9794||9824<=i&&i<=9825||9827<=i&&i<=9829||9831<=i&&i<=9834||9836<=i&&i<=9837||i==9839||9886<=i&&i<=9887||9918<=i&&i<=9919||9924<=i&&i<=9933||9935<=i&&i<=9953||i==9955||9960<=i&&i<=9983||i==10045||i==10071||10102<=i&&i<=10111||11093<=i&&i<=11097||12872<=i&&i<=12879||57344<=i&&i<=63743||65024<=i&&i<=65039||i==65533||127232<=i&&i<=127242||127248<=i&&i<=127277||127280<=i&&i<=127337||127344<=i&&i<=127386||917760<=i&&i<=917999||983040<=i&&i<=1048573||1048576<=i&&i<=1114109?"A":"N"},e.characterLength=function(s){var r=this.eastAsianWidth(s);return r=="F"||r=="W"||r=="A"?2:1};function t(s){return s.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^\uD800-\uDFFF]/g)||[]}e.length=function(s){for(var r=t(s),o=0,i=0;i<r.length;i++)o=o+this.characterLength(r[i]);return o},e.slice=function(s,r,o){textLen=e.length(s),r=r||0,o=o||1,r<0&&(r=textLen+r),o<0&&(o=textLen+o);for(var i="",a=0,D=t(s),h=0;h<D.length;h++){var f=D[h],c=e.length(f);if(a>=r-(c==2?1:0))if(a+c<=o)i+=f;else break;a+=c}return i}})(gi);var lu=gi.exports,Du=mi(lu),hu=function(){return/\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g},fu=mi(hu);function Rt(n,e={}){if(typeof n!="string"||n.length===0||(e={ambiguousIsNarrow:!0,...e},n=di(n),n.length===0))return 0;n=n.replace(fu()," ");let t=e.ambiguousIsNarrow?1:2,s=0;for(let r of n){let o=r.codePointAt(0);if(!(o<=31||o>=127&&o<=159||o>=768&&o<=879))switch(Du.eastAsianWidth(r)){case"F":case"W":s+=2;break;case"A":s+=t;break;default:s+=1}}return s}var Gn=10,oi=(n=0)=>e=>`\x1B[${e+n}m`,ui=(n=0)=>e=>`\x1B[${38+n};5;${e}m`,ai=(n=0)=>(e,t,s)=>`\x1B[${38+n};2;${e};${t};${s}m`,Z={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]}};Object.keys(Z.modifier);var pu=Object.keys(Z.color),du=Object.keys(Z.bgColor);[...pu,...du];function mu(){let n=new Map;for(let[e,t]of Object.entries(Z)){for(let[s,r]of Object.entries(t))Z[s]={open:`\x1B[${r[0]}m`,close:`\x1B[${r[1]}m`},t[s]=Z[s],n.set(r[0],r[1]);Object.defineProperty(Z,e,{value:t,enumerable:!1})}return Object.defineProperty(Z,"codes",{value:n,enumerable:!1}),Z.color.close="\x1B[39m",Z.bgColor.close="\x1B[49m",Z.color.ansi=oi(),Z.color.ansi256=ui(),Z.color.ansi16m=ai(),Z.bgColor.ansi=oi(Gn),Z.bgColor.ansi256=ui(Gn),Z.bgColor.ansi16m=ai(Gn),Object.defineProperties(Z,{rgbToAnsi256:{value:(e,t,s)=>e===t&&t===s?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(t/255*5)+Math.round(s/255*5),enumerable:!1},hexToRgb:{value:e=>{let t=/[a-f\d]{6}|[a-f\d]{3}/i.exec(e.toString(16));if(!t)return[0,0,0];let[s]=t;s.length===3&&(s=[...s].map(o=>o+o).join(""));let r=Number.parseInt(s,16);return[r>>16&255,r>>8&255,r&255]},enumerable:!1},hexToAnsi256:{value:e=>Z.rgbToAnsi256(...Z.hexToRgb(e)),enumerable:!1},ansi256ToAnsi:{value:e=>{if(e<8)return 30+e;if(e<16)return 90+(e-8);let t,s,r;if(e>=232)t=((e-232)*10+8)/255,s=t,r=t;else{e-=16;let a=e%36;t=Math.floor(e/36)/5,s=Math.floor(a/6)/5,r=a%6/5}let o=Math.max(t,s,r)*2;if(o===0)return 30;let i=30+(Math.round(r)<<2|Math.round(s)<<1|Math.round(t));return o===2&&(i+=60),i},enumerable:!1},rgbToAnsi:{value:(e,t,s)=>Z.ansi256ToAnsi(Z.rgbToAnsi256(e,t,s)),enumerable:!1},hexToAnsi:{value:e=>Z.ansi256ToAnsi(Z.hexToAnsi256(e)),enumerable:!1}}),Z}var gu=mu(),en=new Set(["\x1B","\x9B"]),Cu=39,Kn="\x07",Ci="[",Fu="]",Fi="m",Qn=`${Fu}8;;`,ci=n=>`${en.values().next().value}${Ci}${n}${Fi}`,li=n=>`${en.values().next().value}${Qn}${n}${Kn}`,Eu=n=>n.split(" ").map(e=>Rt(e)),Yn=(n,e,t)=>{let s=[...e],r=!1,o=!1,i=Rt(di(n[n.length-1]));for(let[a,D]of s.entries()){let h=Rt(D);if(i+h<=t?n[n.length-1]+=D:(n.push(D),i=0),en.has(D)&&(r=!0,o=s.slice(a+1).join("").startsWith(Qn)),r){o?D===Kn&&(r=!1,o=!1):D===Fi&&(r=!1);continue}i+=h,i===t&&a<s.length-1&&(n.push(""),i=0)}!i&&n[n.length-1].length>0&&n.length>1&&(n[n.length-2]+=n.pop())},bu=n=>{let e=n.split(" "),t=e.length;for(;t>0&&!(Rt(e[t-1])>0);)t--;return t===e.length?n:e.slice(0,t).join(" ")+e.slice(t).join("")},yu=(n,e,t={})=>{if(t.trim!==!1&&n.trim()==="")return"";let s="",r,o,i=Eu(n),a=[""];for(let[h,f]of n.split(" ").entries()){t.trim!==!1&&(a[a.length-1]=a[a.length-1].trimStart());let c=Rt(a[a.length-1]);if(h!==0&&(c>=e&&(t.wordWrap===!1||t.trim===!1)&&(a.push(""),c=0),(c>0||t.trim===!1)&&(a[a.length-1]+=" ",c++)),t.hard&&i[h]>e){let d=e-c,C=1+Math.floor((i[h]-d-1)/e);Math.floor((i[h]-1)/e)<C&&a.push(""),Yn(a,f,e);continue}if(c+i[h]>e&&c>0&&i[h]>0){if(t.wordWrap===!1&&c<e){Yn(a,f,e);continue}a.push("")}if(c+i[h]>e&&t.wordWrap===!1){Yn(a,f,e);continue}a[a.length-1]+=f}t.trim!==!1&&(a=a.map(h=>bu(h)));let D=[...a.join(`
9
- `)];for(let[h,f]of D.entries()){if(s+=f,en.has(f)){let{groups:d}=new RegExp(`(?:\\${Ci}(?<code>\\d+)m|\\${Qn}(?<uri>.*)${Kn})`).exec(D.slice(h).join(""))||{groups:{}};if(d.code!==void 0){let C=Number.parseFloat(d.code);r=C===Cu?void 0:C}else d.uri!==void 0&&(o=d.uri.length===0?void 0:d.uri)}let c=gu.codes.get(Number(r));D[h+1]===`
10
- `?(o&&(s+=li("")),r&&c&&(s+=ci(c))):f===`
11
- `&&(r&&c&&(s+=ci(r)),o&&(s+=li(o)))}return s};function Di(n,e,t){return String(n).normalize().replace(/\r\n/g,`
12
- `).split(`
13
- `).map(s=>yu(s,e,t)).join(`
14
- `)}var wu=Object.defineProperty,Au=(n,e,t)=>e in n?wu(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,xe=(n,e,t)=>(Au(n,typeof e!="symbol"?e+"":e,t),t);function $u(n,e){if(n===e)return;let t=n.split(`
15
- `),s=e.split(`
16
- `),r=[];for(let o=0;o<Math.max(t.length,s.length);o++)t[o]!==s[o]&&r.push(o);return r}var Ei=Symbol("clack:cancel");function Ge(n){return n===Ei}function Kt(n,e){n.isTTY&&n.setRawMode(e)}var hi=new Map([["k","up"],["j","down"],["h","left"],["l","right"]]),xu=new Set(["up","down","left","right","space","enter"]),Nt=class{constructor({render:e,input:t=bt.stdin,output:s=bt.stdout,...r},o=!0){xe(this,"input"),xe(this,"output"),xe(this,"rl"),xe(this,"opts"),xe(this,"_track",!1),xe(this,"_render"),xe(this,"_cursor",0),xe(this,"state","initial"),xe(this,"value"),xe(this,"error",""),xe(this,"subscribers",new Map),xe(this,"_prevFrame",""),this.opts=r,this.onKeypress=this.onKeypress.bind(this),this.close=this.close.bind(this),this.render=this.render.bind(this),this._render=e.bind(this),this._track=o,this.input=t,this.output=s}prompt(){let e=new pi.WriteStream(0);return e._write=(t,s,r)=>{this._track&&(this.value=this.rl.line.replace(/\t/g,""),this._cursor=this.rl.cursor,this.emit("value",this.value)),r()},this.input.pipe(e),this.rl=Jn.default.createInterface({input:this.input,output:e,tabSize:2,prompt:"",escapeCodeTimeout:50}),Jn.default.emitKeypressEvents(this.input,this.rl),this.rl.prompt(),this.opts.initialValue!==void 0&&this._track&&this.rl.write(this.opts.initialValue),this.input.on("keypress",this.onKeypress),Kt(this.input,!0),this.output.on("resize",this.render),this.render(),new Promise((t,s)=>{this.once("submit",()=>{this.output.write(ge.cursor.show),this.output.off("resize",this.render),Kt(this.input,!1),t(this.value)}),this.once("cancel",()=>{this.output.write(ge.cursor.show),this.output.off("resize",this.render),Kt(this.input,!1),t(Ei)})})}on(e,t){let s=this.subscribers.get(e)??[];s.push({cb:t}),this.subscribers.set(e,s)}once(e,t){let s=this.subscribers.get(e)??[];s.push({cb:t,once:!0}),this.subscribers.set(e,s)}emit(e,...t){let s=this.subscribers.get(e)??[],r=[];for(let o of s)o.cb(...t),o.once&&r.push(()=>s.splice(s.indexOf(o),1));for(let o of r)o()}unsubscribe(){this.subscribers.clear()}onKeypress(e,t){if(this.state==="error"&&(this.state="active"),t!=null&&t.name&&!this._track&&hi.has(t.name)&&this.emit("cursor",hi.get(t.name)),t!=null&&t.name&&xu.has(t.name)&&this.emit("cursor",t.name),e&&(e.toLowerCase()==="y"||e.toLowerCase()==="n")&&this.emit("confirm",e.toLowerCase()==="y"),e===" "&&this.opts.placeholder&&(this.value||(this.rl.write(this.opts.placeholder),this.emit("value",this.opts.placeholder))),e&&this.emit("key",e.toLowerCase()),(t==null?void 0:t.name)==="return"){if(this.opts.validate){let s=this.opts.validate(this.value);s&&(this.error=s,this.state="error",this.rl.write(this.value))}this.state!=="error"&&(this.state="submit")}e===""&&(this.state="cancel"),(this.state==="submit"||this.state==="cancel")&&this.emit("finalize"),this.render(),(this.state==="submit"||this.state==="cancel")&&this.close()}close(){this.input.unpipe(),this.input.removeListener("keypress",this.onKeypress),this.output.write(`
17
- `),Kt(this.input,!1),this.rl.close(),this.emit(`${this.state}`,this.value),this.unsubscribe()}restoreCursor(){let e=Di(this._prevFrame,process.stdout.columns,{hard:!0}).split(`
18
- `).length-1;this.output.write(ge.cursor.move(-999,e*-1))}render(){let e=Di(this._render(this)??"",process.stdout.columns,{hard:!0});if(e!==this._prevFrame){if(this.state==="initial")this.output.write(ge.cursor.hide);else{let t=$u(this._prevFrame,e);if(this.restoreCursor(),t&&(t==null?void 0:t.length)===1){let s=t[0];this.output.write(ge.cursor.move(0,s)),this.output.write(ge.erase.lines(1));let r=e.split(`
19
- `);this.output.write(r[s]),this._prevFrame=e,this.output.write(ge.cursor.move(0,r.length-s-1));return}else if(t&&(t==null?void 0:t.length)>1){let s=t[0];this.output.write(ge.cursor.move(0,s)),this.output.write(ge.erase.down());let r=e.split(`
20
- `).slice(s);this.output.write(r.join(`
21
- `)),this._prevFrame=e;return}this.output.write(ge.erase.down())}this.output.write(e),this.state==="initial"&&(this.state="active"),this._prevFrame=e}}},Zt=class extends Nt{get cursor(){return this.value?0:1}get _value(){return this.cursor===0}constructor(e){super(e,!1),this.value=!!e.initialValue,this.on("value",()=>{this.value=this._value}),this.on("confirm",t=>{this.output.write(ge.cursor.move(0,-1)),this.value=t,this.state="submit",this.close()}),this.on("cursor",()=>{this.value=!this.value})}};var vu=Object.defineProperty,Bu=(n,e,t)=>e in n?vu(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,fi=(n,e,t)=>(Bu(n,typeof e!="symbol"?e+"":e,t),t),bi=class extends Nt{constructor(n){super(n,!1),fi(this,"options"),fi(this,"cursor",0),this.options=n.options,this.cursor=this.options.findIndex(({value:e})=>e===n.initialValue),this.cursor===-1&&(this.cursor=0),this.changeValue(),this.on("cursor",e=>{switch(e){case"left":case"up":this.cursor=this.cursor===0?this.options.length-1:this.cursor-1;break;case"down":case"right":this.cursor=this.cursor===this.options.length-1?0:this.cursor+1;break}this.changeValue()})}get _value(){return this.options[this.cursor]}changeValue(){this.value=this._value.value}};var Ou=Object.defineProperty,_u=(n,e,t)=>e in n?Ou(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,ju=(n,e,t)=>(_u(n,typeof e!="symbol"?e+"":e,t),t),Xt=class extends Nt{constructor(e){super(e),ju(this,"valueWithCursor",""),this.on("finalize",()=>{this.value||(this.value=e.defaultValue),this.valueWithCursor=this.value}),this.on("value",()=>{if(this.cursor>=this.value.length)this.valueWithCursor=`${this.value}${Qt.default.inverse(Qt.default.hidden("_"))}`;else{let t=this.value.slice(0,this.cursor),s=this.value.slice(this.cursor);this.valueWithCursor=`${t}${Qt.default.inverse(s[0])}${s.slice(1)}`}})}get cursor(){return this._cursor}},Su=globalThis.process.platform.startsWith("win");function yi({input:n=bt.stdin,output:e=bt.stdout,overwrite:t=!0,hideCursor:s=!0}={}){let r=Ve.createInterface({input:n,output:e,prompt:"",tabSize:1});Ve.emitKeypressEvents(n,r),n.isTTY&&n.setRawMode(!0);let o=(i,{name:a})=>{if(String(i)===""&&process.exit(0),!t)return;Ve.moveCursor(e,a==="return"?0:-1,a==="return"?-1:0,()=>{Ve.clearLine(e,1,()=>{n.once("keypress",o)})})};return s&&process.stdout.write(ge.cursor.hide),n.once("keypress",o),()=>{n.off("keypress",o),s&&process.stdout.write(ge.cursor.show),n.isTTY&&!Su&&n.setRawMode(!1),r.terminal=!1,r.close()}}var ve=ce(require("node:process"),1),w=ce(Vn(),1),yt=ce(Un(),1);function Iu(){return ve.default.platform!=="win32"?ve.default.env.TERM!=="linux":!!ve.default.env.CI||!!ve.default.env.WT_SESSION||!!ve.default.env.TERMINUS_SUBLIME||ve.default.env.ConEmuTask==="{cmd::Cmder}"||ve.default.env.TERM_PROGRAM==="Terminus-Sublime"||ve.default.env.TERM_PROGRAM==="vscode"||ve.default.env.TERM==="xterm-256color"||ve.default.env.TERM==="alacritty"||ve.default.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}var Zn=Iu(),ue=(n,e)=>Zn?n:e,Pu=ue("\u25C6","*"),wi=ue("\u25A0","x"),Ai=ue("\u25B2","x"),ts=ue("\u25C7","o"),Mu=ue("\u250C","T"),ie=ue("\u2502","|"),wt=ue("\u2514","\u2014"),Xn=ue("\u25CF",">"),es=ue("\u25CB"," "),Ac=ue("\u25FB","[\u2022]"),$c=ue("\u25FC","[+]"),xc=ue("\u25FB","[ ]"),vc=ue("\u25AA","\u2022"),Bc=ue("\u2500","-"),Oc=ue("\u256E","+"),_c=ue("\u251C","+"),jc=ue("\u256F","+"),Tu=ue("\u25CF","\u2022"),Wu=ue("\u25C6","*"),Ru=ue("\u25B2","!"),Nu=ue("\u25A0","x"),ns=n=>{switch(n){case"initial":case"active":return w.default.cyan(Pu);case"cancel":return w.default.red(wi);case"error":return w.default.yellow(Ai);case"submit":return w.default.green(ts)}},$i=n=>new Xt({validate:n.validate,placeholder:n.placeholder,defaultValue:n.defaultValue,initialValue:n.initialValue,render(){var r;let e=`${w.default.gray(ie)}
22
- ${ns(this.state)} ${n.message}
23
- `,t=n.placeholder?w.default.inverse(n.placeholder[0])+w.default.dim(n.placeholder.slice(1)):w.default.inverse(w.default.hidden("_")),s=this.value?this.valueWithCursor:t;switch(this.state){case"error":return`${e.trim()}
24
- ${w.default.yellow(ie)} ${s}
25
- ${w.default.yellow(wt)} ${w.default.yellow(this.error)}
26
- `;case"submit":return`${e}${w.default.gray(ie)} ${w.default.dim(this.value||n.placeholder)}`;case"cancel":return`${e}${w.default.gray(ie)} ${w.default.strikethrough(w.default.dim(this.value??""))}${(r=this.value)!=null&&r.trim()?`
27
- `+w.default.gray(ie):""}`;default:return`${e}${w.default.cyan(ie)} ${s}
28
- ${w.default.cyan(wt)}
29
- `}}}).prompt();var tn=n=>{let e=n.active??"Yes",t=n.inactive??"No";return new Zt({active:e,inactive:t,initialValue:n.initialValue??!0,render(){let s=`${w.default.gray(ie)}
30
- ${ns(this.state)} ${n.message}
31
- `,r=this.value?e:t;switch(this.state){case"submit":return`${s}${w.default.gray(ie)} ${w.default.dim(r)}`;case"cancel":return`${s}${w.default.gray(ie)} ${w.default.strikethrough(w.default.dim(r))}
32
- ${w.default.gray(ie)}`;default:return`${s}${w.default.cyan(ie)} ${this.value?`${w.default.green(Xn)} ${e}`:`${w.default.dim(es)} ${w.default.dim(e)}`} ${w.default.dim("/")} ${this.value?`${w.default.dim(es)} ${w.default.dim(t)}`:`${w.default.green(Xn)} ${t}`}
33
- ${w.default.cyan(wt)}
34
- `}}}).prompt()},ss=n=>{let e=(s,r)=>{let o=s.label??String(s.value);return r==="active"?`${w.default.green(Xn)} ${o} ${s.hint?w.default.dim(`(${s.hint})`):""}`:r==="selected"?`${w.default.dim(o)}`:r==="cancelled"?`${w.default.strikethrough(w.default.dim(o))}`:`${w.default.dim(es)} ${w.default.dim(o)}`},t=0;return new bi({options:n.options,initialValue:n.initialValue,render(){let s=`${w.default.gray(ie)}
35
- ${ns(this.state)} ${n.message}
36
- `;switch(this.state){case"submit":return`${s}${w.default.gray(ie)} ${e(this.options[this.cursor],"selected")}`;case"cancel":return`${s}${w.default.gray(ie)} ${e(this.options[this.cursor],"cancelled")}
37
- ${w.default.gray(ie)}`;default:{let r=n.maxItems===void 0?1/0:Math.max(n.maxItems,5);this.cursor>=t+r-3?t=Math.max(Math.min(this.cursor-r+3,this.options.length-r),0):this.cursor<t+2&&(t=Math.max(this.cursor-2,0));let o=r<this.options.length&&t>0,i=r<this.options.length&&t+r<this.options.length;return`${s}${w.default.cyan(ie)} ${this.options.slice(t,t+r).map((a,D,h)=>D===0&&o?w.default.dim("..."):D===h.length-1&&i?w.default.dim("..."):e(a,D+t===this.cursor?"active":"inactive")).join(`
38
- ${w.default.cyan(ie)} `)}
39
- ${w.default.cyan(wt)}
40
- `}}}}).prompt()};var rt=(n="")=>{process.stdout.write(`${w.default.gray(wt)} ${w.default.red(n)}
41
-
42
- `)},nn=(n="")=>{process.stdout.write(`${w.default.gray(Mu)} ${n}
43
- `)},is=(n="")=>{process.stdout.write(`${w.default.gray(ie)}
44
- ${w.default.gray(wt)} ${n}
45
-
46
- `)},te={message:(n="",{symbol:e=w.default.gray(ie)}={})=>{let t=[`${w.default.gray(ie)}`];if(n){let[s,...r]=n.split(`
47
- `);t.push(`${e} ${s}`,...r.map(o=>`${w.default.gray(ie)} ${o}`))}process.stdout.write(`${t.join(`
48
- `)}
49
- `)},info:n=>{te.message(n,{symbol:w.default.blue(Tu)})},success:n=>{te.message(n,{symbol:w.default.green(Wu)})},step:n=>{te.message(n,{symbol:w.default.green(ts)})},warn:n=>{te.message(n,{symbol:w.default.yellow(Ru)})},warning:n=>{te.warn(n)},error:n=>{te.message(n,{symbol:w.default.red(Nu)})}},At=()=>{let n=Zn?["\u25D2","\u25D0","\u25D3","\u25D1"]:["\u2022","o","O","0"],e=Zn?80:120,t,s,r=!1,o="",i=(f="")=>{r=!0,t=yi(),o=f.replace(/\.+$/,""),process.stdout.write(`${w.default.gray(ie)}
50
- `);let c=0,d=0;s=setInterval(()=>{let C=w.default.magenta(n[c]),E=".".repeat(Math.floor(d)).slice(0,3);process.stdout.write(yt.cursor.move(-999,0)),process.stdout.write(yt.erase.down(1)),process.stdout.write(`${C} ${o}${E}`),c=c+1<n.length?c+1:0,d=d<n.length?d+.125:0},e)},a=(f="",c=0)=>{o=f??o,r=!1,clearInterval(s);let d=c===0?w.default.green(ts):c===1?w.default.red(wi):w.default.red(Ai);process.stdout.write(yt.cursor.move(-999,0)),process.stdout.write(yt.erase.down(1)),process.stdout.write(`${d} ${o}
51
- `),t()},D=(f="")=>{o=f??o},h=f=>{let c=f>1?"Something went wrong":"Canceled";r&&a(c,f)};return process.on("uncaughtExceptionMonitor",()=>h(2)),process.on("unhandledRejection",()=>h(2)),process.on("SIGINT",()=>h(1)),process.on("SIGTERM",()=>h(1)),process.on("exit",h),{start:i,stop:a,message:D}};var rs,xi,vi,Bi,Oi=!0;typeof process<"u"&&({FORCE_COLOR:rs,NODE_DISABLE_COLORS:xi,NO_COLOR:vi,TERM:Bi}=process.env||{},Oi=process.stdout&&process.stdout.isTTY);var ku={enabled:!xi&&vi==null&&Bi!=="dumb"&&(rs!=null&&rs!=="0"||Oi)};function G(n,e){let t=new RegExp(`\\x1b\\[${e}m`,"g"),s=`\x1B[${n}m`,r=`\x1B[${e}m`;return function(o){return!ku.enabled||o==null?o:s+(~(""+o).indexOf(r)?o.replace(t,r+s):o)+r}}var _i=G(0,0),ji=G(1,22),Pc=G(2,22),Mc=G(3,23),Tc=G(4,24),Wc=G(7,27),Rc=G(8,28),Nc=G(9,29),kc=G(30,39),Ee=G(31,39),Si=G(32,39),Ii=G(33,39),Pi=G(34,39),Ce=G(35,39),be=G(36,39),Mi=G(37,39),Ye=G(90,39),Lc=G(90,39),zc=G(40,49),sn=G(41,49),qc=G(42,49),Uc=G(43,49),kt=G(44,49),os=G(45,49),Hc=G(46,49),Vc=G(47,49);var us=ce(require("node:fs")),Ti=require("node:path"),rn=async n=>{let e=await us.default.promises.readdir(n);return await Promise.all(e.map(t=>us.default.promises.rm((0,Ti.join)(n,t),{recursive:!0})))};var fn=ce(require("node:fs")),pn=require("node:path");var Br=ce(Ri(),1),Fs=ce(require("node:fs"),1),Es=require("node:path"),Or=ce(xr(),1);function vt(n,e,t){let s,r=new Promise(i=>{try{s=(0,Or.default)(n,e,{cwd:t,stdio:"ignore"}),s.on("error",a=>{a&&(a.message?te.error(Ee(String(a.message))+`
52
-
53
- `):te.error(Ee(String(a))+`
54
-
55
- `)),i(!1)}),s.on("close",a=>{i(a===0)})}catch{i(!1)}});return{abort:async()=>{s&&s.kill("SIGINT")},install:r}}async function _r(n){let e=(0,Es.join)(n,"package.json");return JSON.parse(await Fs.default.promises.readFile(e,"utf-8"))}async function jr(n,e){let t=(0,Es.join)(n,"package.json");await Fs.default.promises.writeFile(t,JSON.stringify(e,null,2)+`
56
- `)}function Sr(n){return new Promise(e=>setTimeout(e,n))}function Ir(n){n={...n};let e={name:n.name,version:n.version,description:n.description,scripts:n.scripts,dependencies:n.dependencies,devDependencies:n.devDependencies,main:n.main,qwik:n.qwik,module:n.module,types:n.types,exports:n.exports,files:n.files,engines:{node:"^18.17.0 || ^20.3.0 || >=21.0.0"}};Object.keys(e).forEach(s=>{delete n[s]}),delete n.__qwik__;let t=Object.keys(n).sort();for(let s of t)e[s]=n[s];return e}function Pr(n){return n.toLocaleLowerCase().split("-").map(e=>e.charAt(0).toUpperCase()+e.slice(1)).join(" ")}function Je(){var n;return((n=(0,Br.default)())==null?void 0:n.name)||"npm"}function un(n){console.error(`
57
- \u274C ${Ee(n)}
58
- `),process.exit(1)}function Mr(){console.log(Pi(`
59
- ${Ce("............")}
60
- .::: ${Ce(":--------:.")}
61
- .:::: ${Ce(".:-------:.")}
62
- .:::::. ${Ce(".:-------.")}
63
- ::::::. ${Ce(".:------.")}
64
- ::::::. ${Ce(":-----:")}
65
- ::::::. ${Ce(".:-----.")}
66
- :::::::. ${Ce(".-----.")}
67
- ::::::::.. ${Ce("---:.")}
68
- .:::::::::. ${Ce(":-:.")}
69
- ..::::::::::::
70
- ...::::
71
- `),`
72
- `)}function Tr(){return process.platform!=="win32"?process.env.TERM!=="linux":!!process.env.CI||!!process.env.WT_SESSION||!!process.env.TERMINUS_SUBLIME||process.env.ConEmuTask==="{cmd::Cmder}"||process.env.TERM_PROGRAM==="Terminus-Sublime"||process.env.TERM_PROGRAM==="vscode"||process.env.TERM==="xterm-256color"||process.env.TERM==="alacritty"||process.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}var pa=Tr(),Bt=(n,e)=>pa?n:e,gs=Bt("\u2502","|"),vr=Bt("\u2500","-"),da=Bt("\u256E","+"),ma=Bt("\u251C","+"),ga=Bt("\u256F","+"),Ca=Bt("\u25C7","o");function Fa(){let n=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");return new RegExp(n,"g")}var Cs=n=>n.replace(Fa(),""),an=(n="",e="")=>{let t=`
73
- ${n}
74
- `.split(`
75
- `),s=Cs(e).length,r=Math.max(t.reduce((i,a)=>(a=Cs(a),a.length>i?a.length:i),0),s)+2,o=t.map(i=>`${Ye(gs)} ${Mi(i)}${" ".repeat(r-Cs(i).length)}${Ye(gs)}`).join(`
76
- `);process.stdout.write(`${Ye(gs)}
77
- ${Si(Ca)} ${_i(e)} ${Ye(vr.repeat(Math.max(r-s-1,1))+da)}
78
- ${o}
79
- ${Ye(ma+vr.repeat(r+2)+ga)}
80
- `)};var Rr=require("node:path"),ws=ce(require("node:fs"),1);var cn=ce(require("node:fs"),1),ln=require("node:path");var bs=null;async function Dn(){if(!bs){let n=[],e=["app","feature","adapter"],t=(0,ln.join)(__dirname,"starters"),s=await cn.default.promises.readdir(t);await Promise.all(s.map(async r=>{let o=r.slice(0,r.length-1);if(e.includes(o)){let i=(0,ln.join)(t,r),a=await cn.default.promises.readdir(i);await Promise.all(a.map(async D=>{var c,d,C;let h=(0,ln.join)(i,D);if((await cn.default.promises.stat(h)).isDirectory()){let E=await _r(h),b={id:D,name:((c=E.__qwik__)==null?void 0:c.displayName)??Pr(D),type:o,dir:h,pkgJson:E,docs:((d=E.__qwik__)==null?void 0:d.docs)??[],priority:((C=E==null?void 0:E.__qwik__)==null?void 0:C.priority)??0};n.push(b)}}))}})),n.sort((r,o)=>r.priority>o.priority?-1:r.priority<o.priority?1:r.id<o.id?-1:1),bs=n}return bs}var qe=ce(require("node:fs"),1),Be=ce(require("node:path"),1);function ot(n,e){return vt(n,["install"],e)}function Wr(n,e){let{tmpInstallDir:t}=Ea(e),{install:s,abort:r}=ot(n,t),i={abort:()=>r().finally(()=>qe.default.rmSync(t,{recursive:!0})),complete:async a=>{let D=!1;try{if(await s){let f=Be.default.join(t,"node_modules"),c=Be.default.join(a,"node_modules");await qe.default.promises.rename(f,c);try{await qe.default.promises.rename(Be.default.join(t,"package-lock.json"),Be.default.join(a,"package-lock.json"))}catch{}try{await qe.default.promises.rename(Be.default.join(t,"yarn.lock"),Be.default.join(a,"yarn.lock"))}catch{}try{await qe.default.promises.rename(Be.default.join(t,"pnpm-lock.yaml"),Be.default.join(a,"pnpm-lock.yaml"))}catch{}D=!0,qe.default.rmSync(t,{recursive:!0})}}catch(h){h&&(h.message?te.error(Ee(String(h.message))+`
81
-
82
- `):te.error(Ee(String(h))+`
83
-
84
- `))}if(!D){let h=`${sn(` ${n} install failed `)}
85
- You might need to run ${be(`"${n} install"`)} manually inside the root of the project.
86
-
87
- `;te.error(h)}return D},success:void 0};return s.then(a=>i.success=a),i}function Ea(n){let e=".create-qwik-"+Math.round(Math.random()*Number.MAX_SAFE_INTEGER).toString(36).toLowerCase(),t=Be.default.resolve(n.target,"..",e);try{qe.default.mkdirSync(t)}catch(o){te.error(`\u274C ${Ee(String(o))}`)}let s=Be.default.join(n.dir,"package.json"),r=Be.default.join(t,"package.json");return qe.default.copyFileSync(s,r),{tmpInstallDir:t}}var de=ce(require("node:fs"),1),Lt=require("node:path");async function ys(n,e,t,s){let r=await de.default.promises.readdir(t);await Promise.all(r.map(async o=>{let i=o==="gitignore"?".gitignore":o,a=(0,Lt.extname)(i),D=(0,Lt.join)(t,o),h=(0,Lt.join)(s,i),f=await de.default.promises.stat(D);f.isDirectory()?await ys(n,e,D,h):f.isFile()&&(i==="package.json"?await ba(n,D,h):i==="settings.json"?await ya(n,D,h):i==="README.md"?await Aa(n,D,h):i===".gitignore"||i===".prettierignore"||i===".eslintignore"?await $a(n,D,h):a===".css"?await xa(n,D,h,e):de.default.existsSync(h)?n.files.push({path:h,content:await de.default.promises.readFile(D),type:"overwrite"}):n.files.push({path:h,content:await de.default.promises.readFile(D),type:"create"}))}))}async function ba(n,e,t){var r;let s=await de.default.promises.readFile(e,"utf-8");try{let o=JSON.parse(s),i=["scripts","dependencies","devDependencies"],a=JSON.parse(await de.default.promises.readFile(t,"utf-8"));if(i.forEach(D=>{wa(o,a,D)}),(r=a.scripts)!=null&&r.qwik){let D=a.scripts.qwik;delete a.scripts.qwik,a.scripts.qwik=D}n.files.push({path:t,content:JSON.stringify(a,null,2)+`
88
- `,type:"modify"})}catch{n.files.push({path:t,content:s,type:"create"})}}async function ya(n,e,t){let s=await de.default.promises.readFile(e,"utf-8");try{let r=JSON.parse(s),o=JSON.parse(await de.default.promises.readFile(t,"utf-8"));Object.assign(r,o),n.files.push({path:t,content:JSON.stringify(r,null,2)+`
89
- `,type:"modify"})}catch{n.files.push({path:t,content:s,type:"create"})}}function wa(n,e,t){if(n[t]){e[t]?Object.assign(e[t],{...n[t]}):e[t]={...n[t]};let s={},r=Object.keys(e[t]).sort();for(let o of r)s[o]=e[t][o];e[t]=s}}async function Aa(n,e,t){let s=await de.default.promises.readFile(e,"utf-8"),r,o="";try{o=await de.default.promises.readFile(t,"utf-8"),o=o.trim()+`
90
-
91
- `+s,r="modify"}catch{o=s,r="create"}let i=Je();i!=="npm"&&(o=o.replace(/\b(npm run|pnpm run|yarn( run)?)\b/g,i)),n.files.push({path:t,content:o.trim()+`
92
- `,type:r})}async function $a(n,e,t){let s=await de.default.promises.readFile(e,"utf-8");try{let r=await de.default.promises.readFile(t,"utf-8"),o=s.trim().split(/\r?\n/),i=r.trim().split(/\r?\n/);for(let a of o)i.includes(a)||(a.startsWith("#")&&i.push(""),i.push(a));n.files.push({path:t,content:i.join(`
93
- `).trim()+`
94
- `,type:"modify"})}catch{n.files.push({path:t,content:s,type:"create"})}}async function xa(n,e,t,s){let r=await de.default.promises.readFile(e,"utf-8");try{let o=await de.default.promises.readFile(t,"utf-8"),i=r.trim()+`
95
-
96
- `+o.trim()+`
97
- `,a=s.installDeps===!0;n.files.push({path:t,content:a?i:r,type:a?"modify":"overwrite"})}catch{n.files.push({path:t,content:r,type:"create"})}}async function As(n,e){let s=(await Dn()).find(a=>a.id===e.integration);if(!s)throw new Error(`Unable to find integration "${e.integration}"`);let r={files:[],installedDeps:{},installedScripts:Object.keys(s.pkgJson.scripts||{})};e.installDeps&&(r.installedDeps={...s.pkgJson.dependencies,...s.pkgJson.devDependencies}),await ys(r,e,s.dir,e.rootDir);let o=async a=>{let D=Object.keys(r.installedDeps).length>0,h=At();a&&h.start(`Updating app${D?" and installing dependencies":""}...`);let f=!0;try{let c=new Set(r.files.map(C=>(0,Rr.dirname)(C.path)));for(let C of Array.from(c))try{ws.default.mkdirSync(C,{recursive:!0})}catch{}let d=Promise.all(r.files.map(async C=>{await ws.default.promises.writeFile(C.path,C.content)}));if(e.installDeps&&Object.keys(r.installedDeps).length>0){let{install:C}=ot(n,e.rootDir);f=await C}if(await d,a&&h.stop("App updated"),!f){let C=`${sn(` ${n} install failed `)}
98
- You might need to run "${be(`${n} install`)}" manually inside the root of the project.`;te.error(C)}}catch(c){a&&h.stop("App updated"),un(String(c))}};return{rootDir:e.rootDir,integration:s,updates:r,commit:o}}var $s,va="library",hn="base",zt=class extends Error{constructor(e,t){super(),this.message=`Invalid app id "${e}". It can only be one of${t.map(s=>` "${s.id}"`)}.`}},Ot=async n=>{$s||($s=await Dn());let e=$s.filter(i=>i.type===n),t=e.filter(i=>i.id!==hn);function s(i,a=!0){return a?t.find(D=>D.id===i):e.find(D=>D.id===i)}function r(){return s(hn,!1)}function o(i){if(i===va){let f=s(i);if(!f)throw new zt(i,t);return{baseApp:f}}let D=s(hn,!1),h=s(i);if(!D)throw new zt(hn,t);if(!h)throw new zt(i,t);return{baseApp:D,starterApp:h}}return{templates:e,standaloneTemplates:t,getAppById:s,getBootstrapApps:o,getBaseApp:r}};function Ba(n){return typeof n=="string"&&n.trim().length>0}function Oa(n){if(!Ba(n.outDir))throw new Error("Missing outDir");if(!(0,pn.isAbsolute)(n.outDir))throw new Error("outDir must be an absolute path")}async function _t(n){let{appId:e,outDir:t,pkgManager:s,templateManager:r}=n,{baseApp:o,starterApp:i}=r.getBootstrapApps(e);Oa(n),fn.default.existsSync(t)||fn.default.mkdirSync(decodeURIComponent(t),{recursive:!0});let a=await _a({baseApp:o,starterApp:i,pkgManager:s,outDir:t});return{starterId:n.appId,outDir:t,pkgManager:s,docs:a}}async function _a({baseApp:n,starterApp:e,outDir:t,pkgManager:s}){let r=[...n.docs],o=e??n,i=Ir({...n.pkgJson,name:`my-${o.pkgJson.name}`,description:o.pkgJson.description,scripts:void 0,dependencies:void 0,devDependencies:void 0});await jr(t,i);let a=(0,pn.join)(t,"README.md");return await fn.default.promises.writeFile(a,""),await(await As(s,{rootDir:t,integration:n.id,installDeps:!1})).commit(!1),e&&(r.push(...e.docs),await(await As(s,{rootDir:t,integration:e.id,installDeps:!1})).commit(!1)),r}var Zs=ce(require("node:fs"));async function dn(n,{pkgManager:e,spinner:t}){t.start(`Installing ${e} dependencies...`);let s=await n();return t.stop(`${s?"Installed":"Failed to install"} ${e} dependencies \u{1F4CB}`),s}function Nr(n){let e=[];return n.length>0&&(e.push(`\u{1F4C4} ${be("Relevant docs:")}`),n.forEach(t=>{e.push(` ${t}`)})),e.push(""),e.push(`\u{1F4AC} ${be("Questions? Start the conversation at:")}`),e.push(" https://qwik.dev/chat"),e.push(" https://twitter.com/QwikDev"),e.push(""),e.join(`
99
- `)}var kr=require("node:path");function mn(n,e,t){let s=process.cwd()===e.outDir,r=(0,kr.relative)(process.cwd(),e.outDir),o=[];s?o.push(`\u{1F984} ${os(" Success! ")}`):o.push(`\u{1F984} ${os(" Success! ")} ${be("Project created in")} ${ji(Ce(r))} ${be("directory")}`),o.push("");let i=n!=="npm"?`${n} qwik add`:"npm run qwik add";o.push(`\u{1F90D} ${be("Integrations? Add Netlify, Cloudflare, Tailwind...")}`),o.push(` ${i}`),o.push(""),o.push(Nr(e.docs)),o.push(`\u{1F440} ${be("Presentations, Podcasts and Videos:")}`),o.push(" https://qwik.dev/media/"),o.push(""),o.push(`\u{1F430} ${be("Next steps:")}`),s||o.push(` cd ${r}`),t||o.push(` ${n} install`),o.push(` ${n} start`),o.push(""),an(o.join(`
100
- `),"Result"),is("Happy coding! \u{1F389}")}var xs=require("path"),Lr=ce(require("node:os"));function gn(n){return n.startsWith("~/")?(0,xs.resolve)(Lr.default.homedir(),n):(0,xs.resolve)(process.cwd(),n)}var $n=require("assert");var ja={right:Ta,center:Wa},Sa=0,Cn=1,Ia=2,Fn=3,vs=class{constructor(e){var t;this.width=e.width,this.wrap=(t=e.wrap)!==null&&t!==void 0?t:!0,this.rows=[]}span(...e){let t=this.div(...e);t.span=!0}resetOutput(){this.rows=[]}div(...e){if(e.length===0&&this.div(""),this.wrap&&this.shouldApplyLayoutDSL(...e)&&typeof e[0]=="string")return this.applyLayoutDSL(e[0]);let t=e.map(s=>typeof s=="string"?this.colFromString(s):s);return this.rows.push(t),t}shouldApplyLayoutDSL(...e){return e.length===1&&typeof e[0]=="string"&&/[\t\n]/.test(e[0])}applyLayoutDSL(e){let t=e.split(`
101
- `).map(r=>r.split(" ")),s=0;return t.forEach(r=>{r.length>1&&ye.stringWidth(r[0])>s&&(s=Math.min(Math.floor(this.width*.5),ye.stringWidth(r[0])))}),t.forEach(r=>{this.div(...r.map((o,i)=>({text:o.trim(),padding:this.measurePadding(o),width:i===0&&r.length>1?s:void 0})))}),this.rows[this.rows.length-1]}colFromString(e){return{text:e,padding:this.measurePadding(e)}}measurePadding(e){let t=ye.stripAnsi(e);return[0,t.match(/\s*$/)[0].length,0,t.match(/^\s*/)[0].length]}toString(){let e=[];return this.rows.forEach(t=>{this.rowToString(t,e)}),e.filter(t=>!t.hidden).map(t=>t.text).join(`
102
- `)}rowToString(e,t){return this.rasterize(e).forEach((s,r)=>{let o="";s.forEach((i,a)=>{let{width:D}=e[a],h=this.negatePadding(e[a]),f=i;if(h>ye.stringWidth(i)&&(f+=" ".repeat(h-ye.stringWidth(i))),e[a].align&&e[a].align!=="left"&&this.wrap){let d=ja[e[a].align];f=d(f,h),ye.stringWidth(f)<h&&(f+=" ".repeat((D||0)-ye.stringWidth(f)-1))}let c=e[a].padding||[0,0,0,0];c[Fn]&&(o+=" ".repeat(c[Fn])),o+=zr(e[a],f,"| "),o+=f,o+=zr(e[a],f," |"),c[Cn]&&(o+=" ".repeat(c[Cn])),r===0&&t.length>0&&(o=this.renderInline(o,t[t.length-1]))}),t.push({text:o.replace(/ +$/,""),span:e.span})}),t}renderInline(e,t){let s=e.match(/^ */),r=s?s[0].length:0,o=t.text,i=ye.stringWidth(o.trimRight());return t.span?this.wrap?r<i?e:(t.hidden=!0,o.trimRight()+" ".repeat(r-i)+e.trimLeft()):(t.hidden=!0,o+e):e}rasterize(e){let t=[],s=this.columnWidths(e),r;return e.forEach((o,i)=>{o.width=s[i],this.wrap?r=ye.wrap(o.text,this.negatePadding(o),{hard:!0}).split(`
103
- `):r=o.text.split(`
104
- `),o.border&&(r.unshift("."+"-".repeat(this.negatePadding(o)+2)+"."),r.push("'"+"-".repeat(this.negatePadding(o)+2)+"'")),o.padding&&(r.unshift(...new Array(o.padding[Sa]||0).fill("")),r.push(...new Array(o.padding[Ia]||0).fill(""))),r.forEach((a,D)=>{t[D]||t.push([]);let h=t[D];for(let f=0;f<i;f++)h[f]===void 0&&h.push("");h.push(a)})}),t}negatePadding(e){let t=e.width||0;return e.padding&&(t-=(e.padding[Fn]||0)+(e.padding[Cn]||0)),e.border&&(t-=4),t}columnWidths(e){if(!this.wrap)return e.map(i=>i.width||ye.stringWidth(i.text));let t=e.length,s=this.width,r=e.map(i=>{if(i.width)return t--,s-=i.width,i.width}),o=t?Math.floor(s/t):0;return r.map((i,a)=>i===void 0?Math.max(o,Pa(e[a])):i)}};function zr(n,e,t){return n.border?/[.']-+[.']/.test(e)?"":e.trim().length!==0?t:" ":""}function Pa(n){let e=n.padding||[],t=1+(e[Fn]||0)+(e[Cn]||0);return n.border?t+4:t}function Ma(){return typeof process=="object"&&process.stdout&&process.stdout.columns?process.stdout.columns:80}function Ta(n,e){n=n.trim();let t=ye.stringWidth(n);return t<e?" ".repeat(e-t)+n:n}function Wa(n,e){n=n.trim();let t=ye.stringWidth(n);return t>=e?n:" ".repeat(e-t>>1)+n}var ye;function qr(n,e){return ye=e,new vs({width:(n==null?void 0:n.width)||Ma(),wrap:n==null?void 0:n.wrap})}var Ur=new RegExp("\x1B(?:\\[(?:\\d+[ABCDEFGJKSTm]|\\d+;\\d+[Hfm]|\\d+;\\d+;\\d+m|6n|s|u|\\?25[lh])|\\w)","g");function Bs(n){return n.replace(Ur,"")}function Hr(n,e){let[t,s]=n.match(Ur)||["",""];n=Bs(n);let r="";for(let o=0;o<n.length;o++)o!==0&&o%e===0&&(r+=`
105
- `),r+=n.charAt(o);return t&&s&&(r=`${t}${r}${s}`),r}function Os(n){return qr(n,{stringWidth:e=>[...e].length,stripAnsi:Bs,wrap:Hr})}var jt=require("path"),En=require("fs");function Vr(n,e){let t=(0,jt.resolve)(".",n),s;for((0,En.statSync)(t).isDirectory()||(t=(0,jt.dirname)(t));;){if(s=e(t,(0,En.readdirSync)(t)),s)return(0,jt.resolve)(t,s);if(t=(0,jt.dirname)(s=t),s===t)break}}var ao=require("util"),co=require("fs"),lo=require("url");var Qr=require("util"),An=require("path");function ut(n){if(n!==n.toLowerCase()&&n!==n.toUpperCase()||(n=n.toLowerCase()),n.indexOf("-")===-1&&n.indexOf("_")===-1)return n;{let t="",s=!1,r=n.match(/^-+/);for(let o=r?r[0].length:0;o<n.length;o++){let i=n.charAt(o);s&&(s=!1,i=i.toUpperCase()),o!==0&&(i==="-"||i==="_")?s=!0:i!=="-"&&i!=="_"&&(t+=i)}return t}}function bn(n,e){let t=n.toLowerCase();e=e||"-";let s="";for(let r=0;r<n.length;r++){let o=t.charAt(r),i=n.charAt(r);o!==i&&r>0?s+=`${e}${t.charAt(r)}`:s+=i}return s}function yn(n){return n==null?!1:typeof n=="number"||/^0x[0-9a-f]+$/i.test(n)?!0:/^0[^.]/.test(n)?!1:/^[-]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(n)}function Gr(n){if(Array.isArray(n))return n.map(i=>typeof i!="string"?i+"":i);n=n.trim();let e=0,t=null,s=null,r=null,o=[];for(let i=0;i<n.length;i++){if(t=s,s=n.charAt(i),s===" "&&!r){t!==" "&&e++;continue}s===r?r=null:(s==="'"||s==='"')&&!r&&(r=s),o[e]||(o[e]=""),o[e]+=s}return o}var Oe;(function(n){n.BOOLEAN="boolean",n.STRING="string",n.NUMBER="number",n.ARRAY="array"})(Oe||(Oe={}));var Ue,wn=class{constructor(e){Ue=e}parse(e,t){let s=Object.assign({alias:void 0,array:void 0,boolean:void 0,config:void 0,configObjects:void 0,configuration:void 0,coerce:void 0,count:void 0,default:void 0,envPrefix:void 0,narg:void 0,normalize:void 0,string:void 0,number:void 0,__:void 0,key:void 0},t),r=Gr(e),o=typeof e=="string",i=Ra(Object.assign(Object.create(null),s.alias)),a=Object.assign({"boolean-negation":!0,"camel-case-expansion":!0,"combine-arrays":!1,"dot-notation":!0,"duplicate-arguments-array":!0,"flatten-duplicate-arrays":!0,"greedy-arrays":!0,"halt-at-non-option":!1,"nargs-eats-options":!1,"negation-prefix":"no-","parse-numbers":!0,"parse-positional-numbers":!0,"populate--":!1,"set-placeholder-key":!1,"short-option-groups":!0,"strip-aliased":!1,"strip-dashed":!1,"unknown-options-as-args":!1},s.configuration),D=Object.assign(Object.create(null),s.default),h=s.configObjects||[],f=s.envPrefix,c=a["populate--"],d=c?"--":"_",C=Object.create(null),E=Object.create(null),b=s.__||Ue.format,g={aliases:Object.create(null),arrays:Object.create(null),bools:Object.create(null),strings:Object.create(null),numbers:Object.create(null),counts:Object.create(null),normalize:Object.create(null),configs:Object.create(null),nargs:Object.create(null),coercions:Object.create(null),keys:[]},B=/^-([0-9]+(\.[0-9]+)?|\.[0-9]+)$/,W=new RegExp("^--"+a["negation-prefix"]+"(.+)");[].concat(s.array||[]).filter(Boolean).forEach(function(l){let m=typeof l=="object"?l.key:l,y=Object.keys(l).map(function(F){return{boolean:"bools",string:"strings",number:"numbers"}[F]}).filter(Boolean).pop();y&&(g[y][m]=!0),g.arrays[m]=!0,g.keys.push(m)}),[].concat(s.boolean||[]).filter(Boolean).forEach(function(l){g.bools[l]=!0,g.keys.push(l)}),[].concat(s.string||[]).filter(Boolean).forEach(function(l){g.strings[l]=!0,g.keys.push(l)}),[].concat(s.number||[]).filter(Boolean).forEach(function(l){g.numbers[l]=!0,g.keys.push(l)}),[].concat(s.count||[]).filter(Boolean).forEach(function(l){g.counts[l]=!0,g.keys.push(l)}),[].concat(s.normalize||[]).filter(Boolean).forEach(function(l){g.normalize[l]=!0,g.keys.push(l)}),typeof s.narg=="object"&&Object.entries(s.narg).forEach(([l,m])=>{typeof m=="number"&&(g.nargs[l]=m,g.keys.push(l))}),typeof s.coerce=="object"&&Object.entries(s.coerce).forEach(([l,m])=>{typeof m=="function"&&(g.coercions[l]=m,g.keys.push(l))}),typeof s.config<"u"&&(Array.isArray(s.config)||typeof s.config=="string"?[].concat(s.config).filter(Boolean).forEach(function(l){g.configs[l]=!0}):typeof s.config=="object"&&Object.entries(s.config).forEach(([l,m])=>{(typeof m=="boolean"||typeof m=="function")&&(g.configs[l]=m)})),it(s.key,i,s.default,g.arrays),Object.keys(D).forEach(function(l){(g.aliases[l]||[]).forEach(function(m){D[m]=D[l]})});let U=null;Yt();let L=[],H=Object.assign(Object.create(null),{_:[]}),He={};for(let l=0;l<r.length;l++){let m=r[l],y=m.replace(/^-{3,}/,"---"),F,p,_,$,I,he;if(m!=="--"&&/^-/.test(m)&&ne(m))Pe(m);else if(y.match(/^---+(=|$)/)){Pe(m);continue}else if(m.match(/^--.+=/)||!a["short-option-groups"]&&m.match(/^-.+=/))$=m.match(/^--?([^=]+)=([\s\S]*)$/),$!==null&&Array.isArray($)&&$.length>=3&&(M($[1],g.arrays)?l=nt(l,$[1],r,$[2]):M($[1],g.nargs)!==!1?l=Et(l,$[1],r,$[2]):V($[1],$[2],!0));else if(m.match(W)&&a["boolean-negation"])$=m.match(W),$!==null&&Array.isArray($)&&$.length>=2&&(p=$[1],V(p,M(p,g.arrays)?[!1]:!1));else if(m.match(/^--.+/)||!a["short-option-groups"]&&m.match(/^-[^-]+/))$=m.match(/^--?(.+)/),$!==null&&Array.isArray($)&&$.length>=2&&(p=$[1],M(p,g.arrays)?l=nt(l,p,r):M(p,g.nargs)!==!1?l=Et(l,p,r):(I=r[l+1],I!==void 0&&(!I.match(/^-/)||I.match(B))&&!M(p,g.bools)&&!M(p,g.counts)||/^(true|false)$/.test(I)?(V(p,I),l++):V(p,se(p))));else if(m.match(/^-.\..+=/))$=m.match(/^-([^=]+)=([\s\S]*)$/),$!==null&&Array.isArray($)&&$.length>=3&&V($[1],$[2]);else if(m.match(/^-.\..+/)&&!m.match(B))I=r[l+1],$=m.match(/^-(.\..+)/),$!==null&&Array.isArray($)&&$.length>=2&&(p=$[1],I!==void 0&&!I.match(/^-/)&&!M(p,g.bools)&&!M(p,g.counts)?(V(p,I),l++):V(p,se(p)));else if(m.match(/^-[^-]+/)&&!m.match(B)){_=m.slice(1,-1).split(""),F=!1;for(let me=0;me<_.length;me++){if(I=m.slice(me+2),_[me+1]&&_[me+1]==="="){he=m.slice(me+3),p=_[me],M(p,g.arrays)?l=nt(l,p,r,he):M(p,g.nargs)!==!1?l=Et(l,p,r,he):V(p,he),F=!0;break}if(I==="-"){V(_[me],I);continue}if(/[A-Za-z]/.test(_[me])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(I)&&M(I,g.bools)===!1){V(_[me],I),F=!0;break}if(_[me+1]&&_[me+1].match(/\W/)){V(_[me],I),F=!0;break}else V(_[me],se(_[me]))}p=m.slice(-1)[0],!F&&p!=="-"&&(M(p,g.arrays)?l=nt(l,p,r):M(p,g.nargs)!==!1?l=Et(l,p,r):(I=r[l+1],I!==void 0&&(!/^(-|--)[^-]/.test(I)||I.match(B))&&!M(p,g.bools)&&!M(p,g.counts)||/^(true|false)$/.test(I)?(V(p,I),l++):V(p,se(p))))}else if(m.match(/^-[0-9]$/)&&m.match(B)&&M(m.slice(1),g.bools))p=m.slice(1),V(p,se(p));else if(m==="--"){L=r.slice(l+1);break}else if(a["halt-at-non-option"]){L=r.slice(l);break}else Pe(m)}z(H,!0),z(H,!1),N(H),le(),X(H,g.aliases,D,!0),De(H),a["set-placeholder-key"]&&st(H),Object.keys(g.counts).forEach(function(l){Le(H,l.split("."))||V(l,0)}),c&&L.length&&(H[d]=[]),L.forEach(function(l){H[d].push(l)}),a["camel-case-expansion"]&&a["strip-dashed"]&&Object.keys(H).filter(l=>l!=="--"&&l.includes("-")).forEach(l=>{delete H[l]}),a["strip-aliased"]&&[].concat(...Object.keys(i).map(l=>i[l])).forEach(l=>{a["camel-case-expansion"]&&l.includes("-")&&delete H[l.split(".").map(m=>ut(m)).join(".")],delete H[l]});function Pe(l){let m=O("_",l);(typeof m=="string"||typeof m=="number")&&H._.push(m)}function Et(l,m,y,F){let p,_=M(m,g.nargs);if(_=typeof _!="number"||isNaN(_)?1:_,_===0)return Te(F)||(U=Error(b("Argument unexpected for: %s",m))),V(m,se(m)),l;let $=Te(F)?0:1;if(a["nargs-eats-options"])y.length-(l+1)+$<_&&(U=Error(b("Not enough arguments following: %s",m))),$=_;else{for(p=l+1;p<y.length&&(!y[p].match(/^-[^0-9]/)||y[p].match(B)||ne(y[p]));p++)$++;$<_&&(U=Error(b("Not enough arguments following: %s",m)))}let I=Math.min($,_);for(!Te(F)&&I>0&&(V(m,F),I--),p=l+1;p<I+l+1;p++)V(m,y[p]);return l+I}function nt(l,m,y,F){let p=[],_=F||y[l+1],$=M(m,g.nargs);if(M(m,g.bools)&&!/^(true|false)$/.test(_))p.push(!0);else if(Te(_)||Te(F)&&/^-/.test(_)&&!B.test(_)&&!ne(_)){if(D[m]!==void 0){let I=D[m];p=Array.isArray(I)?I:[I]}}else{Te(F)||p.push(A(m,F,!0));for(let I=l+1;I<y.length&&!(!a["greedy-arrays"]&&p.length>0||$&&typeof $=="number"&&p.length>=$||(_=y[I],/^-/.test(_)&&!B.test(_)&&!ne(_)));I++)l=I,p.push(A(m,_,o))}return typeof $=="number"&&($&&p.length<$||isNaN($)&&p.length===0)&&(U=Error(b("Not enough arguments following: %s",m))),V(m,p),l}function V(l,m,y=o){if(/-/.test(l)&&a["camel-case-expansion"]){let _=l.split(".").map(function($){return ut($)}).join(".");j(l,_)}let F=A(l,m,y),p=l.split(".");ze(H,p,F),g.aliases[l]&&g.aliases[l].forEach(function(_){let $=_.split(".");ze(H,$,F)}),p.length>1&&a["dot-notation"]&&(g.aliases[p[0]]||[]).forEach(function(_){let $=_.split("."),I=[].concat(p);I.shift(),$=$.concat(I),(g.aliases[l]||[]).includes($.join("."))||ze(H,$,F)}),M(l,g.normalize)&&!M(l,g.arrays)&&[l].concat(g.aliases[l]||[]).forEach(function($){Object.defineProperty(He,$,{enumerable:!0,get(){return m},set(I){m=typeof I=="string"?Ue.normalize(I):I}})})}function j(l,m){g.aliases[l]&&g.aliases[l].length||(g.aliases[l]=[m],C[m]=!0),g.aliases[m]&&g.aliases[m].length||j(m,l)}function A(l,m,y){y&&(m=Na(m)),(M(l,g.bools)||M(l,g.counts))&&typeof m=="string"&&(m=m==="true");let F=Array.isArray(m)?m.map(function(p){return O(l,p)}):O(l,m);return M(l,g.counts)&&(Te(F)||typeof F=="boolean")&&(F=_s()),M(l,g.normalize)&&M(l,g.arrays)&&(Array.isArray(m)?F=m.map(p=>Ue.normalize(p)):F=Ue.normalize(m)),F}function O(l,m){return!a["parse-positional-numbers"]&&l==="_"||!M(l,g.strings)&&!M(l,g.bools)&&!Array.isArray(m)&&(yn(m)&&a["parse-numbers"]&&Number.isSafeInteger(Math.floor(parseFloat(`${m}`)))||!Te(m)&&M(l,g.numbers))&&(m=Number(m)),m}function N(l){let m=Object.create(null);X(m,g.aliases,D),Object.keys(g.configs).forEach(function(y){let F=l[y]||m[y];if(F)try{let p=null,_=Ue.resolve(Ue.cwd(),F),$=g.configs[y];if(typeof $=="function"){try{p=$(_)}catch(I){p=I}if(p instanceof Error){U=p;return}}else p=Ue.require(_);q(p)}catch(p){p.name==="PermissionDenied"?U=p:l[y]&&(U=Error(b("Invalid JSON config file: %s",F)))}})}function q(l,m){Object.keys(l).forEach(function(y){let F=l[y],p=m?m+"."+y:y;typeof F=="object"&&F!==null&&!Array.isArray(F)&&a["dot-notation"]?q(F,p):(!Le(H,p.split("."))||M(p,g.arrays)&&a["combine-arrays"])&&V(p,F)})}function le(){typeof h<"u"&&h.forEach(function(l){q(l)})}function z(l,m){if(typeof f>"u")return;let y=typeof f=="string"?f:"",F=Ue.env();Object.keys(F).forEach(function(p){if(y===""||p.lastIndexOf(y,0)===0){let _=p.split("__").map(function($,I){return I===0&&($=$.substring(y.length)),ut($)});(m&&g.configs[_.join(".")]||!m)&&!Le(l,_)&&V(_.join("."),F[p])}})}function De(l){let m,y=new Set;Object.keys(l).forEach(function(F){if(!y.has(F)&&(m=M(F,g.coercions),typeof m=="function"))try{let p=O(F,m(l[F]));[].concat(g.aliases[F]||[],F).forEach(_=>{y.add(_),l[_]=p})}catch(p){U=p}})}function st(l){return g.keys.forEach(m=>{~m.indexOf(".")||typeof l[m]>"u"&&(l[m]=void 0)}),l}function X(l,m,y,F=!1){Object.keys(y).forEach(function(p){Le(l,p.split("."))||(ze(l,p.split("."),y[p]),F&&(E[p]=!0),(m[p]||[]).forEach(function(_){Le(l,_.split("."))||ze(l,_.split("."),y[p])}))})}function Le(l,m){let y=l;a["dot-notation"]||(m=[m.join(".")]),m.slice(0,-1).forEach(function(p){y=y[p]||{}});let F=m[m.length-1];return typeof y!="object"?!1:F in y}function ze(l,m,y){let F=l;a["dot-notation"]||(m=[m.join(".")]),m.slice(0,-1).forEach(function(he){he=Yr(he),typeof F=="object"&&F[he]===void 0&&(F[he]={}),typeof F[he]!="object"||Array.isArray(F[he])?(Array.isArray(F[he])?F[he].push({}):F[he]=[F[he],{}],F=F[he][F[he].length-1]):F=F[he]});let p=Yr(m[m.length-1]),_=M(m.join("."),g.arrays),$=Array.isArray(y),I=a["duplicate-arguments-array"];!I&&M(p,g.nargs)&&(I=!0,(!Te(F[p])&&g.nargs[p]===1||Array.isArray(F[p])&&F[p].length===g.nargs[p])&&(F[p]=void 0)),y===_s()?F[p]=_s(F[p]):Array.isArray(F[p])?I&&_&&$?F[p]=a["flatten-duplicate-arrays"]?F[p].concat(y):(Array.isArray(F[p][0])?F[p]:[F[p]]).concat([y]):!I&&!!_==!!$?F[p]=y:F[p]=F[p].concat([y]):F[p]===void 0&&_?F[p]=$?y:[y]:I&&!(F[p]===void 0||M(p,g.counts)||M(p,g.bools))?F[p]=[F[p],y]:F[p]=y}function it(...l){l.forEach(function(m){Object.keys(m||{}).forEach(function(y){g.aliases[y]||(g.aliases[y]=[].concat(i[y]||[]),g.aliases[y].concat(y).forEach(function(F){if(/-/.test(F)&&a["camel-case-expansion"]){let p=ut(F);p!==y&&g.aliases[y].indexOf(p)===-1&&(g.aliases[y].push(p),C[p]=!0)}}),g.aliases[y].concat(y).forEach(function(F){if(F.length>1&&/[A-Z]/.test(F)&&a["camel-case-expansion"]){let p=bn(F,"-");p!==y&&g.aliases[y].indexOf(p)===-1&&(g.aliases[y].push(p),C[p]=!0)}}),g.aliases[y].forEach(function(F){g.aliases[F]=[y].concat(g.aliases[y].filter(function(p){return F!==p}))}))})})}function M(l,m){let y=[].concat(g.aliases[l]||[],l),F=Object.keys(m),p=y.find(_=>F.includes(_));return p?m[p]:!1}function Ln(l){let m=Object.keys(g);return[].concat(m.map(F=>g[F])).some(function(F){return Array.isArray(F)?F.includes(l):F[l]})}function P(l,...m){return[].concat(...m).some(function(F){let p=l.match(F);return p&&Ln(p[1])})}function K(l){if(l.match(B)||!l.match(/^-[^-]+/))return!1;let m=!0,y,F=l.slice(1).split("");for(let p=0;p<F.length;p++){if(y=l.slice(p+2),!Ln(F[p])){m=!1;break}if(F[p+1]&&F[p+1]==="="||y==="-"||/[A-Za-z]/.test(F[p])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(y)||F[p+1]&&F[p+1].match(/\W/))break}return m}function ne(l){return a["unknown-options-as-args"]&&k(l)}function k(l){return l=l.replace(/^-{3,}/,"--"),l.match(B)||K(l)?!1:!P(l,/^-+([^=]+?)=[\s\S]*$/,W,/^-+([^=]+?)$/,/^-+([^=]+?)-$/,/^-+([^=]+?\d+)$/,/^-+([^=]+?)\W+.*$/)}function se(l){return!M(l,g.bools)&&!M(l,g.counts)&&`${l}`in D?D[l]:oe(Me(l))}function oe(l){return{[Oe.BOOLEAN]:!0,[Oe.STRING]:"",[Oe.NUMBER]:void 0,[Oe.ARRAY]:[]}[l]}function Me(l){let m=Oe.BOOLEAN;return M(l,g.strings)?m=Oe.STRING:M(l,g.numbers)?m=Oe.NUMBER:M(l,g.bools)?m=Oe.BOOLEAN:M(l,g.arrays)&&(m=Oe.ARRAY),m}function Te(l){return l===void 0}function Yt(){Object.keys(g.counts).find(l=>M(l,g.arrays)?(U=Error(b("Invalid configuration: %s, opts.count excludes opts.array.",l)),!0):M(l,g.nargs)?(U=Error(b("Invalid configuration: %s, opts.count excludes opts.narg.",l)),!0):!1)}return{aliases:Object.assign({},g.aliases),argv:Object.assign(He,H),configuration:a,defaulted:Object.assign({},E),error:U,newAliases:Object.assign({},C)}}};function Ra(n){let e=[],t=Object.create(null),s=!0;for(Object.keys(n).forEach(function(r){e.push([].concat(n[r],r))});s;){s=!1;for(let r=0;r<e.length;r++)for(let o=r+1;o<e.length;o++)if(e[r].filter(function(a){return e[o].indexOf(a)!==-1}).length){e[r]=e[r].concat(e[o]),e.splice(o,1),s=!0;break}}return e.forEach(function(r){r=r.filter(function(i,a,D){return D.indexOf(i)===a});let o=r.pop();o!==void 0&&typeof o=="string"&&(t[o]=r)}),t}function _s(n){return n!==void 0?n+1:1}function Yr(n){return n==="__proto__"?"___proto___":n}function Na(n){return typeof n=="string"&&(n[0]==="'"||n[0]==='"')&&n[n.length-1]===n[0]?n.substring(1,n.length-1):n}var Zr=require("fs");var js,Ss,Is,Jr=process&&process.env&&process.env.YARGS_MIN_NODE_VERSION?Number(process.env.YARGS_MIN_NODE_VERSION):12,Kr=(Ss=(js=process==null?void 0:process.versions)===null||js===void 0?void 0:js.node)!==null&&Ss!==void 0?Ss:(Is=process==null?void 0:process.version)===null||Is===void 0?void 0:Is.slice(1);if(Kr&&Number(Kr.match(/^([^.]+)/)[1])<Jr)throw Error(`yargs parser supports a minimum Node.js version of ${Jr}. Read our version support policy: https://github.com/yargs/yargs-parser#supported-nodejs-versions`);var ka=process?process.env:{},Xr=new wn({cwd:process.cwd,env:()=>ka,format:Qr.format,normalize:An.normalize,resolve:An.resolve,require:n=>{if(typeof require<"u")return require(n);if(n.match(/\.json$/))return JSON.parse((0,Zr.readFileSync)(n,"utf8"));throw Error("only .json config files are supported in ESM")}}),qt=function(e,t){return Xr.parse(e.slice(),t).argv};qt.detailed=function(n,e){return Xr.parse(n.slice(),e)};qt.camelCase=ut;qt.decamelize=bn;qt.looksLikeNumber=yn;var eo=qt;var Re=require("path");function La(){return za()?0:1}function za(){return qa()&&!process.defaultApp}function qa(){return!!process.versions.electron}function to(){return process.argv[La()]}var Y=class n extends Error{constructor(e){super(e||"yargs error"),this.name="YError",Error.captureStackTrace&&Error.captureStackTrace(this,n)}};var St=require("fs"),no=require("util"),so=require("path"),io={fs:{readFileSync:St.readFileSync,writeFile:St.writeFile},format:no.format,resolve:so.resolve,exists:n=>{try{return(0,St.statSync)(n).isFile()}catch{return!1}}};var We,Ps=class{constructor(e){e=e||{},this.directory=e.directory||"./locales",this.updateFiles=typeof e.updateFiles=="boolean"?e.updateFiles:!0,this.locale=e.locale||"en",this.fallbackToLanguage=typeof e.fallbackToLanguage=="boolean"?e.fallbackToLanguage:!0,this.cache=Object.create(null),this.writeQueue=[]}__(...e){if(typeof arguments[0]!="string")return this._taggedLiteral(arguments[0],...arguments);let t=e.shift(),s=function(){};return typeof e[e.length-1]=="function"&&(s=e.pop()),s=s||function(){},this.cache[this.locale]||this._readLocaleFile(),!this.cache[this.locale][t]&&this.updateFiles?(this.cache[this.locale][t]=t,this._enqueueWrite({directory:this.directory,locale:this.locale,cb:s})):s(),We.format.apply(We.format,[this.cache[this.locale][t]||t].concat(e))}__n(){let e=Array.prototype.slice.call(arguments),t=e.shift(),s=e.shift(),r=e.shift(),o=function(){};typeof e[e.length-1]=="function"&&(o=e.pop()),this.cache[this.locale]||this._readLocaleFile();let i=r===1?t:s;this.cache[this.locale][t]&&(i=this.cache[this.locale][t][r===1?"one":"other"]),!this.cache[this.locale][t]&&this.updateFiles?(this.cache[this.locale][t]={one:t,other:s},this._enqueueWrite({directory:this.directory,locale:this.locale,cb:o})):o();let a=[i];return~i.indexOf("%d")&&a.push(r),We.format.apply(We.format,a.concat(e))}setLocale(e){this.locale=e}getLocale(){return this.locale}updateLocale(e){this.cache[this.locale]||this._readLocaleFile();for(let t in e)Object.prototype.hasOwnProperty.call(e,t)&&(this.cache[this.locale][t]=e[t])}_taggedLiteral(e,...t){let s="";return e.forEach(function(r,o){let i=t[o+1];s+=r,typeof i<"u"&&(s+="%s")}),this.__.apply(this,[s].concat([].slice.call(t,1)))}_enqueueWrite(e){this.writeQueue.push(e),this.writeQueue.length===1&&this._processWriteQueue()}_processWriteQueue(){let e=this,t=this.writeQueue[0],s=t.directory,r=t.locale,o=t.cb,i=this._resolveLocaleFile(s,r),a=JSON.stringify(this.cache[r],null,2);We.fs.writeFile(i,a,"utf-8",function(D){e.writeQueue.shift(),e.writeQueue.length>0&&e._processWriteQueue(),o(D)})}_readLocaleFile(){let e={},t=this._resolveLocaleFile(this.directory,this.locale);try{We.fs.readFileSync&&(e=JSON.parse(We.fs.readFileSync(t,"utf-8")))}catch(s){if(s instanceof SyntaxError&&(s.message="syntax error in "+t),s.code==="ENOENT")e={};else throw s}this.cache[this.locale]=e}_resolveLocaleFile(e,t){let s=We.resolve(e,"./",t+".json");if(this.fallbackToLanguage&&!this._fileExistsSync(s)&&~t.lastIndexOf("_")){let r=We.resolve(e,"./",t.split("_")[0]+".json");this._fileExistsSync(r)&&(s=r)}return s}_fileExistsSync(e){return We.exists(e)}};function ro(n,e){We=e;let t=new Ps(n);return{__:t.__.bind(t),__n:t.__n.bind(t),setLocale:t.setLocale.bind(t),getLocale:t.getLocale.bind(t),updateLocale:t.updateLocale.bind(t),locale:t.locale}}var Ua=n=>ro(n,io),oo=Ua;var Ga={},Ha="require is not supported by ESM",uo="loading a directory of commands is not supported yet for ESM",Ut;try{Ut=(0,lo.fileURLToPath)(Ga.url)}catch{Ut=process.cwd()}var Va=Ut.substring(0,Ut.lastIndexOf("node_modules")),Do={assert:{notStrictEqual:$n.notStrictEqual,strictEqual:$n.strictEqual},cliui:Os,findUp:Vr,getEnv:n=>process.env[n],inspect:ao.inspect,getCallerFile:()=>{throw new Y(uo)},getProcessArgvBin:to,mainFilename:Va||process.cwd(),Parser:eo,path:{basename:Re.basename,dirname:Re.dirname,extname:Re.extname,relative:Re.relative,resolve:Re.resolve},process:{argv:()=>process.argv,cwd:process.cwd,emitWarning:(n,e)=>process.emitWarning(n,e),execPath:()=>process.execPath,exit:process.exit,nextTick:process.nextTick,stdColumns:typeof process.stdout.columns<"u"?process.stdout.columns:null},readFileSync:co.readFileSync,require:()=>{throw new Y(Ha)},requireDirectory:()=>{throw new Y(uo)},stringWidth:n=>[...n].length,y18n:oo({directory:(0,Re.resolve)(Ut,"../../../locales"),updateFiles:!1})};function Fe(n,e,t,s){t.assert.notStrictEqual(n,e,s)}function Ms(n,e){e.assert.strictEqual(typeof n,"string")}function It(n){return Object.keys(n)}function J(n){return!!n&&!!n.then&&typeof n.then=="function"}function Ke(n){let t=n.replace(/\s{2,}/g," ").split(/\s+(?![^[]*]|[^<]*>)/),s=/\.*[\][<>]/g,r=t.shift();if(!r)throw new Error(`No command found in: ${n}`);let o={cmd:r.replace(s,""),demanded:[],optional:[]};return t.forEach((i,a)=>{let D=!1;i=i.replace(/\s/g,""),/\.+[\]>]/.test(i)&&a===t.length-1&&(D=!0),/^\[/.test(i)?o.optional.push({cmd:i.replace(s,"").split("|"),variadic:D}):o.demanded.push({cmd:i.replace(s,"").split("|"),variadic:D})}),o}var Ya=["first","second","third","fourth","fifth","sixth"];function x(n,e,t){function s(){return typeof n=="object"?[{demanded:[],optional:[]},n,e]:[Ke(`cmd ${n}`),e,t]}try{let r=0,[o,i,a]=s(),D=[].slice.call(i);for(;D.length&&D[D.length-1]===void 0;)D.pop();let h=a||D.length;if(h<o.demanded.length)throw new Y(`Not enough arguments provided. Expected ${o.demanded.length} but received ${D.length}.`);let f=o.demanded.length+o.optional.length;if(h>f)throw new Y(`Too many arguments provided. Expected max ${f} but received ${h}.`);o.demanded.forEach(c=>{let d=D.shift(),C=ho(d);c.cmd.filter(b=>b===C||b==="*").length===0&&fo(C,c.cmd,r),r+=1}),o.optional.forEach(c=>{if(D.length===0)return;let d=D.shift(),C=ho(d);c.cmd.filter(b=>b===C||b==="*").length===0&&fo(C,c.cmd,r),r+=1})}catch(r){console.warn(r.stack)}}function ho(n){return Array.isArray(n)?"array":n===null?"null":typeof n}function fo(n,e,t){throw new Y(`Invalid ${Ya[t]||"manyith"} argument. Expected ${e.join(" or ")} but received ${n}.`)}var xn=class{constructor(e){this.globalMiddleware=[],this.frozens=[],this.yargs=e}addMiddleware(e,t,s=!0,r=!1){if(x("<array|function> [boolean] [boolean] [boolean]",[e,t,s],arguments.length),Array.isArray(e)){for(let o=0;o<e.length;o++){if(typeof e[o]!="function")throw Error("middleware must be a function");let i=e[o];i.applyBeforeValidation=t,i.global=s}Array.prototype.push.apply(this.globalMiddleware,e)}else if(typeof e=="function"){let o=e;o.applyBeforeValidation=t,o.global=s,o.mutates=r,this.globalMiddleware.push(e)}return this.yargs}addCoerceMiddleware(e,t){let s=this.yargs.getAliases();return this.globalMiddleware=this.globalMiddleware.filter(r=>{let o=[...s[t]||[],t];return r.option?!o.includes(r.option):!0}),e.option=t,this.addMiddleware(e,!0,!0,!0)}getMiddleware(){return this.globalMiddleware}freeze(){this.frozens.push([...this.globalMiddleware])}unfreeze(){let e=this.frozens.pop();e!==void 0&&(this.globalMiddleware=e)}reset(){this.globalMiddleware=this.globalMiddleware.filter(e=>e.global)}};function po(n){return n?n.map(e=>(e.applyBeforeValidation=!1,e)):[]}function at(n,e,t,s){return t.reduce((r,o)=>{if(o.applyBeforeValidation!==s)return r;if(o.mutates){if(o.applied)return r;o.applied=!0}if(J(r))return r.then(i=>Promise.all([i,o(i,e)])).then(([i,a])=>Object.assign(i,a));{let i=o(r,e);return J(i)?i.then(a=>Object.assign(r,a)):Object.assign(r,i)}},n)}function ct(n,e,t=s=>{throw s}){try{let s=Ja(n)?n():n;return J(s)?s.then(r=>e(r)):e(s)}catch(s){return t(s)}}function Ja(n){return typeof n=="function"}function Ts(n){if(typeof require>"u")return null;for(let e=0,t=Object.keys(require.cache),s;e<t.length;e++)if(s=require.cache[t[e]],s.exports===n)return s;return null}var Pt=/(^\*)|(^\$0)/,Ws=class{constructor(e,t,s,r){this.requireCache=new Set,this.handlers={},this.aliasMap={},this.frozens=[],this.shim=r,this.usage=e,this.globalMiddleware=s,this.validation=t}addDirectory(e,t,s,r){r=r||{},typeof r.recurse!="boolean"&&(r.recurse=!1),Array.isArray(r.extensions)||(r.extensions=["js"]);let o=typeof r.visit=="function"?r.visit:i=>i;r.visit=(i,a,D)=>{let h=o(i,a,D);if(h){if(this.requireCache.has(a))return h;this.requireCache.add(a),this.addHandler(h)}return h},this.shim.requireDirectory({require:t,filename:s},e,r)}addHandler(e,t,s,r,o,i){let a=[],D=po(o);if(r=r||(()=>{}),Array.isArray(e))if(Ka(e))[e,...a]=e;else for(let h of e)this.addHandler(h);else if(Za(e)){let h=Array.isArray(e.command)||typeof e.command=="string"?e.command:this.moduleName(e);e.aliases&&(h=[].concat(h).concat(e.aliases)),this.addHandler(h,this.extractDesc(e),e.builder,e.handler,e.middlewares,e.deprecated);return}else if(mo(s)){this.addHandler([e].concat(a),t,s.builder,s.handler,s.middlewares,s.deprecated);return}if(typeof e=="string"){let h=Ke(e);a=a.map(d=>Ke(d).cmd);let f=!1,c=[h.cmd].concat(a).filter(d=>Pt.test(d)?(f=!0,!1):!0);c.length===0&&f&&c.push("$0"),f&&(h.cmd=c[0],a=c.slice(1),e=e.replace(Pt,h.cmd)),a.forEach(d=>{this.aliasMap[d]=h.cmd}),t!==!1&&this.usage.command(e,t,f,a,i),this.handlers[h.cmd]={original:e,description:t,handler:r,builder:s||{},middlewares:D,deprecated:i,demanded:h.demanded,optional:h.optional},f&&(this.defaultCommand=this.handlers[h.cmd])}}getCommandHandlers(){return this.handlers}getCommands(){return Object.keys(this.handlers).concat(Object.keys(this.aliasMap))}hasDefaultCommand(){return!!this.defaultCommand}runCommand(e,t,s,r,o,i){let a=this.handlers[e]||this.handlers[this.aliasMap[e]]||this.defaultCommand,D=t.getInternalMethods().getContext(),h=D.commands.slice(),f=!e;e&&(D.commands.push(e),D.fullCommands.push(a.original));let c=this.applyBuilderUpdateUsageAndParse(f,a,t,s.aliases,h,r,o,i);return J(c)?c.then(d=>this.applyMiddlewareAndGetResult(f,a,d.innerArgv,D,o,d.aliases,t)):this.applyMiddlewareAndGetResult(f,a,c.innerArgv,D,o,c.aliases,t)}applyBuilderUpdateUsageAndParse(e,t,s,r,o,i,a,D){let h=t.builder,f=s;if(vn(h)){s.getInternalMethods().getUsageInstance().freeze();let c=h(s.getInternalMethods().reset(r),D);if(J(c))return c.then(d=>(f=Co(d)?d:s,this.parseAndUpdateUsage(e,t,f,o,i,a)))}else Qa(h)&&(s.getInternalMethods().getUsageInstance().freeze(),f=s.getInternalMethods().reset(r),Object.keys(t.builder).forEach(c=>{f.option(c,h[c])}));return this.parseAndUpdateUsage(e,t,f,o,i,a)}parseAndUpdateUsage(e,t,s,r,o,i){e&&s.getInternalMethods().getUsageInstance().unfreeze(!0),this.shouldUpdateUsage(s)&&s.getInternalMethods().getUsageInstance().usage(this.usageFromParentCommandsCommandHandler(r,t),t.description);let a=s.getInternalMethods().runYargsParserAndExecuteCommands(null,void 0,!0,o,i);return J(a)?a.then(D=>({aliases:s.parsed.aliases,innerArgv:D})):{aliases:s.parsed.aliases,innerArgv:a}}shouldUpdateUsage(e){return!e.getInternalMethods().getUsageInstance().getUsageDisabled()&&e.getInternalMethods().getUsageInstance().getUsage().length===0}usageFromParentCommandsCommandHandler(e,t){let s=Pt.test(t.original)?t.original.replace(Pt,"").trim():t.original,r=e.filter(o=>!Pt.test(o));return r.push(s),`$0 ${r.join(" ")}`}handleValidationAndGetResult(e,t,s,r,o,i,a,D){if(!i.getInternalMethods().getHasOutput()){let h=i.getInternalMethods().runValidation(o,D,i.parsed.error,e);s=ct(s,f=>(h(f),f))}if(t.handler&&!i.getInternalMethods().getHasOutput()){i.getInternalMethods().setHasOutput();let h=!!i.getOptions().configuration["populate--"];i.getInternalMethods().postProcess(s,h,!1,!1),s=at(s,i,a,!1),s=ct(s,f=>{let c=t.handler(f);return J(c)?c.then(()=>f):f}),e||i.getInternalMethods().getUsageInstance().cacheHelpMessage(),J(s)&&!i.getInternalMethods().hasParseCallback()&&s.catch(f=>{try{i.getInternalMethods().getUsageInstance().fail(null,f)}catch{}})}return e||(r.commands.pop(),r.fullCommands.pop()),s}applyMiddlewareAndGetResult(e,t,s,r,o,i,a){let D={};if(o)return s;a.getInternalMethods().getHasOutput()||(D=this.populatePositionals(t,s,r,a));let h=this.globalMiddleware.getMiddleware().slice(0).concat(t.middlewares),f=at(s,a,h,!0);return J(f)?f.then(c=>this.handleValidationAndGetResult(e,t,c,r,i,a,h,D)):this.handleValidationAndGetResult(e,t,f,r,i,a,h,D)}populatePositionals(e,t,s,r){t._=t._.slice(s.commands.length);let o=e.demanded.slice(0),i=e.optional.slice(0),a={};for(this.validation.positionalCount(o.length,t._.length);o.length;){let D=o.shift();this.populatePositional(D,t,a)}for(;i.length;){let D=i.shift();this.populatePositional(D,t,a)}return t._=s.commands.concat(t._.map(D=>""+D)),this.postProcessPositionals(t,a,this.cmdToParseOptions(e.original),r),a}populatePositional(e,t,s){let r=e.cmd[0];e.variadic?s[r]=t._.splice(0).map(String):t._.length&&(s[r]=[String(t._.shift())])}cmdToParseOptions(e){let t={array:[],default:{},alias:{},demand:{}},s=Ke(e);return s.demanded.forEach(r=>{let[o,...i]=r.cmd;r.variadic&&(t.array.push(o),t.default[o]=[]),t.alias[o]=i,t.demand[o]=!0}),s.optional.forEach(r=>{let[o,...i]=r.cmd;r.variadic&&(t.array.push(o),t.default[o]=[]),t.alias[o]=i}),t}postProcessPositionals(e,t,s,r){let o=Object.assign({},r.getOptions());o.default=Object.assign(s.default,o.default);for(let h of Object.keys(s.alias))o.alias[h]=(o.alias[h]||[]).concat(s.alias[h]);o.array=o.array.concat(s.array),o.config={};let i=[];if(Object.keys(t).forEach(h=>{t[h].map(f=>{o.configuration["unknown-options-as-args"]&&(o.key[h]=!0),i.push(`--${h}`),i.push(f)})}),!i.length)return;let a=Object.assign({},o.configuration,{"populate--":!1}),D=this.shim.Parser.detailed(i,Object.assign({},o,{configuration:a}));if(D.error)r.getInternalMethods().getUsageInstance().fail(D.error.message,D.error);else{let h=Object.keys(t);Object.keys(t).forEach(f=>{h.push(...D.aliases[f])}),Object.keys(D.argv).forEach(f=>{h.includes(f)&&(t[f]||(t[f]=D.argv[f]),!this.isInConfigs(r,f)&&!this.isDefaulted(r,f)&&Object.prototype.hasOwnProperty.call(e,f)&&Object.prototype.hasOwnProperty.call(D.argv,f)&&(Array.isArray(e[f])||Array.isArray(D.argv[f]))?e[f]=[].concat(e[f],D.argv[f]):e[f]=D.argv[f])})}}isDefaulted(e,t){let{default:s}=e.getOptions();return Object.prototype.hasOwnProperty.call(s,t)||Object.prototype.hasOwnProperty.call(s,this.shim.Parser.camelCase(t))}isInConfigs(e,t){let{configObjects:s}=e.getOptions();return s.some(r=>Object.prototype.hasOwnProperty.call(r,t))||s.some(r=>Object.prototype.hasOwnProperty.call(r,this.shim.Parser.camelCase(t)))}runDefaultBuilderOn(e){if(!this.defaultCommand)return;if(this.shouldUpdateUsage(e)){let s=Pt.test(this.defaultCommand.original)?this.defaultCommand.original:this.defaultCommand.original.replace(/^[^[\]<>]*/,"$0 ");e.getInternalMethods().getUsageInstance().usage(s,this.defaultCommand.description)}let t=this.defaultCommand.builder;if(vn(t))return t(e,!0);mo(t)||Object.keys(t).forEach(s=>{e.option(s,t[s])})}moduleName(e){let t=Ts(e);if(!t)throw new Error(`No command name given for module: ${this.shim.inspect(e)}`);return this.commandFromFilename(t.filename)}commandFromFilename(e){return this.shim.path.basename(e,this.shim.path.extname(e))}extractDesc({describe:e,description:t,desc:s}){for(let r of[e,t,s]){if(typeof r=="string"||r===!1)return r;Fe(r,!0,this.shim)}return!1}freeze(){this.frozens.push({handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand})}unfreeze(){let e=this.frozens.pop();Fe(e,void 0,this.shim),{handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand}=e}reset(){return this.handlers={},this.aliasMap={},this.defaultCommand=void 0,this.requireCache=new Set,this}};function go(n,e,t,s){return new Ws(n,e,t,s)}function mo(n){return typeof n=="object"&&!!n.builder&&typeof n.handler=="function"}function Ka(n){return n.every(e=>typeof e=="string")}function vn(n){return typeof n=="function"}function Qa(n){return typeof n=="object"}function Za(n){return typeof n=="object"&&!Array.isArray(n)}function Qe(n={},e=()=>!0){let t={};return It(n).forEach(s=>{e(s,n[s])&&(t[s]=n[s])}),t}function Ze(n){typeof process>"u"||[process.stdout,process.stderr].forEach(e=>{let t=e;t._handle&&t.isTTY&&typeof t._handle.setBlocking=="function"&&t._handle.setBlocking(n)})}function Xa(n){return typeof n=="boolean"}function Eo(n,e){let t=e.y18n.__,s={},r=[];s.failFn=function(A){r.push(A)};let o=null,i=null,a=!0;s.showHelpOnFail=function(A=!0,O){let[N,q]=typeof A=="string"?[!0,A]:[A,O];return n.getInternalMethods().isGlobalContext()&&(i=q),o=q,a=N,s};let D=!1;s.fail=function(A,O){let N=n.getInternalMethods().getLoggerInstance();if(r.length)for(let q=r.length-1;q>=0;--q){let le=r[q];if(Xa(le)){if(O)throw O;if(A)throw Error(A)}else le(A,O,s)}else{if(n.getExitProcess()&&Ze(!0),!D){D=!0,a&&(n.showHelp("error"),N.error()),(A||O)&&N.error(A||O);let q=o||i;q&&((A||O)&&N.error(""),N.error(q))}if(O=O||new Y(A),n.getExitProcess())return n.exit(1);if(n.getInternalMethods().hasParseCallback())return n.exit(1,O);throw O}};let h=[],f=!1;s.usage=(j,A)=>j===null?(f=!0,h=[],s):(f=!1,h.push([j,A||""]),s),s.getUsage=()=>h,s.getUsageDisabled=()=>f,s.getPositionalGroupName=()=>t("Positionals:");let c=[];s.example=(j,A)=>{c.push([j,A||""])};let d=[];s.command=function(A,O,N,q,le=!1){N&&(d=d.map(z=>(z[2]=!1,z))),d.push([A,O||"",N,q,le])},s.getCommands=()=>d;let C={};s.describe=function(A,O){Array.isArray(A)?A.forEach(N=>{s.describe(N,O)}):typeof A=="object"?Object.keys(A).forEach(N=>{s.describe(N,A[N])}):C[A]=O},s.getDescriptions=()=>C;let E=[];s.epilog=j=>{E.push(j)};let b=!1,g;s.wrap=j=>{b=!0,g=j},s.getWrap=()=>e.getEnv("YARGS_DISABLE_WRAP")?null:(b||(g=Et(),b=!0),g);let B="__yargsString__:";s.deferY18nLookup=j=>B+j,s.help=function(){if(L)return L;U();let A=n.customScriptName?n.$0:e.path.basename(n.$0),O=n.getDemandedOptions(),N=n.getDemandedCommands(),q=n.getDeprecatedOptions(),le=n.getGroups(),z=n.getOptions(),De=[];De=De.concat(Object.keys(C)),De=De.concat(Object.keys(O)),De=De.concat(Object.keys(N)),De=De.concat(Object.keys(z.default)),De=De.filter(He),De=Object.keys(De.reduce((P,K)=>(K!=="_"&&(P[K]=!0),P),{}));let st=s.getWrap(),X=e.cliui({width:st,wrap:!!st});if(!f){if(h.length)h.forEach(P=>{X.div({text:`${P[0].replace(/\$0/g,A)}`}),P[1]&&X.div({text:`${P[1]}`,padding:[1,0,0,0]})}),X.div();else if(d.length){let P=null;N._?P=`${A} <${t("command")}>
106
- `:P=`${A} [${t("command")}]
107
- `,X.div(`${P}`)}}if(d.length>1||d.length===1&&!d[0][2]){X.div(t("Commands:"));let P=n.getInternalMethods().getContext(),K=P.commands.length?`${P.commands.join(" ")} `:"";n.getInternalMethods().getParserConfiguration()["sort-commands"]===!0&&(d=d.sort((k,se)=>k[0].localeCompare(se[0])));let ne=A?`${A} `:"";d.forEach(k=>{let se=`${ne}${K}${k[0].replace(/^\$0 ?/,"")}`;X.span({text:se,padding:[0,2,0,2],width:W(d,st,`${A}${K}`)+4},{text:k[1]});let oe=[];k[2]&&oe.push(`[${t("default")}]`),k[3]&&k[3].length&&oe.push(`[${t("aliases:")} ${k[3].join(", ")}]`),k[4]&&(typeof k[4]=="string"?oe.push(`[${t("deprecated: %s",k[4])}]`):oe.push(`[${t("deprecated")}]`)),oe.length?X.div({text:oe.join(" "),padding:[0,0,0,2],align:"right"}):X.div()}),X.div()}let Le=(Object.keys(z.alias)||[]).concat(Object.keys(n.parsed.newAliases)||[]);De=De.filter(P=>!n.parsed.newAliases[P]&&Le.every(K=>(z.alias[K]||[]).indexOf(P)===-1));let ze=t("Options:");le[ze]||(le[ze]=[]),H(De,z.alias,le,ze);let it=P=>/^--/.test(Bn(P)),M=Object.keys(le).filter(P=>le[P].length>0).map(P=>{let K=le[P].filter(He).map(ne=>{if(Le.includes(ne))return ne;for(let k=0,se;(se=Le[k])!==void 0;k++)if((z.alias[se]||[]).includes(ne))return se;return ne});return{groupName:P,normalizedKeys:K}}).filter(({normalizedKeys:P})=>P.length>0).map(({groupName:P,normalizedKeys:K})=>{let ne=K.reduce((k,se)=>(k[se]=[se].concat(z.alias[se]||[]).map(oe=>P===s.getPositionalGroupName()?oe:(/^[0-9]$/.test(oe)?z.boolean.includes(se)?"-":"--":oe.length>1?"--":"-")+oe).sort((oe,Me)=>it(oe)===it(Me)?0:it(oe)?1:-1).join(", "),k),{});return{groupName:P,normalizedKeys:K,switches:ne}});if(M.filter(({groupName:P})=>P!==s.getPositionalGroupName()).some(({normalizedKeys:P,switches:K})=>!P.every(ne=>it(K[ne])))&&M.filter(({groupName:P})=>P!==s.getPositionalGroupName()).forEach(({normalizedKeys:P,switches:K})=>{P.forEach(ne=>{it(K[ne])&&(K[ne]=ec(K[ne],4))})}),M.forEach(({groupName:P,normalizedKeys:K,switches:ne})=>{X.div(P),K.forEach(k=>{let se=ne[k],oe=C[k]||"",Me=null;oe.includes(B)&&(oe=t(oe.substring(B.length))),z.boolean.includes(k)&&(Me=`[${t("boolean")}]`),z.count.includes(k)&&(Me=`[${t("count")}]`),z.string.includes(k)&&(Me=`[${t("string")}]`),z.normalize.includes(k)&&(Me=`[${t("string")}]`),z.array.includes(k)&&(Me=`[${t("array")}]`),z.number.includes(k)&&(Me=`[${t("number")}]`);let Te=m=>typeof m=="string"?`[${t("deprecated: %s",m)}]`:`[${t("deprecated")}]`,Yt=[k in q?Te(q[k]):null,Me,k in O?`[${t("required")}]`:null,z.choices&&z.choices[k]?`[${t("choices:")} ${s.stringifiedValues(z.choices[k])}]`:null,Pe(z.default[k],z.defaultDescription[k])].filter(Boolean).join(" ");X.span({text:Bn(se),padding:[0,2,0,2+Fo(se)],width:W(ne,st)+4},oe);let l=n.getInternalMethods().getUsageConfiguration()["hide-types"]===!0;Yt&&!l?X.div({text:Yt,padding:[0,0,0,2],align:"right"}):X.div()}),X.div()}),c.length&&(X.div(t("Examples:")),c.forEach(P=>{P[0]=P[0].replace(/\$0/g,A)}),c.forEach(P=>{P[1]===""?X.div({text:P[0],padding:[0,2,0,2]}):X.div({text:P[0],padding:[0,2,0,2],width:W(c,st)+4},{text:P[1]})}),X.div()),E.length>0){let P=E.map(K=>K.replace(/\$0/g,A)).join(`
108
- `);X.div(`${P}
109
- `)}return X.toString().replace(/\s*$/,"")};function W(j,A,O){let N=0;return Array.isArray(j)||(j=Object.values(j).map(q=>[q])),j.forEach(q=>{N=Math.max(e.stringWidth(O?`${O} ${Bn(q[0])}`:Bn(q[0]))+Fo(q[0]),N)}),A&&(N=Math.min(N,parseInt((A*.5).toString(),10))),N}function U(){let j=n.getDemandedOptions(),A=n.getOptions();(Object.keys(A.alias)||[]).forEach(O=>{A.alias[O].forEach(N=>{C[N]&&s.describe(O,C[N]),N in j&&n.demandOption(O,j[N]),A.boolean.includes(N)&&n.boolean(O),A.count.includes(N)&&n.count(O),A.string.includes(N)&&n.string(O),A.normalize.includes(N)&&n.normalize(O),A.array.includes(N)&&n.array(O),A.number.includes(N)&&n.number(O)})})}let L;s.cacheHelpMessage=function(){L=this.help()},s.clearCachedHelpMessage=function(){L=void 0},s.hasCachedHelpMessage=function(){return!!L};function H(j,A,O,N){let q=[],le=null;return Object.keys(O).forEach(z=>{q=q.concat(O[z])}),j.forEach(z=>{le=[z].concat(A[z]),le.some(De=>q.indexOf(De)!==-1)||O[N].push(z)}),q}function He(j){return n.getOptions().hiddenOptions.indexOf(j)<0||n.parsed.argv[n.getOptions().showHiddenOpt]}s.showHelp=j=>{let A=n.getInternalMethods().getLoggerInstance();j||(j="error"),(typeof j=="function"?j:A[j])(s.help())},s.functionDescription=j=>["(",j.name?e.Parser.decamelize(j.name,"-"):t("generated-value"),")"].join(""),s.stringifiedValues=function(A,O){let N="",q=O||", ",le=[].concat(A);return!A||!le.length||le.forEach(z=>{N.length&&(N+=q),N+=JSON.stringify(z)}),N};function Pe(j,A){let O=`[${t("default:")} `;if(j===void 0&&!A)return null;if(A)O+=A;else switch(typeof j){case"string":O+=`"${j}"`;break;case"object":O+=JSON.stringify(j);break;default:O+=j}return`${O}]`}function Et(){return e.process.stdColumns?Math.min(80,e.process.stdColumns):80}let nt=null;s.version=j=>{nt=j},s.showVersion=j=>{let A=n.getInternalMethods().getLoggerInstance();j||(j="error"),(typeof j=="function"?j:A[j])(nt)},s.reset=function(A){return o=null,D=!1,h=[],f=!1,E=[],c=[],d=[],C=Qe(C,O=>!A[O]),s};let V=[];return s.freeze=function(){V.push({failMessage:o,failureOutput:D,usages:h,usageDisabled:f,epilogs:E,examples:c,commands:d,descriptions:C})},s.unfreeze=function(A=!1){let O=V.pop();O&&(A?(C={...O.descriptions,...C},d=[...O.commands,...d],h=[...O.usages,...h],c=[...O.examples,...c],E=[...O.epilogs,...E]):{failMessage:o,failureOutput:D,usages:h,usageDisabled:f,epilogs:E,examples:c,commands:d,descriptions:C}=O)},s}function Rs(n){return typeof n=="object"}function ec(n,e){return Rs(n)?{text:n.text,indentation:n.indentation+e}:{text:n,indentation:e}}function Fo(n){return Rs(n)?n.indentation:0}function Bn(n){return Rs(n)?n.text:n}var bo=`###-begin-{{app_name}}-completions-###
110
- #
111
- # yargs command completion script
112
- #
113
- # Installation: {{app_path}} {{completion_command}} >> ~/.bashrc
114
- # or {{app_path}} {{completion_command}} >> ~/.bash_profile on OSX.
115
- #
116
- _{{app_name}}_yargs_completions()
117
- {
118
- local cur_word args type_list
119
-
120
- cur_word="\${COMP_WORDS[COMP_CWORD]}"
121
- args=("\${COMP_WORDS[@]}")
122
-
123
- # ask yargs to generate completions.
124
- type_list=$({{app_path}} --get-yargs-completions "\${args[@]}")
125
-
126
- COMPREPLY=( $(compgen -W "\${type_list}" -- \${cur_word}) )
127
-
128
- # if no match was found, fall back to filename completion
129
- if [ \${#COMPREPLY[@]} -eq 0 ]; then
130
- COMPREPLY=()
131
- fi
132
-
133
- return 0
134
- }
135
- complete -o bashdefault -o default -F _{{app_name}}_yargs_completions {{app_name}}
136
- ###-end-{{app_name}}-completions-###
137
- `,yo=`#compdef {{app_name}}
138
- ###-begin-{{app_name}}-completions-###
139
- #
140
- # yargs command completion script
141
- #
142
- # Installation: {{app_path}} {{completion_command}} >> ~/.zshrc
143
- # or {{app_path}} {{completion_command}} >> ~/.zprofile on OSX.
144
- #
145
- _{{app_name}}_yargs_completions()
146
- {
147
- local reply
148
- local si=$IFS
149
- IFS=$'
150
- ' reply=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" {{app_path}} --get-yargs-completions "\${words[@]}"))
151
- IFS=$si
152
- _describe 'values' reply
153
- }
154
- compdef _{{app_name}}_yargs_completions {{app_name}}
155
- ###-end-{{app_name}}-completions-###
156
- `;var Ns=class{constructor(e,t,s,r){var o,i,a;this.yargs=e,this.usage=t,this.command=s,this.shim=r,this.completionKey="get-yargs-completions",this.aliases=null,this.customCompletionFunction=null,this.indexAfterLastReset=0,this.zshShell=(a=((o=this.shim.getEnv("SHELL"))===null||o===void 0?void 0:o.includes("zsh"))||((i=this.shim.getEnv("ZSH_NAME"))===null||i===void 0?void 0:i.includes("zsh")))!==null&&a!==void 0?a:!1}defaultCompletion(e,t,s,r){let o=this.command.getCommandHandlers();for(let a=0,D=e.length;a<D;++a)if(o[e[a]]&&o[e[a]].builder){let h=o[e[a]].builder;if(vn(h)){this.indexAfterLastReset=a+1;let f=this.yargs.getInternalMethods().reset();return h(f,!0),f.argv}}let i=[];this.commandCompletions(i,e,s),this.optionCompletions(i,e,t,s),this.choicesFromOptionsCompletions(i,e,t,s),this.choicesFromPositionalsCompletions(i,e,t,s),r(null,i)}commandCompletions(e,t,s){let r=this.yargs.getInternalMethods().getContext().commands;!s.match(/^-/)&&r[r.length-1]!==s&&!this.previousArgHasChoices(t)&&this.usage.getCommands().forEach(o=>{let i=Ke(o[0]).cmd;if(t.indexOf(i)===-1)if(!this.zshShell)e.push(i);else{let a=o[1]||"";e.push(i.replace(/:/g,"\\:")+":"+a)}})}optionCompletions(e,t,s,r){if((r.match(/^-/)||r===""&&e.length===0)&&!this.previousArgHasChoices(t)){let o=this.yargs.getOptions(),i=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[];Object.keys(o.key).forEach(a=>{let D=!!o.configuration["boolean-negation"]&&o.boolean.includes(a);!i.includes(a)&&!o.hiddenOptions.includes(a)&&!this.argsContainKey(t,a,D)&&this.completeOptionKey(a,e,r,D&&!!o.default[a])})}}choicesFromOptionsCompletions(e,t,s,r){if(this.previousArgHasChoices(t)){let o=this.getPreviousArgChoices(t);o&&o.length>0&&e.push(...o.map(i=>i.replace(/:/g,"\\:")))}}choicesFromPositionalsCompletions(e,t,s,r){if(r===""&&e.length>0&&this.previousArgHasChoices(t))return;let o=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[],i=Math.max(this.indexAfterLastReset,this.yargs.getInternalMethods().getContext().commands.length+1),a=o[s._.length-i-1];if(!a)return;let D=this.yargs.getOptions().choices[a]||[];for(let h of D)h.startsWith(r)&&e.push(h.replace(/:/g,"\\:"))}getPreviousArgChoices(e){if(e.length<1)return;let t=e[e.length-1],s="";if(!t.startsWith("-")&&e.length>1&&(s=t,t=e[e.length-2]),!t.startsWith("-"))return;let r=t.replace(/^-+/,""),o=this.yargs.getOptions(),i=[r,...this.yargs.getAliases()[r]||[]],a;for(let D of i)if(Object.prototype.hasOwnProperty.call(o.key,D)&&Array.isArray(o.choices[D])){a=o.choices[D];break}if(a)return a.filter(D=>!s||D.startsWith(s))}previousArgHasChoices(e){let t=this.getPreviousArgChoices(e);return t!==void 0&&t.length>0}argsContainKey(e,t,s){let r=o=>e.indexOf((/^[^0-9]$/.test(o)?"-":"--")+o)!==-1;if(r(t)||s&&r(`no-${t}`))return!0;if(this.aliases){for(let o of this.aliases[t])if(r(o))return!0}return!1}completeOptionKey(e,t,s,r){var o,i,a,D;let h=e;if(this.zshShell){let C=this.usage.getDescriptions(),E=(i=(o=this===null||this===void 0?void 0:this.aliases)===null||o===void 0?void 0:o[e])===null||i===void 0?void 0:i.find(B=>{let W=C[B];return typeof W=="string"&&W.length>0}),b=E?C[E]:void 0,g=(D=(a=C[e])!==null&&a!==void 0?a:b)!==null&&D!==void 0?D:"";h=`${e.replace(/:/g,"\\:")}:${g.replace("__yargsString__:","").replace(/(\r\n|\n|\r)/gm," ")}`}let f=C=>/^--/.test(C),c=C=>/^[^0-9]$/.test(C),d=!f(s)&&c(e)?"-":"--";t.push(d+h),r&&t.push(d+"no-"+h)}customCompletion(e,t,s,r){if(Fe(this.customCompletionFunction,null,this.shim),nc(this.customCompletionFunction)){let o=this.customCompletionFunction(s,t);return J(o)?o.then(i=>{this.shim.process.nextTick(()=>{r(null,i)})}).catch(i=>{this.shim.process.nextTick(()=>{r(i,void 0)})}):r(null,o)}else return sc(this.customCompletionFunction)?this.customCompletionFunction(s,t,(o=r)=>this.defaultCompletion(e,t,s,o),o=>{r(null,o)}):this.customCompletionFunction(s,t,o=>{r(null,o)})}getCompletion(e,t){let s=e.length?e[e.length-1]:"",r=this.yargs.parse(e,!0),o=this.customCompletionFunction?i=>this.customCompletion(e,i,s,t):i=>this.defaultCompletion(e,i,s,t);return J(r)?r.then(o):o(r)}generateCompletionScript(e,t){let s=this.zshShell?yo:bo,r=this.shim.path.basename(e);return e.match(/\.js$/)&&(e=`./${e}`),s=s.replace(/{{app_name}}/g,r),s=s.replace(/{{completion_command}}/g,t),s.replace(/{{app_path}}/g,e)}registerFunction(e){this.customCompletionFunction=e}setParsed(e){this.aliases=e.aliases}};function wo(n,e,t,s){return new Ns(n,e,t,s)}function nc(n){return n.length<3}function sc(n){return n.length>3}function Ao(n,e){if(n.length===0)return e.length;if(e.length===0)return n.length;let t=[],s;for(s=0;s<=e.length;s++)t[s]=[s];let r;for(r=0;r<=n.length;r++)t[0][r]=r;for(s=1;s<=e.length;s++)for(r=1;r<=n.length;r++)e.charAt(s-1)===n.charAt(r-1)?t[s][r]=t[s-1][r-1]:s>1&&r>1&&e.charAt(s-2)===n.charAt(r-1)&&e.charAt(s-1)===n.charAt(r-2)?t[s][r]=t[s-2][r-2]+1:t[s][r]=Math.min(t[s-1][r-1]+1,Math.min(t[s][r-1]+1,t[s-1][r]+1));return t[e.length][n.length]}var $o=["$0","--","_"];function xo(n,e,t){let s=t.y18n.__,r=t.y18n.__n,o={};o.nonOptionCount=function(c){let d=n.getDemandedCommands(),E=c._.length+(c["--"]?c["--"].length:0)-n.getInternalMethods().getContext().commands.length;d._&&(E<d._.min||E>d._.max)&&(E<d._.min?d._.minMsg!==void 0?e.fail(d._.minMsg?d._.minMsg.replace(/\$0/g,E.toString()).replace(/\$1/,d._.min.toString()):null):e.fail(r("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",E,E.toString(),d._.min.toString())):E>d._.max&&(d._.maxMsg!==void 0?e.fail(d._.maxMsg?d._.maxMsg.replace(/\$0/g,E.toString()).replace(/\$1/,d._.max.toString()):null):e.fail(r("Too many non-option arguments: got %s, maximum of %s","Too many non-option arguments: got %s, maximum of %s",E,E.toString(),d._.max.toString()))))},o.positionalCount=function(c,d){d<c&&e.fail(r("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",d,d+"",c+""))},o.requiredArguments=function(c,d){let C=null;for(let E of Object.keys(d))(!Object.prototype.hasOwnProperty.call(c,E)||typeof c[E]>"u")&&(C=C||{},C[E]=d[E]);if(C){let E=[];for(let g of Object.keys(C)){let B=C[g];B&&E.indexOf(B)<0&&E.push(B)}let b=E.length?`
157
- ${E.join(`
158
- `)}`:"";e.fail(r("Missing required argument: %s","Missing required arguments: %s",Object.keys(C).length,Object.keys(C).join(", ")+b))}},o.unknownArguments=function(c,d,C,E,b=!0){var g;let B=n.getInternalMethods().getCommandInstance().getCommands(),W=[],U=n.getInternalMethods().getContext();if(Object.keys(c).forEach(L=>{!$o.includes(L)&&!Object.prototype.hasOwnProperty.call(C,L)&&!Object.prototype.hasOwnProperty.call(n.getInternalMethods().getParseContext(),L)&&!o.isValidAndSomeAliasIsNotNew(L,d)&&W.push(L)}),b&&(U.commands.length>0||B.length>0||E)&&c._.slice(U.commands.length).forEach(L=>{B.includes(""+L)||W.push(""+L)}),b){let H=((g=n.getDemandedCommands()._)===null||g===void 0?void 0:g.max)||0,He=U.commands.length+H;He<c._.length&&c._.slice(He).forEach(Pe=>{Pe=String(Pe),!U.commands.includes(Pe)&&!W.includes(Pe)&&W.push(Pe)})}W.length&&e.fail(r("Unknown argument: %s","Unknown arguments: %s",W.length,W.map(L=>L.trim()?L:`"${L}"`).join(", ")))},o.unknownCommands=function(c){let d=n.getInternalMethods().getCommandInstance().getCommands(),C=[],E=n.getInternalMethods().getContext();return(E.commands.length>0||d.length>0)&&c._.slice(E.commands.length).forEach(b=>{d.includes(""+b)||C.push(""+b)}),C.length>0?(e.fail(r("Unknown command: %s","Unknown commands: %s",C.length,C.join(", "))),!0):!1},o.isValidAndSomeAliasIsNotNew=function(c,d){if(!Object.prototype.hasOwnProperty.call(d,c))return!1;let C=n.parsed.newAliases;return[c,...d[c]].some(E=>!Object.prototype.hasOwnProperty.call(C,E)||!C[c])},o.limitedChoices=function(c){let d=n.getOptions(),C={};if(!Object.keys(d.choices).length)return;Object.keys(c).forEach(g=>{$o.indexOf(g)===-1&&Object.prototype.hasOwnProperty.call(d.choices,g)&&[].concat(c[g]).forEach(B=>{d.choices[g].indexOf(B)===-1&&B!==void 0&&(C[g]=(C[g]||[]).concat(B))})});let E=Object.keys(C);if(!E.length)return;let b=s("Invalid values:");E.forEach(g=>{b+=`
159
- ${s("Argument: %s, Given: %s, Choices: %s",g,e.stringifiedValues(C[g]),e.stringifiedValues(d.choices[g]))}`}),e.fail(b)};let i={};o.implies=function(c,d){x("<string|object> [array|number|string]",[c,d],arguments.length),typeof c=="object"?Object.keys(c).forEach(C=>{o.implies(C,c[C])}):(n.global(c),i[c]||(i[c]=[]),Array.isArray(d)?d.forEach(C=>o.implies(c,C)):(Fe(d,void 0,t),i[c].push(d)))},o.getImplied=function(){return i};function a(f,c){let d=Number(c);return c=isNaN(d)?c:d,typeof c=="number"?c=f._.length>=c:c.match(/^--no-.+/)?(c=c.match(/^--no-(.+)/)[1],c=!Object.prototype.hasOwnProperty.call(f,c)):c=Object.prototype.hasOwnProperty.call(f,c),c}o.implications=function(c){let d=[];if(Object.keys(i).forEach(C=>{let E=C;(i[C]||[]).forEach(b=>{let g=E,B=b;g=a(c,g),b=a(c,b),g&&!b&&d.push(` ${E} -> ${B}`)})}),d.length){let C=`${s("Implications failed:")}
160
- `;d.forEach(E=>{C+=E}),e.fail(C)}};let D={};o.conflicts=function(c,d){x("<string|object> [array|string]",[c,d],arguments.length),typeof c=="object"?Object.keys(c).forEach(C=>{o.conflicts(C,c[C])}):(n.global(c),D[c]||(D[c]=[]),Array.isArray(d)?d.forEach(C=>o.conflicts(c,C)):D[c].push(d))},o.getConflicting=()=>D,o.conflicting=function(c){Object.keys(c).forEach(d=>{D[d]&&D[d].forEach(C=>{C&&c[d]!==void 0&&c[C]!==void 0&&e.fail(s("Arguments %s and %s are mutually exclusive",d,C))})}),n.getInternalMethods().getParserConfiguration()["strip-dashed"]&&Object.keys(D).forEach(d=>{D[d].forEach(C=>{C&&c[t.Parser.camelCase(d)]!==void 0&&c[t.Parser.camelCase(C)]!==void 0&&e.fail(s("Arguments %s and %s are mutually exclusive",d,C))})})},o.recommendCommands=function(c,d){d=d.sort((g,B)=>B.length-g.length);let E=null,b=1/0;for(let g=0,B;(B=d[g])!==void 0;g++){let W=Ao(c,B);W<=3&&W<b&&(b=W,E=B)}E&&e.fail(s("Did you mean %s?",E))},o.reset=function(c){return i=Qe(i,d=>!c[d]),D=Qe(D,d=>!c[d]),o};let h=[];return o.freeze=function(){h.push({implied:i,conflicting:D})},o.unfreeze=function(){let c=h.pop();Fe(c,void 0,t),{implied:i,conflicting:D}=c},o}var ks=[],Ht;function On(n,e,t,s){Ht=s;let r={};if(Object.prototype.hasOwnProperty.call(n,"extends")){if(typeof n.extends!="string")return r;let o=/\.json|\..*rc$/.test(n.extends),i=null;if(o)i=rc(e,n.extends);else try{i=require.resolve(n.extends)}catch{return n}ic(i),ks.push(i),r=o?JSON.parse(Ht.readFileSync(i,"utf8")):require(n.extends),delete n.extends,r=On(r,Ht.path.dirname(i),t,Ht)}return ks=[],t?vo(r,n):Object.assign({},r,n)}function ic(n){if(ks.indexOf(n)>-1)throw new Y(`Circular extended configurations: '${n}'.`)}function rc(n,e){return Ht.path.resolve(n,e)}function vo(n,e){let t={};function s(r){return r&&typeof r=="object"&&!Array.isArray(r)}Object.assign(t,n);for(let r of Object.keys(e))s(e[r])&&s(t[r])?t[r]=vo(n[r],e[r]):t[r]=e[r];return t}var v=function(n,e,t,s,r){if(s==="m")throw new TypeError("Private method is not writable");if(s==="a"&&!r)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?n!==e||!r:!e.has(n))throw new TypeError("Cannot write private member to an object whose class did not declare it");return s==="a"?r.call(n,t):r?r.value=t:e.set(n,t),t},u=function(n,e,t,s){if(t==="a"&&!s)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?n!==e||!s:!e.has(n))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?s:t==="a"?s.call(n):s?s.value:e.get(n)},ae,lt,Vt,_e,we,_n,Xe,Dt,jn,je,Sn,Se,Ne,Ae,Ie,In,Mt,fe,S,Pn,Mn,$e,ht,Tt,ft,et,Tn,T,pt,dt,mt,R,Wn,ke,re;function Go(n){return(e=[],t=n.process.cwd(),s)=>{let r=new Qs(e,t,s,n);return Object.defineProperty(r,"argv",{get:()=>r.parse(),enumerable:!0}),r.help(),r.version(),r}}var Bo=Symbol("copyDoubleDash"),Oo=Symbol("copyDoubleDash"),Ls=Symbol("deleteFromParserHintObject"),_o=Symbol("emitWarning"),jo=Symbol("freeze"),So=Symbol("getDollarZero"),gt=Symbol("getParserConfiguration"),Io=Symbol("getUsageConfiguration"),zs=Symbol("guessLocale"),Po=Symbol("guessVersion"),Mo=Symbol("parsePositionalNumbers"),qs=Symbol("pkgUp"),tt=Symbol("populateParserHintArray"),Wt=Symbol("populateParserHintSingleValueDictionary"),Us=Symbol("populateParserHintArrayDictionary"),Hs=Symbol("populateParserHintDictionary"),Vs=Symbol("sanitizeKey"),Gs=Symbol("setKey"),Ys=Symbol("unfreeze"),To=Symbol("validateAsync"),Wo=Symbol("getCommandInstance"),Ro=Symbol("getContext"),No=Symbol("getHasOutput"),ko=Symbol("getLoggerInstance"),Lo=Symbol("getParseContext"),zo=Symbol("getUsageInstance"),qo=Symbol("getValidationInstance"),Rn=Symbol("hasParseCallback"),Uo=Symbol("isGlobalContext"),Ct=Symbol("postProcess"),Ho=Symbol("rebase"),Js=Symbol("reset"),Gt=Symbol("runYargsParserAndExecuteCommands"),Ks=Symbol("runValidation"),Vo=Symbol("setHasOutput"),Ft=Symbol("kTrackManuallySetKeys"),Qs=class{constructor(e=[],t,s,r){this.customScriptName=!1,this.parsed=!1,ae.set(this,void 0),lt.set(this,void 0),Vt.set(this,{commands:[],fullCommands:[]}),_e.set(this,null),we.set(this,null),_n.set(this,"show-hidden"),Xe.set(this,null),Dt.set(this,!0),jn.set(this,{}),je.set(this,!0),Sn.set(this,[]),Se.set(this,void 0),Ne.set(this,{}),Ae.set(this,!1),Ie.set(this,null),In.set(this,!0),Mt.set(this,void 0),fe.set(this,""),S.set(this,void 0),Pn.set(this,void 0),Mn.set(this,{}),$e.set(this,null),ht.set(this,null),Tt.set(this,{}),ft.set(this,{}),et.set(this,void 0),Tn.set(this,!1),T.set(this,void 0),pt.set(this,!1),dt.set(this,!1),mt.set(this,!1),R.set(this,void 0),Wn.set(this,{}),ke.set(this,null),re.set(this,void 0),v(this,T,r,"f"),v(this,et,e,"f"),v(this,lt,t,"f"),v(this,Pn,s,"f"),v(this,Se,new xn(this),"f"),this.$0=this[So](),this[Js](),v(this,ae,u(this,ae,"f"),"f"),v(this,R,u(this,R,"f"),"f"),v(this,re,u(this,re,"f"),"f"),v(this,S,u(this,S,"f"),"f"),u(this,S,"f").showHiddenOpt=u(this,_n,"f"),v(this,Mt,this[Oo](),"f")}addHelpOpt(e,t){let s="help";return x("[string|boolean] [string]",[e,t],arguments.length),u(this,Ie,"f")&&(this[Ls](u(this,Ie,"f")),v(this,Ie,null,"f")),e===!1&&t===void 0?this:(v(this,Ie,typeof e=="string"?e:s,"f"),this.boolean(u(this,Ie,"f")),this.describe(u(this,Ie,"f"),t||u(this,R,"f").deferY18nLookup("Show help")),this)}help(e,t){return this.addHelpOpt(e,t)}addShowHiddenOpt(e,t){if(x("[string|boolean] [string]",[e,t],arguments.length),e===!1&&t===void 0)return this;let s=typeof e=="string"?e:u(this,_n,"f");return this.boolean(s),this.describe(s,t||u(this,R,"f").deferY18nLookup("Show hidden options")),u(this,S,"f").showHiddenOpt=s,this}showHidden(e,t){return this.addShowHiddenOpt(e,t)}alias(e,t){return x("<object|string|array> [string|array]",[e,t],arguments.length),this[Us](this.alias.bind(this),"alias",e,t),this}array(e){return x("<array|string>",[e],arguments.length),this[tt]("array",e),this[Ft](e),this}boolean(e){return x("<array|string>",[e],arguments.length),this[tt]("boolean",e),this[Ft](e),this}check(e,t){return x("<function> [boolean]",[e,t],arguments.length),this.middleware((s,r)=>ct(()=>e(s,r.getOptions()),o=>(o?(typeof o=="string"||o instanceof Error)&&u(this,R,"f").fail(o.toString(),o):u(this,R,"f").fail(u(this,T,"f").y18n.__("Argument check failed: %s",e.toString())),s),o=>(u(this,R,"f").fail(o.message?o.message:o.toString(),o),s)),!1,t),this}choices(e,t){return x("<object|string|array> [string|array]",[e,t],arguments.length),this[Us](this.choices.bind(this),"choices",e,t),this}coerce(e,t){if(x("<object|string|array> [function]",[e,t],arguments.length),Array.isArray(e)){if(!t)throw new Y("coerce callback must be provided");for(let s of e)this.coerce(s,t);return this}else if(typeof e=="object"){for(let s of Object.keys(e))this.coerce(s,e[s]);return this}if(!t)throw new Y("coerce callback must be provided");return u(this,S,"f").key[e]=!0,u(this,Se,"f").addCoerceMiddleware((s,r)=>{let o;return Object.prototype.hasOwnProperty.call(s,e)?ct(()=>(o=r.getAliases(),t(s[e])),a=>{s[e]=a;let D=r.getInternalMethods().getParserConfiguration()["strip-aliased"];if(o[e]&&D!==!0)for(let h of o[e])s[h]=a;return s},a=>{throw new Y(a.message)}):s},e),this}conflicts(e,t){return x("<string|object> [string|array]",[e,t],arguments.length),u(this,re,"f").conflicts(e,t),this}config(e="config",t,s){return x("[object|string] [string|function] [function]",[e,t,s],arguments.length),typeof e=="object"&&!Array.isArray(e)?(e=On(e,u(this,lt,"f"),this[gt]()["deep-merge-config"]||!1,u(this,T,"f")),u(this,S,"f").configObjects=(u(this,S,"f").configObjects||[]).concat(e),this):(typeof t=="function"&&(s=t,t=void 0),this.describe(e,t||u(this,R,"f").deferY18nLookup("Path to JSON config file")),(Array.isArray(e)?e:[e]).forEach(r=>{u(this,S,"f").config[r]=s||!0}),this)}completion(e,t,s){return x("[string] [string|boolean|function] [function]",[e,t,s],arguments.length),typeof t=="function"&&(s=t,t=void 0),v(this,we,e||u(this,we,"f")||"completion","f"),!t&&t!==!1&&(t="generate completion script"),this.command(u(this,we,"f"),t),s&&u(this,_e,"f").registerFunction(s),this}command(e,t,s,r,o,i){return x("<string|array|object> [string|boolean] [function|object] [function] [array] [boolean|string]",[e,t,s,r,o,i],arguments.length),u(this,ae,"f").addHandler(e,t,s,r,o,i),this}commands(e,t,s,r,o,i){return this.command(e,t,s,r,o,i)}commandDir(e,t){x("<string> [object]",[e,t],arguments.length);let s=u(this,Pn,"f")||u(this,T,"f").require;return u(this,ae,"f").addDirectory(e,s,u(this,T,"f").getCallerFile(),t),this}count(e){return x("<array|string>",[e],arguments.length),this[tt]("count",e),this[Ft](e),this}default(e,t,s){return x("<object|string|array> [*] [string]",[e,t,s],arguments.length),s&&(Ms(e,u(this,T,"f")),u(this,S,"f").defaultDescription[e]=s),typeof t=="function"&&(Ms(e,u(this,T,"f")),u(this,S,"f").defaultDescription[e]||(u(this,S,"f").defaultDescription[e]=u(this,R,"f").functionDescription(t)),t=t.call()),this[Wt](this.default.bind(this),"default",e,t),this}defaults(e,t,s){return this.default(e,t,s)}demandCommand(e=1,t,s,r){return x("[number] [number|string] [string|null|undefined] [string|null|undefined]",[e,t,s,r],arguments.length),typeof t!="number"&&(s=t,t=1/0),this.global("_",!1),u(this,S,"f").demandedCommands._={min:e,max:t,minMsg:s,maxMsg:r},this}demand(e,t,s){return Array.isArray(t)?(t.forEach(r=>{Fe(s,!0,u(this,T,"f")),this.demandOption(r,s)}),t=1/0):typeof t!="number"&&(s=t,t=1/0),typeof e=="number"?(Fe(s,!0,u(this,T,"f")),this.demandCommand(e,t,s,s)):Array.isArray(e)?e.forEach(r=>{Fe(s,!0,u(this,T,"f")),this.demandOption(r,s)}):typeof s=="string"?this.demandOption(e,s):(s===!0||typeof s>"u")&&this.demandOption(e),this}demandOption(e,t){return x("<object|string|array> [string]",[e,t],arguments.length),this[Wt](this.demandOption.bind(this),"demandedOptions",e,t),this}deprecateOption(e,t){return x("<string> [string|boolean]",[e,t],arguments.length),u(this,S,"f").deprecatedOptions[e]=t,this}describe(e,t){return x("<object|string|array> [string]",[e,t],arguments.length),this[Gs](e,!0),u(this,R,"f").describe(e,t),this}detectLocale(e){return x("<boolean>",[e],arguments.length),v(this,Dt,e,"f"),this}env(e){return x("[string|boolean]",[e],arguments.length),e===!1?delete u(this,S,"f").envPrefix:u(this,S,"f").envPrefix=e||"",this}epilogue(e){return x("<string>",[e],arguments.length),u(this,R,"f").epilog(e),this}epilog(e){return this.epilogue(e)}example(e,t){return x("<string|array> [string]",[e,t],arguments.length),Array.isArray(e)?e.forEach(s=>this.example(...s)):u(this,R,"f").example(e,t),this}exit(e,t){v(this,Ae,!0,"f"),v(this,Xe,t,"f"),u(this,je,"f")&&u(this,T,"f").process.exit(e)}exitProcess(e=!0){return x("[boolean]",[e],arguments.length),v(this,je,e,"f"),this}fail(e){if(x("<function|boolean>",[e],arguments.length),typeof e=="boolean"&&e!==!1)throw new Y("Invalid first argument. Expected function or boolean 'false'");return u(this,R,"f").failFn(e),this}getAliases(){return this.parsed?this.parsed.aliases:{}}async getCompletion(e,t){return x("<array> [function]",[e,t],arguments.length),t?u(this,_e,"f").getCompletion(e,t):new Promise((s,r)=>{u(this,_e,"f").getCompletion(e,(o,i)=>{o?r(o):s(i)})})}getDemandedOptions(){return x([],0),u(this,S,"f").demandedOptions}getDemandedCommands(){return x([],0),u(this,S,"f").demandedCommands}getDeprecatedOptions(){return x([],0),u(this,S,"f").deprecatedOptions}getDetectLocale(){return u(this,Dt,"f")}getExitProcess(){return u(this,je,"f")}getGroups(){return Object.assign({},u(this,Ne,"f"),u(this,ft,"f"))}getHelp(){if(v(this,Ae,!0,"f"),!u(this,R,"f").hasCachedHelpMessage()){if(!this.parsed){let t=this[Gt](u(this,et,"f"),void 0,void 0,0,!0);if(J(t))return t.then(()=>u(this,R,"f").help())}let e=u(this,ae,"f").runDefaultBuilderOn(this);if(J(e))return e.then(()=>u(this,R,"f").help())}return Promise.resolve(u(this,R,"f").help())}getOptions(){return u(this,S,"f")}getStrict(){return u(this,pt,"f")}getStrictCommands(){return u(this,dt,"f")}getStrictOptions(){return u(this,mt,"f")}global(e,t){return x("<string|array> [boolean]",[e,t],arguments.length),e=[].concat(e),t!==!1?u(this,S,"f").local=u(this,S,"f").local.filter(s=>e.indexOf(s)===-1):e.forEach(s=>{u(this,S,"f").local.includes(s)||u(this,S,"f").local.push(s)}),this}group(e,t){x("<string|array> <string>",[e,t],arguments.length);let s=u(this,ft,"f")[t]||u(this,Ne,"f")[t];u(this,ft,"f")[t]&&delete u(this,ft,"f")[t];let r={};return u(this,Ne,"f")[t]=(s||[]).concat(e).filter(o=>r[o]?!1:r[o]=!0),this}hide(e){return x("<string>",[e],arguments.length),u(this,S,"f").hiddenOptions.push(e),this}implies(e,t){return x("<string|object> [number|string|array]",[e,t],arguments.length),u(this,re,"f").implies(e,t),this}locale(e){return x("[string]",[e],arguments.length),e===void 0?(this[zs](),u(this,T,"f").y18n.getLocale()):(v(this,Dt,!1,"f"),u(this,T,"f").y18n.setLocale(e),this)}middleware(e,t,s){return u(this,Se,"f").addMiddleware(e,!!t,s)}nargs(e,t){return x("<string|object|array> [number]",[e,t],arguments.length),this[Wt](this.nargs.bind(this),"narg",e,t),this}normalize(e){return x("<array|string>",[e],arguments.length),this[tt]("normalize",e),this}number(e){return x("<array|string>",[e],arguments.length),this[tt]("number",e),this[Ft](e),this}option(e,t){if(x("<string|object> [object]",[e,t],arguments.length),typeof e=="object")Object.keys(e).forEach(s=>{this.options(s,e[s])});else{typeof t!="object"&&(t={}),this[Ft](e),u(this,ke,"f")&&(e==="version"||(t==null?void 0:t.alias)==="version")&&this[_o](['"version" is a reserved word.',"Please do one of the following:",'- Disable version with `yargs.version(false)` if using "version" as an option',"- Use the built-in `yargs.version` method instead (if applicable)","- Use a different option key","https://yargs.js.org/docs/#api-reference-version"].join(`
161
- `),void 0,"versionWarning"),u(this,S,"f").key[e]=!0,t.alias&&this.alias(e,t.alias);let s=t.deprecate||t.deprecated;s&&this.deprecateOption(e,s);let r=t.demand||t.required||t.require;r&&this.demand(e,r),t.demandOption&&this.demandOption(e,typeof t.demandOption=="string"?t.demandOption:void 0),t.conflicts&&this.conflicts(e,t.conflicts),"default"in t&&this.default(e,t.default),t.implies!==void 0&&this.implies(e,t.implies),t.nargs!==void 0&&this.nargs(e,t.nargs),t.config&&this.config(e,t.configParser),t.normalize&&this.normalize(e),t.choices&&this.choices(e,t.choices),t.coerce&&this.coerce(e,t.coerce),t.group&&this.group(e,t.group),(t.boolean||t.type==="boolean")&&(this.boolean(e),t.alias&&this.boolean(t.alias)),(t.array||t.type==="array")&&(this.array(e),t.alias&&this.array(t.alias)),(t.number||t.type==="number")&&(this.number(e),t.alias&&this.number(t.alias)),(t.string||t.type==="string")&&(this.string(e),t.alias&&this.string(t.alias)),(t.count||t.type==="count")&&this.count(e),typeof t.global=="boolean"&&this.global(e,t.global),t.defaultDescription&&(u(this,S,"f").defaultDescription[e]=t.defaultDescription),t.skipValidation&&this.skipValidation(e);let o=t.describe||t.description||t.desc,i=u(this,R,"f").getDescriptions();(!Object.prototype.hasOwnProperty.call(i,e)||typeof o=="string")&&this.describe(e,o),t.hidden&&this.hide(e),t.requiresArg&&this.requiresArg(e)}return this}options(e,t){return this.option(e,t)}parse(e,t,s){x("[string|array] [function|boolean|object] [function]",[e,t,s],arguments.length),this[jo](),typeof e>"u"&&(e=u(this,et,"f")),typeof t=="object"&&(v(this,ht,t,"f"),t=s),typeof t=="function"&&(v(this,$e,t,"f"),t=!1),t||v(this,et,e,"f"),u(this,$e,"f")&&v(this,je,!1,"f");let r=this[Gt](e,!!t),o=this.parsed;return u(this,_e,"f").setParsed(this.parsed),J(r)?r.then(i=>(u(this,$e,"f")&&u(this,$e,"f").call(this,u(this,Xe,"f"),i,u(this,fe,"f")),i)).catch(i=>{throw u(this,$e,"f")&&u(this,$e,"f")(i,this.parsed.argv,u(this,fe,"f")),i}).finally(()=>{this[Ys](),this.parsed=o}):(u(this,$e,"f")&&u(this,$e,"f").call(this,u(this,Xe,"f"),r,u(this,fe,"f")),this[Ys](),this.parsed=o,r)}parseAsync(e,t,s){let r=this.parse(e,t,s);return J(r)?r:Promise.resolve(r)}parseSync(e,t,s){let r=this.parse(e,t,s);if(J(r))throw new Y(".parseSync() must not be used with asynchronous builders, handlers, or middleware");return r}parserConfiguration(e){return x("<object>",[e],arguments.length),v(this,Mn,e,"f"),this}pkgConf(e,t){x("<string> [string]",[e,t],arguments.length);let s=null,r=this[qs](t||u(this,lt,"f"));return r[e]&&typeof r[e]=="object"&&(s=On(r[e],t||u(this,lt,"f"),this[gt]()["deep-merge-config"]||!1,u(this,T,"f")),u(this,S,"f").configObjects=(u(this,S,"f").configObjects||[]).concat(s)),this}positional(e,t){x("<string> <object>",[e,t],arguments.length);let s=["default","defaultDescription","implies","normalize","choices","conflicts","coerce","type","describe","desc","description","alias"];t=Qe(t,(i,a)=>i==="type"&&!["string","number","boolean"].includes(a)?!1:s.includes(i));let r=u(this,Vt,"f").fullCommands[u(this,Vt,"f").fullCommands.length-1],o=r?u(this,ae,"f").cmdToParseOptions(r):{array:[],alias:{},default:{},demand:{}};return It(o).forEach(i=>{let a=o[i];Array.isArray(a)?a.indexOf(e)!==-1&&(t[i]=!0):a[e]&&!(i in t)&&(t[i]=a[e])}),this.group(e,u(this,R,"f").getPositionalGroupName()),this.option(e,t)}recommendCommands(e=!0){return x("[boolean]",[e],arguments.length),v(this,Tn,e,"f"),this}required(e,t,s){return this.demand(e,t,s)}require(e,t,s){return this.demand(e,t,s)}requiresArg(e){return x("<array|string|object> [number]",[e],arguments.length),typeof e=="string"&&u(this,S,"f").narg[e]?this:(this[Wt](this.requiresArg.bind(this),"narg",e,NaN),this)}showCompletionScript(e,t){return x("[string] [string]",[e,t],arguments.length),e=e||this.$0,u(this,Mt,"f").log(u(this,_e,"f").generateCompletionScript(e,t||u(this,we,"f")||"completion")),this}showHelp(e){if(x("[string|function]",[e],arguments.length),v(this,Ae,!0,"f"),!u(this,R,"f").hasCachedHelpMessage()){if(!this.parsed){let s=this[Gt](u(this,et,"f"),void 0,void 0,0,!0);if(J(s))return s.then(()=>{u(this,R,"f").showHelp(e)}),this}let t=u(this,ae,"f").runDefaultBuilderOn(this);if(J(t))return t.then(()=>{u(this,R,"f").showHelp(e)}),this}return u(this,R,"f").showHelp(e),this}scriptName(e){return this.customScriptName=!0,this.$0=e,this}showHelpOnFail(e,t){return x("[boolean|string] [string]",[e,t],arguments.length),u(this,R,"f").showHelpOnFail(e,t),this}showVersion(e){return x("[string|function]",[e],arguments.length),u(this,R,"f").showVersion(e),this}skipValidation(e){return x("<array|string>",[e],arguments.length),this[tt]("skipValidation",e),this}strict(e){return x("[boolean]",[e],arguments.length),v(this,pt,e!==!1,"f"),this}strictCommands(e){return x("[boolean]",[e],arguments.length),v(this,dt,e!==!1,"f"),this}strictOptions(e){return x("[boolean]",[e],arguments.length),v(this,mt,e!==!1,"f"),this}string(e){return x("<array|string>",[e],arguments.length),this[tt]("string",e),this[Ft](e),this}terminalWidth(){return x([],0),u(this,T,"f").process.stdColumns}updateLocale(e){return this.updateStrings(e)}updateStrings(e){return x("<object>",[e],arguments.length),v(this,Dt,!1,"f"),u(this,T,"f").y18n.updateLocale(e),this}usage(e,t,s,r){if(x("<string|null|undefined> [string|boolean] [function|object] [function]",[e,t,s,r],arguments.length),t!==void 0){if(Fe(e,null,u(this,T,"f")),(e||"").match(/^\$0( |$)/))return this.command(e,t,s,r);throw new Y(".usage() description must start with $0 if being used as alias for .command()")}else return u(this,R,"f").usage(e),this}usageConfiguration(e){return x("<object>",[e],arguments.length),v(this,Wn,e,"f"),this}version(e,t,s){let r="version";if(x("[boolean|string] [string] [string]",[e,t,s],arguments.length),u(this,ke,"f")&&(this[Ls](u(this,ke,"f")),u(this,R,"f").version(void 0),v(this,ke,null,"f")),arguments.length===0)s=this[Po](),e=r;else if(arguments.length===1){if(e===!1)return this;s=e,e=r}else arguments.length===2&&(s=t,t=void 0);return v(this,ke,typeof e=="string"?e:r,"f"),t=t||u(this,R,"f").deferY18nLookup("Show version number"),u(this,R,"f").version(s||void 0),this.boolean(u(this,ke,"f")),this.describe(u(this,ke,"f"),t),this}wrap(e){return x("<number|null|undefined>",[e],arguments.length),u(this,R,"f").wrap(e),this}[(ae=new WeakMap,lt=new WeakMap,Vt=new WeakMap,_e=new WeakMap,we=new WeakMap,_n=new WeakMap,Xe=new WeakMap,Dt=new WeakMap,jn=new WeakMap,je=new WeakMap,Sn=new WeakMap,Se=new WeakMap,Ne=new WeakMap,Ae=new WeakMap,Ie=new WeakMap,In=new WeakMap,Mt=new WeakMap,fe=new WeakMap,S=new WeakMap,Pn=new WeakMap,Mn=new WeakMap,$e=new WeakMap,ht=new WeakMap,Tt=new WeakMap,ft=new WeakMap,et=new WeakMap,Tn=new WeakMap,T=new WeakMap,pt=new WeakMap,dt=new WeakMap,mt=new WeakMap,R=new WeakMap,Wn=new WeakMap,ke=new WeakMap,re=new WeakMap,Bo)](e){if(!e._||!e["--"])return e;e._.push.apply(e._,e["--"]);try{delete e["--"]}catch{}return e}[Oo](){return{log:(...e)=>{this[Rn]()||console.log(...e),v(this,Ae,!0,"f"),u(this,fe,"f").length&&v(this,fe,u(this,fe,"f")+`
162
- `,"f"),v(this,fe,u(this,fe,"f")+e.join(" "),"f")},error:(...e)=>{this[Rn]()||console.error(...e),v(this,Ae,!0,"f"),u(this,fe,"f").length&&v(this,fe,u(this,fe,"f")+`
163
- `,"f"),v(this,fe,u(this,fe,"f")+e.join(" "),"f")}}}[Ls](e){It(u(this,S,"f")).forEach(t=>{if((r=>r==="configObjects")(t))return;let s=u(this,S,"f")[t];Array.isArray(s)?s.includes(e)&&s.splice(s.indexOf(e),1):typeof s=="object"&&delete s[e]}),delete u(this,R,"f").getDescriptions()[e]}[_o](e,t,s){u(this,jn,"f")[s]||(u(this,T,"f").process.emitWarning(e,t),u(this,jn,"f")[s]=!0)}[jo](){u(this,Sn,"f").push({options:u(this,S,"f"),configObjects:u(this,S,"f").configObjects.slice(0),exitProcess:u(this,je,"f"),groups:u(this,Ne,"f"),strict:u(this,pt,"f"),strictCommands:u(this,dt,"f"),strictOptions:u(this,mt,"f"),completionCommand:u(this,we,"f"),output:u(this,fe,"f"),exitError:u(this,Xe,"f"),hasOutput:u(this,Ae,"f"),parsed:this.parsed,parseFn:u(this,$e,"f"),parseContext:u(this,ht,"f")}),u(this,R,"f").freeze(),u(this,re,"f").freeze(),u(this,ae,"f").freeze(),u(this,Se,"f").freeze()}[So](){let e="",t;return/\b(node|iojs|electron)(\.exe)?$/.test(u(this,T,"f").process.argv()[0])?t=u(this,T,"f").process.argv().slice(1,2):t=u(this,T,"f").process.argv().slice(0,1),e=t.map(s=>{let r=this[Ho](u(this,lt,"f"),s);return s.match(/^(\/|([a-zA-Z]:)?\\)/)&&r.length<s.length?r:s}).join(" ").trim(),u(this,T,"f").getEnv("_")&&u(this,T,"f").getProcessArgvBin()===u(this,T,"f").getEnv("_")&&(e=u(this,T,"f").getEnv("_").replace(`${u(this,T,"f").path.dirname(u(this,T,"f").process.execPath())}/`,"")),e}[gt](){return u(this,Mn,"f")}[Io](){return u(this,Wn,"f")}[zs](){if(!u(this,Dt,"f"))return;let e=u(this,T,"f").getEnv("LC_ALL")||u(this,T,"f").getEnv("LC_MESSAGES")||u(this,T,"f").getEnv("LANG")||u(this,T,"f").getEnv("LANGUAGE")||"en_US";this.locale(e.replace(/[.:].*/,""))}[Po](){return this[qs]().version||"unknown"}[Mo](e){let t=e["--"]?e["--"]:e._;for(let s=0,r;(r=t[s])!==void 0;s++)u(this,T,"f").Parser.looksLikeNumber(r)&&Number.isSafeInteger(Math.floor(parseFloat(`${r}`)))&&(t[s]=Number(r));return e}[qs](e){let t=e||"*";if(u(this,Tt,"f")[t])return u(this,Tt,"f")[t];let s={};try{let r=e||u(this,T,"f").mainFilename;!e&&u(this,T,"f").path.extname(r)&&(r=u(this,T,"f").path.dirname(r));let o=u(this,T,"f").findUp(r,(i,a)=>{if(a.includes("package.json"))return"package.json"});Fe(o,void 0,u(this,T,"f")),s=JSON.parse(u(this,T,"f").readFileSync(o,"utf8"))}catch{}return u(this,Tt,"f")[t]=s||{},u(this,Tt,"f")[t]}[tt](e,t){t=[].concat(t),t.forEach(s=>{s=this[Vs](s),u(this,S,"f")[e].push(s)})}[Wt](e,t,s,r){this[Hs](e,t,s,r,(o,i,a)=>{u(this,S,"f")[o][i]=a})}[Us](e,t,s,r){this[Hs](e,t,s,r,(o,i,a)=>{u(this,S,"f")[o][i]=(u(this,S,"f")[o][i]||[]).concat(a)})}[Hs](e,t,s,r,o){if(Array.isArray(s))s.forEach(i=>{e(i,r)});else if((i=>typeof i=="object")(s))for(let i of It(s))e(i,s[i]);else o(t,this[Vs](s),r)}[Vs](e){return e==="__proto__"?"___proto___":e}[Gs](e,t){return this[Wt](this[Gs].bind(this),"key",e,t),this}[Ys](){var e,t,s,r,o,i,a,D,h,f,c,d;let C=u(this,Sn,"f").pop();Fe(C,void 0,u(this,T,"f"));let E;e=this,t=this,s=this,r=this,o=this,i=this,a=this,D=this,h=this,f=this,c=this,d=this,{options:{set value(b){v(e,S,b,"f")}}.value,configObjects:E,exitProcess:{set value(b){v(t,je,b,"f")}}.value,groups:{set value(b){v(s,Ne,b,"f")}}.value,output:{set value(b){v(r,fe,b,"f")}}.value,exitError:{set value(b){v(o,Xe,b,"f")}}.value,hasOutput:{set value(b){v(i,Ae,b,"f")}}.value,parsed:this.parsed,strict:{set value(b){v(a,pt,b,"f")}}.value,strictCommands:{set value(b){v(D,dt,b,"f")}}.value,strictOptions:{set value(b){v(h,mt,b,"f")}}.value,completionCommand:{set value(b){v(f,we,b,"f")}}.value,parseFn:{set value(b){v(c,$e,b,"f")}}.value,parseContext:{set value(b){v(d,ht,b,"f")}}.value}=C,u(this,S,"f").configObjects=E,u(this,R,"f").unfreeze(),u(this,re,"f").unfreeze(),u(this,ae,"f").unfreeze(),u(this,Se,"f").unfreeze()}[To](e,t){return ct(t,s=>(e(s),s))}getInternalMethods(){return{getCommandInstance:this[Wo].bind(this),getContext:this[Ro].bind(this),getHasOutput:this[No].bind(this),getLoggerInstance:this[ko].bind(this),getParseContext:this[Lo].bind(this),getParserConfiguration:this[gt].bind(this),getUsageConfiguration:this[Io].bind(this),getUsageInstance:this[zo].bind(this),getValidationInstance:this[qo].bind(this),hasParseCallback:this[Rn].bind(this),isGlobalContext:this[Uo].bind(this),postProcess:this[Ct].bind(this),reset:this[Js].bind(this),runValidation:this[Ks].bind(this),runYargsParserAndExecuteCommands:this[Gt].bind(this),setHasOutput:this[Vo].bind(this)}}[Wo](){return u(this,ae,"f")}[Ro](){return u(this,Vt,"f")}[No](){return u(this,Ae,"f")}[ko](){return u(this,Mt,"f")}[Lo](){return u(this,ht,"f")||{}}[zo](){return u(this,R,"f")}[qo](){return u(this,re,"f")}[Rn](){return!!u(this,$e,"f")}[Uo](){return u(this,In,"f")}[Ct](e,t,s,r){return s||J(e)||(t||(e=this[Bo](e)),(this[gt]()["parse-positional-numbers"]||this[gt]()["parse-positional-numbers"]===void 0)&&(e=this[Mo](e)),r&&(e=at(e,this,u(this,Se,"f").getMiddleware(),!1))),e}[Js](e={}){v(this,S,u(this,S,"f")||{},"f");let t={};t.local=u(this,S,"f").local||[],t.configObjects=u(this,S,"f").configObjects||[];let s={};t.local.forEach(i=>{s[i]=!0,(e[i]||[]).forEach(a=>{s[a]=!0})}),Object.assign(u(this,ft,"f"),Object.keys(u(this,Ne,"f")).reduce((i,a)=>{let D=u(this,Ne,"f")[a].filter(h=>!(h in s));return D.length>0&&(i[a]=D),i},{})),v(this,Ne,{},"f");let r=["array","boolean","string","skipValidation","count","normalize","number","hiddenOptions"],o=["narg","key","alias","default","defaultDescription","config","choices","demandedOptions","demandedCommands","deprecatedOptions"];return r.forEach(i=>{t[i]=(u(this,S,"f")[i]||[]).filter(a=>!s[a])}),o.forEach(i=>{t[i]=Qe(u(this,S,"f")[i],a=>!s[a])}),t.envPrefix=u(this,S,"f").envPrefix,v(this,S,t,"f"),v(this,R,u(this,R,"f")?u(this,R,"f").reset(s):Eo(this,u(this,T,"f")),"f"),v(this,re,u(this,re,"f")?u(this,re,"f").reset(s):xo(this,u(this,R,"f"),u(this,T,"f")),"f"),v(this,ae,u(this,ae,"f")?u(this,ae,"f").reset():go(u(this,R,"f"),u(this,re,"f"),u(this,Se,"f"),u(this,T,"f")),"f"),u(this,_e,"f")||v(this,_e,wo(this,u(this,R,"f"),u(this,ae,"f"),u(this,T,"f")),"f"),u(this,Se,"f").reset(),v(this,we,null,"f"),v(this,fe,"","f"),v(this,Xe,null,"f"),v(this,Ae,!1,"f"),this.parsed=!1,this}[Ho](e,t){return u(this,T,"f").path.relative(e,t)}[Gt](e,t,s,r=0,o=!1){let i=!!s||o;e=e||u(this,et,"f"),u(this,S,"f").__=u(this,T,"f").y18n.__,u(this,S,"f").configuration=this[gt]();let a=!!u(this,S,"f").configuration["populate--"],D=Object.assign({},u(this,S,"f").configuration,{"populate--":!0}),h=u(this,T,"f").Parser.detailed(e,Object.assign({},u(this,S,"f"),{configuration:{"parse-positional-numbers":!1,...D}})),f=Object.assign(h.argv,u(this,ht,"f")),c,d=h.aliases,C=!1,E=!1;Object.keys(f).forEach(b=>{b===u(this,Ie,"f")&&f[b]?C=!0:b===u(this,ke,"f")&&f[b]&&(E=!0)}),f.$0=this.$0,this.parsed=h,r===0&&u(this,R,"f").clearCachedHelpMessage();try{if(this[zs](),t)return this[Ct](f,a,!!s,!1);u(this,Ie,"f")&&[u(this,Ie,"f")].concat(d[u(this,Ie,"f")]||[]).filter(U=>U.length>1).includes(""+f._[f._.length-1])&&(f._.pop(),C=!0),v(this,In,!1,"f");let b=u(this,ae,"f").getCommands(),g=u(this,_e,"f").completionKey in f,B=C||g||o;if(f._.length){if(b.length){let W;for(let U=r||0,L;f._[U]!==void 0;U++)if(L=String(f._[U]),b.includes(L)&&L!==u(this,we,"f")){let H=u(this,ae,"f").runCommand(L,this,h,U+1,o,C||E||o);return this[Ct](H,a,!!s,!1)}else if(!W&&L!==u(this,we,"f")){W=L;break}!u(this,ae,"f").hasDefaultCommand()&&u(this,Tn,"f")&&W&&!B&&u(this,re,"f").recommendCommands(W,b)}u(this,we,"f")&&f._.includes(u(this,we,"f"))&&!g&&(u(this,je,"f")&&Ze(!0),this.showCompletionScript(),this.exit(0))}if(u(this,ae,"f").hasDefaultCommand()&&!B){let W=u(this,ae,"f").runCommand(null,this,h,0,o,C||E||o);return this[Ct](W,a,!!s,!1)}if(g){u(this,je,"f")&&Ze(!0),e=[].concat(e);let W=e.slice(e.indexOf(`--${u(this,_e,"f").completionKey}`)+1);return u(this,_e,"f").getCompletion(W,(U,L)=>{if(U)throw new Y(U.message);(L||[]).forEach(H=>{u(this,Mt,"f").log(H)}),this.exit(0)}),this[Ct](f,!a,!!s,!1)}if(u(this,Ae,"f")||(C?(u(this,je,"f")&&Ze(!0),i=!0,this.showHelp("log"),this.exit(0)):E&&(u(this,je,"f")&&Ze(!0),i=!0,u(this,R,"f").showVersion("log"),this.exit(0))),!i&&u(this,S,"f").skipValidation.length>0&&(i=Object.keys(f).some(W=>u(this,S,"f").skipValidation.indexOf(W)>=0&&f[W]===!0)),!i){if(h.error)throw new Y(h.error.message);if(!g){let W=this[Ks](d,{},h.error);s||(c=at(f,this,u(this,Se,"f").getMiddleware(),!0)),c=this[To](W,c??f),J(c)&&!s&&(c=c.then(()=>at(f,this,u(this,Se,"f").getMiddleware(),!1)))}}}catch(b){if(b instanceof Y)u(this,R,"f").fail(b.message,b);else throw b}return this[Ct](c??f,a,!!s,!0)}[Ks](e,t,s,r){let o={...this.getDemandedOptions()};return i=>{if(s)throw new Y(s.message);u(this,re,"f").nonOptionCount(i),u(this,re,"f").requiredArguments(i,o);let a=!1;u(this,dt,"f")&&(a=u(this,re,"f").unknownCommands(i)),u(this,pt,"f")&&!a?u(this,re,"f").unknownArguments(i,e,t,!!r):u(this,mt,"f")&&u(this,re,"f").unknownArguments(i,e,{},!1,!1),u(this,re,"f").limitedChoices(i),u(this,re,"f").implications(i),u(this,re,"f").conflicting(i)}}[Vo](){v(this,Ae,!0,"f")}[Ft](e){if(typeof e=="string")u(this,S,"f").key[e]=!0;else for(let t of e)u(this,S,"f").key[t]=!0}};function Co(n){return!!n&&typeof n.getInternalMethods=="function"}var oc=Go(Do),Yo=oc;function uc(n,e){return Yo(n).strict().command("* <template> <outDir>","Create a new project powered by qwik",s=>s.positional("template",{type:"string",desc:"Starter template",choices:e}).positional("outDir",{type:"string",desc:"Directory of the project"}).option("force",{alias:"f",type:"boolean",default:!1,desc:"Overwrite target directory if it exists"}).option("installDeps",{alias:"i",default:!1,type:"boolean",desc:"Install dependencies"}).usage("npm create qwik@latest base ./my-project <options>")).argv}async function Xs(...n){let e=Je(),t=await Ot("app"),s=t.standaloneTemplates.map(({id:d})=>d),r=uc(n,s),{force:o,installDeps:i,template:a}=r,D=r.outDir;nn(`Let's create a ${kt(" Qwik App ")} \u2728 (v1.7.1)`),ac()?D=process.cwd():(D=gn(D),Zs.default.existsSync(D)&&Zs.default.readdirSync(D).length>0&&(o?await rn(D):(te.error(`Directory "${D}" already exists.`),te.info("Please either remove this directory, choose another location or run the command again with '--force | -f' flag."),rt(),process.exit(1))));let h=await _t({outDir:D,appId:a,pkgManager:e,templateManager:t}),f=At(),c=!1;return i&&(c=await dn(async()=>await ot(e,D).install,{pkgManager:e,spinner:f})),mn(e,h,c),h}function ac(){return cc()}function cc(){try{return process.cwd().startsWith("/home/projects/")}catch{}return!1}var kn=require("node:path");var Nn=ce(require("node:fs"));var ei=[["What's the best thing about a Boolean?","Even if you're wrong, you're only off by a bit."],["Why did the developer stay at home?","Because he couldn't find his keys."],["How many programmers does it take to change a lightbulb?","None that's a hardware problem"],["A user interface is like a joke.","If you have to explain it then it is not that good."],["['hip', 'hip']","(hip hip array)"],["A SQL query goes into a bar, walks up to two tables and asks:","'Can I JOIN you?'"],["Why did the developer go to therapy?","He had too many unresolved issues."],["Why do C# and Java developers keep breaking their keyboards?","Because they use a strongly typed language."],["What's the object-oriented way to become wealthy?","Inheritance"],["Where do programmers like to hangout?","The Foo Bar."],["Why do Java programmers wear glasses?","Because they don't C#"],["To understand what recursion is...","You must first understand what recursion is"],["The punchline often arrives before the set-up.","Do you know the problem with UDP jokes?"],["Why did the programmer quit his job?","Because he didn't get arrays."],["Why was the computer tired when it got home?","It had a hard drive."],["There are 10 types of people in this world...","Those who understand binary and those who don't"],["Why do programmers always mix up Halloween and Christmas?","Because Oct 31 == Dec 25"],["I was gonna tell you a joke about UDP...","...but you might not get it."],["Normal People: give me just a second","Developers: give me 100 milliseconds!"],["Why do programmers prefer dark mode?","Because light attracts bugs."],["Why don't programmers like nature?","It has too many bugs."],["Why was the computer freezing?","It left its Windows open!"],["What did the Java code say to the C code?","You've got no class."],["Why do programmers prefer the outdoors?","Because it's free of bugs."],["Why do programmers love movies?","Because they can 'script' the ending."],["why do desert animals hate Qwik?","Because there's no hydration...."],["What can you do if you cannot push your git changes?","Use the --force, Luke"],["How did the developer announce he's getting married?","'She returned true!'"],["How many Prolog programmers does it take to change a lightbulb?","Yes."],["Why did the developer ground their kid?","They weren't telling the truthy"],["!false","It's funny 'cause it's true."],["Where did the parallel function wash its hands?","Async"],["How do functions break up?","They stop calling each other"],["Why did the functions stop calling each other?","Because they had constant arguments."],["What's the second movie about a database engineer called?","The SQL."],["What did the computer do at lunchtime?","NoSQL."],["Why doesn't Hollywood make more Big Data movies?","Had a byte!"],["What does a baby computer call his father?","Data!"],["I never tell the same joke twice","I have a DRY sense of humor."],["How do programming pirates pass method parameters?","ARRRRRGS."],["Why don't bachelors like Git?","Because they are afraid to commit."],["Why do astronauts use Linux?","They can't open Windows in space!"],["How do front end devs like their brownies?","GUI"],["What do hackers do on a boat?","Phishing."],["Why couldn't the HTML list be trusted?","There were LI's everywhere"],["To the person who invented zero:","Thank's for nothing!"],["What do you call a bee that lives in America?","A USB"],["want about to a race conditions hear joke?",""],["What is a Package Managers favorite holiday?","Dependency Day"],["Where do we get all of these dad jokes from?","A dad-a-base!"],["What advice do you give to a JS developer who has never played baseball?","Try catch."],["We don't have any DNS jokes, know why?","Because it may take 24 hours to get them"],["Why do Front-End Developers eat lunch alone?","Because they don't know how to join tables."],["How do you help JS errors?","You `console` them!"],["When do front end developers go out to eat?","On their lunch <br>."],["What do you call optimistic front-end developers?","Stack half-full developers."]];function Jo(){let n=Math.floor(Math.random()*ei.length);return ei[n]}async function ti(){let n=Je(),e=await Ot("app"),t="./qwik-app";nn(`Let's create a ${kt(" Qwik App ")} \u2728 (v1.7.1)`),await Sr(500);let s=await $i({message:`Where would you like to create your new project? ${Ye("(Use '.' or './' for current directory)")}`,placeholder:t})||t;Ge(s)&&(rt("Operation cancelled."),process.exit(0));let r=e.getBaseApp();if(!r)throw new Error("Base app not found");let o=e.templates.filter(B=>B.id!==r.id).sort((B,W)=>B.name.localeCompare(W.name)),i=gn(s.trim());r.target=i;let a=Wr(n,r);te.info(`Creating new project in ${kt(" "+i+" ")} ... \u{1F407}`);let D=null;if(Nn.default.existsSync(i)&&Nn.default.readdirSync(i).length>0){let B=await ss({message:`Directory "./${(0,kn.relative)(process.cwd(),i)}" already exists and is not empty. What would you like to do?`,options:[{value:"exit",label:"Do not overwrite this directory and exit"},{value:"replace",label:"Remove contents of this directory"}]});(Ge(B)||B==="exit")&&(rt("Operation cancelled."),process.exit(0)),B==="replace"&&(D=rn(i))}let h=await ss({message:"Select a starter",options:o.map(B=>{var W;return{label:B.name,value:B.id,hint:(W=B.pkgJson)==null?void 0:W.description}})});Ge(h)&&(rt("Operation cancelled."),process.exit(0));let f=h,c=await tn({message:`Would you like to install ${n} dependencies?`,initialValue:!0});Ge(c)&&(rt("Operation cancelled."),process.exit(0));let d=await tn({message:"Initialize a new git repository?",initialValue:!0});D&&await D;let C=c;if(!C)a.abort();else if(typeof a.success>"u")try{let B=await tn({message:"Finishing the install. Wanna hear a joke?",initialValue:!0});if(!Ge(B)&&B){let[W,U]=Jo();an(Ce(`${W.trim()}
164
- ${U.trim()}`),"\u{1F648}")}}catch{}let E=At();E.start("Creating App...");let b=await _t({appId:f,outDir:i,pkgManager:n,templateManager:e});if(E.stop("App Created \u{1F430}"),d)if(Nn.default.existsSync((0,kn.join)(i,".git")))te.info("Git has already been initialized before. Skipping...");else{E.start("Git initializing...");try{let B=[];if(B.push(await vt("git",["init"],i).install),B.push(await vt("git",["add","-A"],i).install),B.push(await vt("git",["commit","-m","Initial commit \u26A1\uFE0F"],i).install),B.some(W=>W===!1))throw"";E.stop("Git initialized \u{1F3B2}")}catch{E.stop("Git failed to initialize"),te.error(Ee("Git failed to initialize. You can do this manually by running: git init"))}}let g=!1;return C&&(g=await dn(async()=>{let B=await a.complete(b.outDir);return B&&await ot(n,b.outDir).install},{pkgManager:n,spinner:E})),mn(n,b,g),b}async function Ko(n){let e=Je(),t=await Ot("app");return await _t({appId:n.starterId,templateManager:t,outDir:n.outDir,pkgManager:e})}async function Dc(){Mr(),hc();try{let n=process.argv.slice(2);n.length>0?await Xs(...n):await ti()}catch(n){un(n.message||n)}}function hc(){let n=process.version,[e,t]=n.replace("v","").split(".");Number(e)<16?(console.error(Ee(`Qwik requires Node.js 16.8 or higher. You are currently running Node.js ${n}.`)),process.exit(1)):Number(e)===16?Number(t)<8&&console.warn(Ii(`Node.js 16.8 or higher is recommended. You are currently running Node.js ${n}.`)):Number(e)===18&&Number(t)<11&&console.error(Ee(`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${n}. https://github.com/QwikDev/qwik/issues/3035`))}0&&(module.exports={createApp,runCli,runCreateCli,runCreateInteractiveCli});
165
- /*! Bundled license information:
166
-
167
- yargs-parser/build/lib/string-utils.js:
168
- (**
169
- * @license
170
- * Copyright (c) 2016, Contributors
171
- * SPDX-License-Identifier: ISC
172
- *)
173
-
174
- yargs-parser/build/lib/tokenize-arg-string.js:
175
- (**
176
- * @license
177
- * Copyright (c) 2016, Contributors
178
- * SPDX-License-Identifier: ISC
179
- *)
180
-
181
- yargs-parser/build/lib/yargs-parser-types.js:
182
- (**
183
- * @license
184
- * Copyright (c) 2016, Contributors
185
- * SPDX-License-Identifier: ISC
186
- *)
187
-
188
- yargs-parser/build/lib/yargs-parser.js:
189
- (**
190
- * @license
191
- * Copyright (c) 2016, Contributors
192
- * SPDX-License-Identifier: ISC
193
- *)
194
-
195
- yargs-parser/build/lib/index.js:
196
- (**
197
- * @fileoverview Main entrypoint for libraries using yargs-parser in Node.js
198
- * CJS and ESM environments.
199
- *
200
- * @license
201
- * Copyright (c) 2016, Contributors
202
- * SPDX-License-Identifier: ISC
203
- *)
204
- */
File without changes