mathjs 10.0.0 → 10.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1084) hide show
  1. package/CONTRIBUTING.md +14 -10
  2. package/HISTORY.md +209 -0
  3. package/NOTICE +1 -1
  4. package/README.md +23 -3
  5. package/bin/cli.js +1 -1
  6. package/lib/browser/math.js +9 -8
  7. package/lib/browser/math.js.map +1 -1
  8. package/lib/cjs/core/create.js +4 -4
  9. package/lib/cjs/core/function/import.js +3 -3
  10. package/lib/cjs/core/function/typed.js +2 -2
  11. package/lib/cjs/defaultInstance.js +3 -3
  12. package/lib/cjs/entry/allFactoriesAny.js +1 -1
  13. package/lib/cjs/entry/allFactoriesNumber.js +1 -1
  14. package/lib/cjs/entry/configReadonly.js +1 -1
  15. package/lib/cjs/entry/dependenciesAny/dependenciesCeil.generated.js +6 -0
  16. package/lib/cjs/entry/dependenciesAny/dependenciesCumSum.generated.js +26 -0
  17. package/lib/cjs/entry/dependenciesAny/dependenciesCumSumTransform.generated.js +26 -0
  18. package/lib/cjs/entry/dependenciesAny/dependenciesDet.generated.js +5 -2
  19. package/lib/cjs/entry/dependenciesAny/dependenciesFft.generated.js +41 -0
  20. package/lib/cjs/entry/dependenciesAny/dependenciesFix.generated.js +9 -0
  21. package/lib/cjs/entry/dependenciesAny/dependenciesFloor.generated.js +6 -0
  22. package/lib/cjs/entry/dependenciesAny/dependenciesIfft.generated.js +29 -0
  23. package/lib/cjs/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -3
  24. package/lib/cjs/entry/dependenciesAny/dependenciesIntersect.generated.js +6 -0
  25. package/lib/cjs/entry/dependenciesAny/dependenciesInvmod.generated.js +41 -0
  26. package/lib/cjs/entry/dependenciesAny/dependenciesLeafCount.generated.js +23 -0
  27. package/lib/cjs/entry/dependenciesAny/dependenciesLgamma.generated.js +23 -0
  28. package/lib/cjs/entry/dependenciesAny/dependenciesPinv.generated.js +53 -0
  29. package/lib/cjs/entry/dependenciesAny/dependenciesPow.generated.js +3 -0
  30. package/lib/cjs/entry/dependenciesAny/dependenciesRationalize.generated.js +18 -0
  31. package/lib/cjs/entry/dependenciesAny/dependenciesResolve.generated.js +32 -0
  32. package/lib/cjs/entry/dependenciesAny/dependenciesSimplify.generated.js +21 -0
  33. package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyCore.generated.js +65 -0
  34. package/lib/cjs/entry/dependenciesAny/dependenciesStirlingS2.generated.js +6 -0
  35. package/lib/cjs/entry/dependenciesAny/dependenciesSymbolicEqual.generated.js +29 -0
  36. package/lib/cjs/entry/dependenciesAny.generated.js +88 -0
  37. package/lib/cjs/entry/dependenciesNumber/dependenciesCeil.generated.js +3 -0
  38. package/lib/cjs/entry/dependenciesNumber/dependenciesCumSum.generated.js +26 -0
  39. package/lib/cjs/entry/dependenciesNumber/dependenciesCumSumTransform.generated.js +26 -0
  40. package/lib/cjs/entry/dependenciesNumber/dependenciesFix.generated.js +6 -0
  41. package/lib/cjs/entry/dependenciesNumber/dependenciesFloor.generated.js +3 -0
  42. package/lib/cjs/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -3
  43. package/lib/cjs/entry/dependenciesNumber/dependenciesLgamma.generated.js +20 -0
  44. package/lib/cjs/entry/dependenciesNumber/dependenciesRationalize.generated.js +18 -0
  45. package/lib/cjs/entry/dependenciesNumber/dependenciesResolve.generated.js +32 -0
  46. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplify.generated.js +21 -0
  47. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyCore.generated.js +65 -0
  48. package/lib/cjs/entry/dependenciesNumber/dependenciesStirlingS2.generated.js +3 -0
  49. package/lib/cjs/entry/dependenciesNumber.generated.js +40 -0
  50. package/lib/cjs/entry/impureFunctionsAny.generated.js +164 -98
  51. package/lib/cjs/entry/impureFunctionsNumber.generated.js +117 -69
  52. package/lib/cjs/entry/pureFunctionsAny.generated.js +418 -351
  53. package/lib/cjs/entry/pureFunctionsNumber.generated.js +80 -65
  54. package/lib/cjs/expression/Help.js +4 -0
  55. package/lib/cjs/expression/Parser.js +1 -1
  56. package/lib/cjs/expression/embeddedDocs/construction/fraction.js +3 -3
  57. package/lib/cjs/expression/embeddedDocs/core/typed.js +1 -1
  58. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +265 -233
  59. package/lib/cjs/expression/embeddedDocs/function/algebra/leafCount.js +15 -0
  60. package/lib/cjs/expression/embeddedDocs/function/algebra/resolve.js +16 -0
  61. package/lib/cjs/expression/embeddedDocs/function/algebra/simplify.js +1 -1
  62. package/lib/cjs/expression/embeddedDocs/function/algebra/simplifyCore.js +15 -0
  63. package/lib/cjs/expression/embeddedDocs/function/algebra/symbolicEqual.js +15 -0
  64. package/lib/cjs/expression/embeddedDocs/function/arithmetic/invmod.js +15 -0
  65. package/lib/cjs/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  66. package/lib/cjs/expression/embeddedDocs/function/matrix/fft.js +15 -0
  67. package/lib/cjs/expression/embeddedDocs/function/matrix/forEach.js +1 -1
  68. package/lib/cjs/expression/embeddedDocs/function/matrix/ifft.js +15 -0
  69. package/lib/cjs/expression/embeddedDocs/function/matrix/pinv.js +15 -0
  70. package/lib/cjs/expression/embeddedDocs/function/matrix/subset.js +2 -2
  71. package/lib/cjs/expression/embeddedDocs/function/probability/lgamma.js +15 -0
  72. package/lib/cjs/expression/embeddedDocs/function/statistics/cumsum.js +15 -0
  73. package/lib/cjs/expression/node/FunctionNode.js +104 -63
  74. package/lib/cjs/expression/node/IndexNode.js +27 -62
  75. package/lib/cjs/expression/node/Node.js +3 -3
  76. package/lib/cjs/expression/node/ObjectNode.js +1 -1
  77. package/lib/cjs/expression/node/utils/access.js +1 -1
  78. package/lib/cjs/expression/node/utils/assign.js +1 -1
  79. package/lib/cjs/expression/parse.js +25 -21
  80. package/lib/cjs/expression/transform/cumsum.transform.js +57 -0
  81. package/lib/cjs/expression/transform/sum.transform.js +1 -1
  82. package/lib/cjs/factoriesAny.js +88 -0
  83. package/lib/cjs/factoriesNumber.js +77 -28
  84. package/lib/cjs/function/algebra/decomposition/qr.js +1 -1
  85. package/lib/cjs/function/algebra/derivative.js +1 -1
  86. package/lib/cjs/function/algebra/leafCount.js +66 -0
  87. package/lib/cjs/function/algebra/rationalize.js +36 -39
  88. package/lib/cjs/function/algebra/resolve.js +106 -0
  89. package/lib/cjs/function/algebra/simplify/simplifyConstant.js +226 -32
  90. package/lib/cjs/function/algebra/simplify/util.js +171 -33
  91. package/lib/cjs/function/algebra/simplify.js +619 -191
  92. package/lib/cjs/function/algebra/{simplify/simplifyCore.js → simplifyCore.js} +84 -32
  93. package/lib/cjs/function/algebra/solver/lsolveAll.js +2 -2
  94. package/lib/cjs/function/algebra/solver/usolveAll.js +2 -2
  95. package/lib/cjs/function/algebra/symbolicEqual.js +88 -0
  96. package/lib/cjs/function/arithmetic/ceil.js +76 -40
  97. package/lib/cjs/function/arithmetic/fix.js +54 -16
  98. package/lib/cjs/function/arithmetic/floor.js +80 -38
  99. package/lib/cjs/function/arithmetic/invmod.js +73 -0
  100. package/lib/cjs/function/arithmetic/norm.js +1 -1
  101. package/lib/cjs/function/arithmetic/nthRoot.js +1 -3
  102. package/lib/cjs/function/arithmetic/pow.js +25 -6
  103. package/lib/cjs/function/arithmetic/round.js +27 -47
  104. package/lib/cjs/function/arithmetic/sign.js +4 -0
  105. package/lib/cjs/function/combinatorics/stirlingS2.js +42 -12
  106. package/lib/cjs/function/geometry/intersect.js +12 -13
  107. package/lib/cjs/function/matrix/det.js +37 -31
  108. package/lib/cjs/function/matrix/eigs/complexEigs.js +44 -33
  109. package/lib/cjs/function/matrix/fft.js +128 -0
  110. package/lib/cjs/function/matrix/ifft.js +49 -0
  111. package/lib/cjs/function/matrix/map.js +53 -15
  112. package/lib/cjs/function/matrix/matrixFromColumns.js +1 -1
  113. package/lib/cjs/function/matrix/matrixFromRows.js +1 -1
  114. package/lib/cjs/function/matrix/pinv.js +223 -0
  115. package/lib/cjs/function/matrix/subset.js +15 -5
  116. package/lib/cjs/function/probability/gamma.js +28 -30
  117. package/lib/cjs/function/probability/lgamma.js +146 -0
  118. package/lib/cjs/function/probability/util/seededRNG.js +2 -2
  119. package/lib/cjs/function/relational/compareNatural.js +6 -6
  120. package/lib/cjs/function/statistics/cumsum.js +151 -0
  121. package/lib/cjs/function/statistics/sum.js +1 -1
  122. package/lib/cjs/function/string/format.js +4 -1
  123. package/lib/cjs/header.js +3 -3
  124. package/lib/cjs/plain/bignumber/index.js +1 -1
  125. package/lib/cjs/plain/number/arithmetic.js +17 -31
  126. package/lib/cjs/plain/number/combinations.js +18 -6
  127. package/lib/cjs/plain/number/probability.js +43 -3
  128. package/lib/cjs/type/bignumber/BigNumber.js +2 -2
  129. package/lib/cjs/type/bignumber/function/bignumber.js +1 -1
  130. package/lib/cjs/type/boolean.js +2 -2
  131. package/lib/cjs/type/complex/Complex.js +14 -14
  132. package/lib/cjs/type/complex/function/complex.js +1 -1
  133. package/lib/cjs/type/fraction/Fraction.js +6 -6
  134. package/lib/cjs/type/fraction/function/fraction.js +21 -9
  135. package/lib/cjs/type/matrix/DenseMatrix.js +5 -5
  136. package/lib/cjs/type/matrix/SparseMatrix.js +21 -17
  137. package/lib/cjs/type/matrix/function/sparse.js +6 -0
  138. package/lib/cjs/type/number.js +1 -1
  139. package/lib/cjs/type/string.js +2 -2
  140. package/lib/cjs/type/unit/Unit.js +76 -88
  141. package/lib/cjs/utils/collection.js +3 -27
  142. package/lib/cjs/utils/customs.js +2 -2
  143. package/lib/cjs/utils/emitter.js +1 -1
  144. package/lib/cjs/utils/function.js +2 -2
  145. package/lib/cjs/utils/is.js +6 -6
  146. package/lib/cjs/utils/latex.js +9 -3
  147. package/lib/cjs/utils/lruQueue.js +2 -4
  148. package/lib/cjs/utils/map.js +3 -3
  149. package/lib/cjs/utils/number.js +18 -3
  150. package/lib/cjs/utils/object.js +5 -3
  151. package/lib/cjs/utils/snapshot.js +8 -8
  152. package/lib/cjs/utils/string.js +19 -6
  153. package/lib/cjs/utils/switch.js +31 -0
  154. package/lib/cjs/version.js +1 -1
  155. package/lib/esm/entry/dependenciesAny/dependenciesCeil.generated.js +4 -0
  156. package/lib/esm/entry/dependenciesAny/dependenciesCumSum.generated.js +14 -0
  157. package/lib/esm/entry/dependenciesAny/dependenciesCumSumTransform.generated.js +14 -0
  158. package/lib/esm/entry/dependenciesAny/dependenciesDet.generated.js +4 -2
  159. package/lib/esm/entry/dependenciesAny/dependenciesFft.generated.js +24 -0
  160. package/lib/esm/entry/dependenciesAny/dependenciesFix.generated.js +6 -0
  161. package/lib/esm/entry/dependenciesAny/dependenciesFloor.generated.js +4 -0
  162. package/lib/esm/entry/dependenciesAny/dependenciesIfft.generated.js +16 -0
  163. package/lib/esm/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -2
  164. package/lib/esm/entry/dependenciesAny/dependenciesIntersect.generated.js +4 -0
  165. package/lib/esm/entry/dependenciesAny/dependenciesInvmod.generated.js +24 -0
  166. package/lib/esm/entry/dependenciesAny/dependenciesLeafCount.generated.js +12 -0
  167. package/lib/esm/entry/dependenciesAny/dependenciesLgamma.generated.js +12 -0
  168. package/lib/esm/entry/dependenciesAny/dependenciesPinv.generated.js +32 -0
  169. package/lib/esm/entry/dependenciesAny/dependenciesPow.generated.js +2 -0
  170. package/lib/esm/entry/dependenciesAny/dependenciesRationalize.generated.js +12 -0
  171. package/lib/esm/entry/dependenciesAny/dependenciesResolve.generated.js +18 -0
  172. package/lib/esm/entry/dependenciesAny/dependenciesSimplify.generated.js +14 -0
  173. package/lib/esm/entry/dependenciesAny/dependenciesSimplifyCore.generated.js +40 -0
  174. package/lib/esm/entry/dependenciesAny/dependenciesStirlingS2.generated.js +4 -0
  175. package/lib/esm/entry/dependenciesAny/dependenciesSymbolicEqual.generated.js +16 -0
  176. package/lib/esm/entry/dependenciesAny.generated.js +11 -0
  177. package/lib/esm/entry/dependenciesNumber/dependenciesCeil.generated.js +2 -0
  178. package/lib/esm/entry/dependenciesNumber/dependenciesCumSum.generated.js +14 -0
  179. package/lib/esm/entry/dependenciesNumber/dependenciesCumSumTransform.generated.js +14 -0
  180. package/lib/esm/entry/dependenciesNumber/dependenciesFix.generated.js +4 -0
  181. package/lib/esm/entry/dependenciesNumber/dependenciesFloor.generated.js +2 -0
  182. package/lib/esm/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -2
  183. package/lib/esm/entry/dependenciesNumber/dependenciesLgamma.generated.js +10 -0
  184. package/lib/esm/entry/dependenciesNumber/dependenciesRationalize.generated.js +12 -0
  185. package/lib/esm/entry/dependenciesNumber/dependenciesResolve.generated.js +18 -0
  186. package/lib/esm/entry/dependenciesNumber/dependenciesSimplify.generated.js +14 -0
  187. package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyCore.generated.js +40 -0
  188. package/lib/esm/entry/dependenciesNumber/dependenciesStirlingS2.generated.js +2 -0
  189. package/lib/esm/entry/dependenciesNumber.generated.js +5 -0
  190. package/lib/esm/entry/impureFunctionsAny.generated.js +150 -88
  191. package/lib/esm/entry/impureFunctionsNumber.generated.js +107 -61
  192. package/lib/esm/entry/pureFunctionsAny.generated.js +331 -268
  193. package/lib/esm/entry/pureFunctionsNumber.generated.js +56 -41
  194. package/lib/esm/expression/Help.js +4 -0
  195. package/lib/esm/expression/embeddedDocs/construction/fraction.js +3 -3
  196. package/lib/esm/expression/embeddedDocs/core/typed.js +1 -1
  197. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +233 -212
  198. package/lib/esm/expression/embeddedDocs/function/algebra/leafCount.js +8 -0
  199. package/lib/esm/expression/embeddedDocs/function/algebra/resolve.js +9 -0
  200. package/lib/esm/expression/embeddedDocs/function/algebra/simplify.js +1 -1
  201. package/lib/esm/expression/embeddedDocs/function/algebra/simplifyCore.js +8 -0
  202. package/lib/esm/expression/embeddedDocs/function/algebra/symbolicEqual.js +8 -0
  203. package/lib/esm/expression/embeddedDocs/function/arithmetic/invmod.js +8 -0
  204. package/lib/esm/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  205. package/lib/esm/expression/embeddedDocs/function/matrix/fft.js +8 -0
  206. package/lib/esm/expression/embeddedDocs/function/matrix/forEach.js +1 -1
  207. package/lib/esm/expression/embeddedDocs/function/matrix/ifft.js +8 -0
  208. package/lib/esm/expression/embeddedDocs/function/matrix/pinv.js +8 -0
  209. package/lib/esm/expression/embeddedDocs/function/matrix/subset.js +2 -2
  210. package/lib/esm/expression/embeddedDocs/function/probability/lgamma.js +8 -0
  211. package/lib/esm/expression/embeddedDocs/function/statistics/cumsum.js +8 -0
  212. package/lib/esm/expression/node/BlockNode.js +3 -3
  213. package/lib/esm/expression/node/FunctionNode.js +93 -56
  214. package/lib/esm/expression/node/IndexNode.js +22 -59
  215. package/lib/esm/expression/parse.js +17 -13
  216. package/lib/esm/expression/transform/cumsum.transform.js +48 -0
  217. package/lib/esm/expression/transform/sum.transform.js +1 -1
  218. package/lib/esm/factoriesAny.js +11 -0
  219. package/lib/esm/factoriesNumber.js +25 -8
  220. package/lib/esm/function/algebra/decomposition/qr.js +2 -2
  221. package/lib/esm/function/algebra/derivative.js +1 -1
  222. package/lib/esm/function/algebra/leafCount.js +59 -0
  223. package/lib/esm/function/algebra/rationalize.js +36 -38
  224. package/lib/esm/function/algebra/resolve.js +95 -0
  225. package/lib/esm/function/algebra/simplify/simplifyConstant.js +200 -32
  226. package/lib/esm/function/algebra/simplify/util.js +170 -34
  227. package/lib/esm/function/algebra/simplify.js +614 -186
  228. package/lib/esm/function/algebra/{simplify/simplifyCore.js → simplifyCore.js} +76 -32
  229. package/lib/esm/function/algebra/solver/utils/solveValidation.js +5 -5
  230. package/lib/esm/function/algebra/sparse/csChol.js +2 -2
  231. package/lib/esm/function/algebra/sparse/csLeaf.js +2 -2
  232. package/lib/esm/function/algebra/sparse/csLu.js +3 -3
  233. package/lib/esm/function/algebra/symbolicEqual.js +80 -0
  234. package/lib/esm/function/arithmetic/ceil.js +61 -24
  235. package/lib/esm/function/arithmetic/fix.js +51 -13
  236. package/lib/esm/function/arithmetic/floor.js +65 -23
  237. package/lib/esm/function/arithmetic/invmod.js +57 -0
  238. package/lib/esm/function/arithmetic/nthRoot.js +1 -3
  239. package/lib/esm/function/arithmetic/nthRoots.js +1 -1
  240. package/lib/esm/function/arithmetic/pow.js +25 -6
  241. package/lib/esm/function/arithmetic/round.js +25 -43
  242. package/lib/esm/function/arithmetic/sign.js +4 -0
  243. package/lib/esm/function/combinatorics/stirlingS2.js +41 -12
  244. package/lib/esm/function/geometry/intersect.js +12 -12
  245. package/lib/esm/function/matrix/det.js +35 -31
  246. package/lib/esm/function/matrix/eigs/complexEigs.js +36 -25
  247. package/lib/esm/function/matrix/expm.js +2 -2
  248. package/lib/esm/function/matrix/fft.js +104 -0
  249. package/lib/esm/function/matrix/ifft.js +38 -0
  250. package/lib/esm/function/matrix/map.js +53 -15
  251. package/lib/esm/function/matrix/pinv.js +205 -0
  252. package/lib/esm/function/matrix/subset.js +15 -5
  253. package/lib/esm/function/probability/gamma.js +29 -31
  254. package/lib/esm/function/probability/lgamma.js +137 -0
  255. package/lib/esm/function/statistics/cumsum.js +139 -0
  256. package/lib/esm/function/statistics/sum.js +1 -1
  257. package/lib/esm/function/string/bin.js +1 -1
  258. package/lib/esm/function/string/format.js +4 -1
  259. package/lib/esm/function/string/hex.js +1 -1
  260. package/lib/esm/function/string/oct.js +1 -1
  261. package/lib/esm/header.js +1 -1
  262. package/lib/esm/plain/number/arithmetic.js +16 -20
  263. package/lib/esm/plain/number/combinations.js +18 -6
  264. package/lib/esm/plain/number/probability.js +33 -1
  265. package/lib/esm/type/complex/Complex.js +2 -2
  266. package/lib/esm/type/fraction/function/fraction.js +20 -8
  267. package/lib/esm/type/matrix/DenseMatrix.js +2 -2
  268. package/lib/esm/type/matrix/FibonacciHeap.js +2 -2
  269. package/lib/esm/type/matrix/SparseMatrix.js +32 -28
  270. package/lib/esm/type/matrix/function/sparse.js +6 -0
  271. package/lib/esm/type/unit/Unit.js +76 -88
  272. package/lib/esm/utils/collection.js +1 -26
  273. package/lib/esm/utils/latex.js +6 -0
  274. package/lib/esm/utils/lruQueue.js +1 -2
  275. package/lib/esm/utils/number.js +17 -5
  276. package/lib/esm/utils/object.js +3 -1
  277. package/lib/esm/utils/snapshot.js +2 -2
  278. package/lib/esm/utils/string.js +18 -4
  279. package/lib/esm/utils/switch.js +24 -0
  280. package/lib/esm/version.js +1 -1
  281. package/package.json +52 -33
  282. package/types/index.d.ts +2741 -1306
  283. package/types/index.ts +1656 -242
  284. package/types/tsconfig.json +2 -1
  285. package/docs/command_line_interface.md +0 -87
  286. package/docs/core/chaining.md +0 -41
  287. package/docs/core/configuration.md +0 -144
  288. package/docs/core/extension.md +0 -263
  289. package/docs/core/index.md +0 -21
  290. package/docs/core/serialization.md +0 -50
  291. package/docs/custom_bundling.md +0 -116
  292. package/docs/datatypes/bignumbers.md +0 -102
  293. package/docs/datatypes/complex_numbers.md +0 -168
  294. package/docs/datatypes/fractions.md +0 -75
  295. package/docs/datatypes/index.md +0 -67
  296. package/docs/datatypes/matrices.md +0 -358
  297. package/docs/datatypes/numbers.md +0 -106
  298. package/docs/datatypes/units.md +0 -444
  299. package/docs/expressions/algebra.md +0 -83
  300. package/docs/expressions/customization.md +0 -379
  301. package/docs/expressions/expression_trees.md +0 -700
  302. package/docs/expressions/html_classes.md +0 -38
  303. package/docs/expressions/index.md +0 -21
  304. package/docs/expressions/parsing.md +0 -224
  305. package/docs/expressions/security.md +0 -89
  306. package/docs/expressions/syntax.md +0 -670
  307. package/docs/getting_started.md +0 -124
  308. package/docs/index.md +0 -39
  309. package/docs/reference/classes/densematrix.md +0 -247
  310. package/docs/reference/classes/fibonacciheap.md +0 -70
  311. package/docs/reference/classes/matrixindex.md +0 -133
  312. package/docs/reference/classes/matrixrange.md +0 -158
  313. package/docs/reference/classes/resultset.md +0 -47
  314. package/docs/reference/classes/sparsematrix.md +0 -245
  315. package/docs/reference/classes/unit.md +0 -242
  316. package/docs/reference/classes.md +0 -86
  317. package/docs/reference/constants.md +0 -29
  318. package/docs/reference/functions/abs.md +0 -40
  319. package/docs/reference/functions/acos.md +0 -43
  320. package/docs/reference/functions/acosh.md +0 -41
  321. package/docs/reference/functions/acot.md +0 -42
  322. package/docs/reference/functions/acoth.md +0 -40
  323. package/docs/reference/functions/acsc.md +0 -43
  324. package/docs/reference/functions/acsch.md +0 -40
  325. package/docs/reference/functions/add.md +0 -53
  326. package/docs/reference/functions/and.md +0 -47
  327. package/docs/reference/functions/apply.md +0 -50
  328. package/docs/reference/functions/arg.md +0 -47
  329. package/docs/reference/functions/asec.md +0 -43
  330. package/docs/reference/functions/asech.md +0 -40
  331. package/docs/reference/functions/asin.md +0 -43
  332. package/docs/reference/functions/asinh.md +0 -40
  333. package/docs/reference/functions/atan.md +0 -43
  334. package/docs/reference/functions/atan2.md +0 -50
  335. package/docs/reference/functions/atanh.md +0 -40
  336. package/docs/reference/functions/bellNumbers.md +0 -39
  337. package/docs/reference/functions/bignumber.md +0 -47
  338. package/docs/reference/functions/bin.md +0 -39
  339. package/docs/reference/functions/bitAnd.md +0 -45
  340. package/docs/reference/functions/bitNot.md +0 -45
  341. package/docs/reference/functions/bitOr.md +0 -46
  342. package/docs/reference/functions/bitXor.md +0 -45
  343. package/docs/reference/functions/boolean.md +0 -50
  344. package/docs/reference/functions/catalan.md +0 -39
  345. package/docs/reference/functions/cbrt.md +0 -54
  346. package/docs/reference/functions/ceil.md +0 -57
  347. package/docs/reference/functions/chain.md +0 -54
  348. package/docs/reference/functions/clone.md +0 -37
  349. package/docs/reference/functions/column.md +0 -39
  350. package/docs/reference/functions/combinations.md +0 -43
  351. package/docs/reference/functions/combinationsWithRep.md +0 -43
  352. package/docs/reference/functions/compare.md +0 -61
  353. package/docs/reference/functions/compareNatural.md +0 -86
  354. package/docs/reference/functions/compareText.md +0 -48
  355. package/docs/reference/functions/compile.md +0 -50
  356. package/docs/reference/functions/complex.md +0 -17
  357. package/docs/reference/functions/composition.md +0 -40
  358. package/docs/reference/functions/concat.md +0 -50
  359. package/docs/reference/functions/config.md +0 -44
  360. package/docs/reference/functions/conj.md +0 -44
  361. package/docs/reference/functions/cos.md +0 -45
  362. package/docs/reference/functions/cosh.md +0 -40
  363. package/docs/reference/functions/cot.md +0 -41
  364. package/docs/reference/functions/coth.md +0 -43
  365. package/docs/reference/functions/count.md +0 -39
  366. package/docs/reference/functions/createUnit.md +0 -52
  367. package/docs/reference/functions/cross.md +0 -52
  368. package/docs/reference/functions/csc.md +0 -41
  369. package/docs/reference/functions/csch.md +0 -43
  370. package/docs/reference/functions/ctranspose.md +0 -44
  371. package/docs/reference/functions/cube.md +0 -45
  372. package/docs/reference/functions/deepEqual.md +0 -47
  373. package/docs/reference/functions/derivative.md +0 -55
  374. package/docs/reference/functions/det.md +0 -43
  375. package/docs/reference/functions/diag.md +0 -55
  376. package/docs/reference/functions/diff.md +0 -64
  377. package/docs/reference/functions/distance.md +0 -74
  378. package/docs/reference/functions/divide.md +0 -49
  379. package/docs/reference/functions/dot.md +0 -42
  380. package/docs/reference/functions/dotDivide.md +0 -46
  381. package/docs/reference/functions/dotMultiply.md +0 -46
  382. package/docs/reference/functions/dotPow.md +0 -43
  383. package/docs/reference/functions/eigs.md +0 -48
  384. package/docs/reference/functions/equal.md +0 -69
  385. package/docs/reference/functions/equalText.md +0 -47
  386. package/docs/reference/functions/erf.md +0 -43
  387. package/docs/reference/functions/evaluate.md +0 -50
  388. package/docs/reference/functions/exp.md +0 -48
  389. package/docs/reference/functions/expm.md +0 -43
  390. package/docs/reference/functions/expm1.md +0 -48
  391. package/docs/reference/functions/factorial.md +0 -43
  392. package/docs/reference/functions/filter.md +0 -44
  393. package/docs/reference/functions/fix.md +0 -55
  394. package/docs/reference/functions/flatten.md +0 -40
  395. package/docs/reference/functions/floor.md +0 -56
  396. package/docs/reference/functions/forEach.md +0 -35
  397. package/docs/reference/functions/format.md +0 -118
  398. package/docs/reference/functions/fraction.md +0 -45
  399. package/docs/reference/functions/gamma.md +0 -43
  400. package/docs/reference/functions/gcd.md +0 -44
  401. package/docs/reference/functions/getMatrixDataType.md +0 -53
  402. package/docs/reference/functions/hasNumericValue.md +0 -49
  403. package/docs/reference/functions/help.md +0 -36
  404. package/docs/reference/functions/hex.md +0 -39
  405. package/docs/reference/functions/hypot.md +0 -45
  406. package/docs/reference/functions/identity.md +0 -51
  407. package/docs/reference/functions/im.md +0 -47
  408. package/docs/reference/functions/import.md +0 -68
  409. package/docs/reference/functions/index.md +0 -55
  410. package/docs/reference/functions/intersect.md +0 -44
  411. package/docs/reference/functions/inv.md +0 -39
  412. package/docs/reference/functions/isInteger.md +0 -49
  413. package/docs/reference/functions/isNaN.md +0 -50
  414. package/docs/reference/functions/isNegative.md +0 -49
  415. package/docs/reference/functions/isNumeric.md +0 -49
  416. package/docs/reference/functions/isPositive.md +0 -51
  417. package/docs/reference/functions/isPrime.md +0 -48
  418. package/docs/reference/functions/isZero.md +0 -53
  419. package/docs/reference/functions/kldivergence.md +0 -35
  420. package/docs/reference/functions/kron.md +0 -47
  421. package/docs/reference/functions/larger.md +0 -54
  422. package/docs/reference/functions/largerEq.md +0 -50
  423. package/docs/reference/functions/lcm.md +0 -48
  424. package/docs/reference/functions/leftShift.md +0 -46
  425. package/docs/reference/functions/log.md +0 -51
  426. package/docs/reference/functions/log10.md +0 -44
  427. package/docs/reference/functions/log1p.md +0 -48
  428. package/docs/reference/functions/log2.md +0 -44
  429. package/docs/reference/functions/lsolve.md +0 -45
  430. package/docs/reference/functions/lsolveAll.md +0 -45
  431. package/docs/reference/functions/lup.md +0 -46
  432. package/docs/reference/functions/lusolve.md +0 -53
  433. package/docs/reference/functions/mad.md +0 -44
  434. package/docs/reference/functions/map.md +0 -42
  435. package/docs/reference/functions/matrix.md +0 -56
  436. package/docs/reference/functions/matrixFromColumns.md +0 -43
  437. package/docs/reference/functions/matrixFromFunction.md +0 -48
  438. package/docs/reference/functions/matrixFromRows.md +0 -43
  439. package/docs/reference/functions/max.md +0 -55
  440. package/docs/reference/functions/mean.md +0 -51
  441. package/docs/reference/functions/median.md +0 -51
  442. package/docs/reference/functions/min.md +0 -55
  443. package/docs/reference/functions/mod.md +0 -53
  444. package/docs/reference/functions/mode.md +0 -44
  445. package/docs/reference/functions/multinomial.md +0 -40
  446. package/docs/reference/functions/multiply.md +0 -54
  447. package/docs/reference/functions/norm.md +0 -53
  448. package/docs/reference/functions/not.md +0 -44
  449. package/docs/reference/functions/nthRoot.md +0 -47
  450. package/docs/reference/functions/nthRoots.md +0 -52
  451. package/docs/reference/functions/number.md +0 -49
  452. package/docs/reference/functions/numeric.md +0 -46
  453. package/docs/reference/functions/oct.md +0 -39
  454. package/docs/reference/functions/ones.md +0 -53
  455. package/docs/reference/functions/or.md +0 -47
  456. package/docs/reference/functions/parse.md +0 -56
  457. package/docs/reference/functions/parser.md +0 -64
  458. package/docs/reference/functions/partitionSelect.md +0 -47
  459. package/docs/reference/functions/permutations.md +0 -45
  460. package/docs/reference/functions/pickRandom.md +0 -53
  461. package/docs/reference/functions/pow.md +0 -53
  462. package/docs/reference/functions/print.md +0 -58
  463. package/docs/reference/functions/prod.md +0 -49
  464. package/docs/reference/functions/qr.md +0 -59
  465. package/docs/reference/functions/quantileSeq.md +0 -56
  466. package/docs/reference/functions/random.md +0 -48
  467. package/docs/reference/functions/randomInt.md +0 -47
  468. package/docs/reference/functions/range.md +0 -64
  469. package/docs/reference/functions/rationalize.md +0 -62
  470. package/docs/reference/functions/re.md +0 -47
  471. package/docs/reference/functions/reshape.md +0 -53
  472. package/docs/reference/functions/resize.md +0 -45
  473. package/docs/reference/functions/rightArithShift.md +0 -46
  474. package/docs/reference/functions/rightLogShift.md +0 -46
  475. package/docs/reference/functions/rotate.md +0 -47
  476. package/docs/reference/functions/rotationMatrix.md +0 -51
  477. package/docs/reference/functions/round.md +0 -55
  478. package/docs/reference/functions/row.md +0 -39
  479. package/docs/reference/functions/sec.md +0 -41
  480. package/docs/reference/functions/sech.md +0 -43
  481. package/docs/reference/functions/setCartesian.md +0 -43
  482. package/docs/reference/functions/setDifference.md +0 -41
  483. package/docs/reference/functions/setDistinct.md +0 -37
  484. package/docs/reference/functions/setIntersect.md +0 -40
  485. package/docs/reference/functions/setIsSubset.md +0 -41
  486. package/docs/reference/functions/setMultiplicity.md +0 -40
  487. package/docs/reference/functions/setPowerset.md +0 -37
  488. package/docs/reference/functions/setSize.md +0 -41
  489. package/docs/reference/functions/setSymDifference.md +0 -41
  490. package/docs/reference/functions/setUnion.md +0 -40
  491. package/docs/reference/functions/sign.md +0 -46
  492. package/docs/reference/functions/simplify.md +0 -90
  493. package/docs/reference/functions/sin.md +0 -45
  494. package/docs/reference/functions/sinh.md +0 -40
  495. package/docs/reference/functions/size.md +0 -44
  496. package/docs/reference/functions/slu.md +0 -51
  497. package/docs/reference/functions/smaller.md +0 -54
  498. package/docs/reference/functions/smallerEq.md +0 -50
  499. package/docs/reference/functions/sort.md +0 -50
  500. package/docs/reference/functions/sparse.md +0 -51
  501. package/docs/reference/functions/splitUnit.md +0 -37
  502. package/docs/reference/functions/sqrt.md +0 -44
  503. package/docs/reference/functions/sqrtm.md +0 -40
  504. package/docs/reference/functions/square.md +0 -45
  505. package/docs/reference/functions/squeeze.md +0 -47
  506. package/docs/reference/functions/std.md +0 -70
  507. package/docs/reference/functions/stirlingS2.md +0 -42
  508. package/docs/reference/functions/string.md +0 -49
  509. package/docs/reference/functions/subset.md +0 -51
  510. package/docs/reference/functions/subtract.md +0 -48
  511. package/docs/reference/functions/sum.md +0 -47
  512. package/docs/reference/functions/tan.md +0 -43
  513. package/docs/reference/functions/tanh.md +0 -44
  514. package/docs/reference/functions/to.md +0 -41
  515. package/docs/reference/functions/trace.md +0 -44
  516. package/docs/reference/functions/transpose.md +0 -43
  517. package/docs/reference/functions/typeOf.md +0 -75
  518. package/docs/reference/functions/typed.md +0 -56
  519. package/docs/reference/functions/unaryMinus.md +0 -43
  520. package/docs/reference/functions/unaryPlus.md +0 -42
  521. package/docs/reference/functions/unequal.md +0 -68
  522. package/docs/reference/functions/unit.md +0 -48
  523. package/docs/reference/functions/usolve.md +0 -45
  524. package/docs/reference/functions/usolveAll.md +0 -45
  525. package/docs/reference/functions/variance.md +0 -72
  526. package/docs/reference/functions/xgcd.md +0 -41
  527. package/docs/reference/functions/xor.md +0 -47
  528. package/docs/reference/functions/zeros.md +0 -51
  529. package/docs/reference/functions.md +0 -289
  530. package/docs/reference/index.md +0 -5
  531. package/examples/advanced/convert_fraction_to_bignumber.js +0 -59
  532. package/examples/advanced/custom_argument_parsing.js +0 -98
  533. package/examples/advanced/custom_datatype.js +0 -56
  534. package/examples/advanced/custom_evaluate_using_factories.js +0 -19
  535. package/examples/advanced/custom_evaluate_using_import.js +0 -18
  536. package/examples/advanced/custom_loading.js +0 -33
  537. package/examples/advanced/custom_relational_functions.js +0 -62
  538. package/examples/advanced/custom_scope_objects.js +0 -115
  539. package/examples/advanced/expression_trees.js +0 -55
  540. package/examples/advanced/function_transform.js +0 -50
  541. package/examples/advanced/more_secure_eval.js +0 -36
  542. package/examples/advanced/use_bigint.js +0 -43
  543. package/examples/advanced/web_server/math_worker.js +0 -24
  544. package/examples/advanced/web_server/server.js +0 -80
  545. package/examples/algebra.js +0 -34
  546. package/examples/basic_usage.js +0 -49
  547. package/examples/bignumbers.js +0 -52
  548. package/examples/browser/angle_configuration.html +0 -134
  549. package/examples/browser/basic_usage.html +0 -39
  550. package/examples/browser/currency_conversion.html +0 -125
  551. package/examples/browser/custom_separators.html +0 -81
  552. package/examples/browser/plot.html +0 -78
  553. package/examples/browser/pretty_printing_with_mathjax.html +0 -122
  554. package/examples/browser/printing_html.html +0 -170
  555. package/examples/browser/requirejs_loading.html +0 -20
  556. package/examples/browser/rocket_trajectory_optimization.html +0 -301
  557. package/examples/browser/webworkers/webworkers.html +0 -80
  558. package/examples/browser/webworkers/worker.js +0 -28
  559. package/examples/chaining.js +0 -56
  560. package/examples/complex_numbers.js +0 -67
  561. package/examples/expressions.js +0 -188
  562. package/examples/fractions.js +0 -74
  563. package/examples/import.js +0 -95
  564. package/examples/matrices.js +0 -101
  565. package/examples/node_modules/.bin/envinfo +0 -15
  566. package/examples/node_modules/.bin/envinfo.cmd +0 -17
  567. package/examples/node_modules/.bin/envinfo.ps1 +0 -18
  568. package/examples/node_modules/.bin/import-local-fixture +0 -15
  569. package/examples/node_modules/.bin/import-local-fixture.cmd +0 -17
  570. package/examples/node_modules/.bin/import-local-fixture.ps1 +0 -18
  571. package/examples/node_modules/.bin/node-which +0 -15
  572. package/examples/node_modules/.bin/node-which.cmd +0 -17
  573. package/examples/node_modules/.bin/node-which.ps1 +0 -18
  574. package/examples/node_modules/.bin/webpack-cli +0 -15
  575. package/examples/node_modules/.bin/webpack-cli.cmd +0 -17
  576. package/examples/node_modules/.bin/webpack-cli.ps1 +0 -18
  577. package/examples/node_modules/@discoveryjs/json-ext/CHANGELOG.md +0 -42
  578. package/examples/node_modules/@discoveryjs/json-ext/LICENSE +0 -21
  579. package/examples/node_modules/@discoveryjs/json-ext/README.md +0 -255
  580. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.js +0 -808
  581. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.min.js +0 -1
  582. package/examples/node_modules/@discoveryjs/json-ext/package.json +0 -93
  583. package/examples/node_modules/@discoveryjs/json-ext/src/index.js +0 -6
  584. package/examples/node_modules/@discoveryjs/json-ext/src/parse-chunked.js +0 -339
  585. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-info.js +0 -224
  586. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream-browser.js +0 -3
  587. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream.js +0 -394
  588. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder-browser.js +0 -1
  589. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder.js +0 -1
  590. package/examples/node_modules/@discoveryjs/json-ext/src/utils.js +0 -148
  591. package/examples/node_modules/@webpack-cli/configtest/CHANGELOG.md +0 -18
  592. package/examples/node_modules/@webpack-cli/configtest/LICENSE +0 -20
  593. package/examples/node_modules/@webpack-cli/configtest/lib/index.d.ts +0 -4
  594. package/examples/node_modules/@webpack-cli/configtest/lib/index.js +0 -62
  595. package/examples/node_modules/@webpack-cli/configtest/package.json +0 -45
  596. package/examples/node_modules/@webpack-cli/info/CHANGELOG.md +0 -61
  597. package/examples/node_modules/@webpack-cli/info/LICENSE +0 -20
  598. package/examples/node_modules/@webpack-cli/info/README.md +0 -49
  599. package/examples/node_modules/@webpack-cli/info/lib/index.d.ts +0 -4
  600. package/examples/node_modules/@webpack-cli/info/lib/index.js +0 -66
  601. package/examples/node_modules/@webpack-cli/info/package.json +0 -47
  602. package/examples/node_modules/@webpack-cli/serve/CHANGELOG.md +0 -93
  603. package/examples/node_modules/@webpack-cli/serve/LICENSE +0 -20
  604. package/examples/node_modules/@webpack-cli/serve/README.md +0 -26
  605. package/examples/node_modules/@webpack-cli/serve/lib/index.d.ts +0 -4
  606. package/examples/node_modules/@webpack-cli/serve/lib/index.js +0 -107
  607. package/examples/node_modules/@webpack-cli/serve/lib/startDevServer.d.ts +0 -12
  608. package/examples/node_modules/@webpack-cli/serve/lib/startDevServer.js +0 -113
  609. package/examples/node_modules/@webpack-cli/serve/lib/types.d.ts +0 -48
  610. package/examples/node_modules/@webpack-cli/serve/lib/types.js +0 -12
  611. package/examples/node_modules/@webpack-cli/serve/package.json +0 -50
  612. package/examples/node_modules/ansi-colors/LICENSE +0 -21
  613. package/examples/node_modules/ansi-colors/README.md +0 -315
  614. package/examples/node_modules/ansi-colors/index.js +0 -177
  615. package/examples/node_modules/ansi-colors/package.json +0 -152
  616. package/examples/node_modules/ansi-colors/symbols.js +0 -70
  617. package/examples/node_modules/ansi-colors/types/index.d.ts +0 -161
  618. package/examples/node_modules/clone-deep/LICENSE +0 -21
  619. package/examples/node_modules/clone-deep/README.md +0 -106
  620. package/examples/node_modules/clone-deep/index.js +0 -49
  621. package/examples/node_modules/clone-deep/package.json +0 -112
  622. package/examples/node_modules/colorette/LICENSE.md +0 -7
  623. package/examples/node_modules/colorette/README.md +0 -102
  624. package/examples/node_modules/colorette/index.cjs +0 -73
  625. package/examples/node_modules/colorette/index.d.ts +0 -49
  626. package/examples/node_modules/colorette/index.js +0 -73
  627. package/examples/node_modules/colorette/package.json +0 -73
  628. package/examples/node_modules/commander/CHANGELOG.md +0 -440
  629. package/examples/node_modules/commander/LICENSE +0 -22
  630. package/examples/node_modules/commander/Readme.md +0 -917
  631. package/examples/node_modules/commander/esm.mjs +0 -4
  632. package/examples/node_modules/commander/index.js +0 -2217
  633. package/examples/node_modules/commander/package-support.json +0 -16
  634. package/examples/node_modules/commander/package.json +0 -100
  635. package/examples/node_modules/commander/typings/index.d.ts +0 -627
  636. package/examples/node_modules/cross-spawn/CHANGELOG.md +0 -130
  637. package/examples/node_modules/cross-spawn/LICENSE +0 -21
  638. package/examples/node_modules/cross-spawn/README.md +0 -96
  639. package/examples/node_modules/cross-spawn/index.js +0 -39
  640. package/examples/node_modules/cross-spawn/lib/enoent.js +0 -59
  641. package/examples/node_modules/cross-spawn/lib/parse.js +0 -91
  642. package/examples/node_modules/cross-spawn/lib/util/escape.js +0 -45
  643. package/examples/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
  644. package/examples/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
  645. package/examples/node_modules/cross-spawn/package.json +0 -104
  646. package/examples/node_modules/enquirer/CHANGELOG.md +0 -135
  647. package/examples/node_modules/enquirer/LICENSE +0 -21
  648. package/examples/node_modules/enquirer/README.md +0 -1752
  649. package/examples/node_modules/enquirer/index.d.ts +0 -151
  650. package/examples/node_modules/enquirer/index.js +0 -250
  651. package/examples/node_modules/enquirer/lib/ansi.js +0 -116
  652. package/examples/node_modules/enquirer/lib/combos.js +0 -75
  653. package/examples/node_modules/enquirer/lib/completer.js +0 -52
  654. package/examples/node_modules/enquirer/lib/interpolate.js +0 -266
  655. package/examples/node_modules/enquirer/lib/keypress.js +0 -243
  656. package/examples/node_modules/enquirer/lib/placeholder.js +0 -63
  657. package/examples/node_modules/enquirer/lib/prompt.js +0 -485
  658. package/examples/node_modules/enquirer/lib/prompts/autocomplete.js +0 -113
  659. package/examples/node_modules/enquirer/lib/prompts/basicauth.js +0 -41
  660. package/examples/node_modules/enquirer/lib/prompts/confirm.js +0 -13
  661. package/examples/node_modules/enquirer/lib/prompts/editable.js +0 -136
  662. package/examples/node_modules/enquirer/lib/prompts/form.js +0 -196
  663. package/examples/node_modules/enquirer/lib/prompts/index.js +0 -28
  664. package/examples/node_modules/enquirer/lib/prompts/input.js +0 -55
  665. package/examples/node_modules/enquirer/lib/prompts/invisible.js +0 -11
  666. package/examples/node_modules/enquirer/lib/prompts/list.js +0 -36
  667. package/examples/node_modules/enquirer/lib/prompts/multiselect.js +0 -11
  668. package/examples/node_modules/enquirer/lib/prompts/numeral.js +0 -1
  669. package/examples/node_modules/enquirer/lib/prompts/password.js +0 -18
  670. package/examples/node_modules/enquirer/lib/prompts/quiz.js +0 -37
  671. package/examples/node_modules/enquirer/lib/prompts/scale.js +0 -237
  672. package/examples/node_modules/enquirer/lib/prompts/select.js +0 -139
  673. package/examples/node_modules/enquirer/lib/prompts/snippet.js +0 -185
  674. package/examples/node_modules/enquirer/lib/prompts/sort.js +0 -37
  675. package/examples/node_modules/enquirer/lib/prompts/survey.js +0 -163
  676. package/examples/node_modules/enquirer/lib/prompts/text.js +0 -1
  677. package/examples/node_modules/enquirer/lib/prompts/toggle.js +0 -109
  678. package/examples/node_modules/enquirer/lib/render.js +0 -33
  679. package/examples/node_modules/enquirer/lib/roles.js +0 -46
  680. package/examples/node_modules/enquirer/lib/state.js +0 -69
  681. package/examples/node_modules/enquirer/lib/styles.js +0 -144
  682. package/examples/node_modules/enquirer/lib/symbols.js +0 -66
  683. package/examples/node_modules/enquirer/lib/theme.js +0 -11
  684. package/examples/node_modules/enquirer/lib/timer.js +0 -38
  685. package/examples/node_modules/enquirer/lib/types/array.js +0 -658
  686. package/examples/node_modules/enquirer/lib/types/auth.js +0 -29
  687. package/examples/node_modules/enquirer/lib/types/boolean.js +0 -88
  688. package/examples/node_modules/enquirer/lib/types/index.js +0 -7
  689. package/examples/node_modules/enquirer/lib/types/number.js +0 -86
  690. package/examples/node_modules/enquirer/lib/types/string.js +0 -185
  691. package/examples/node_modules/enquirer/lib/utils.js +0 -268
  692. package/examples/node_modules/enquirer/package.json +0 -148
  693. package/examples/node_modules/envinfo/LICENSE +0 -21
  694. package/examples/node_modules/envinfo/README.md +0 -285
  695. package/examples/node_modules/envinfo/dist/cli.js +0 -2
  696. package/examples/node_modules/envinfo/dist/envinfo.js +0 -1
  697. package/examples/node_modules/envinfo/package.json +0 -130
  698. package/examples/node_modules/execa/index.d.ts +0 -554
  699. package/examples/node_modules/execa/index.js +0 -258
  700. package/examples/node_modules/execa/lib/command.js +0 -32
  701. package/examples/node_modules/execa/lib/error.js +0 -86
  702. package/examples/node_modules/execa/lib/kill.js +0 -112
  703. package/examples/node_modules/execa/lib/promise.js +0 -46
  704. package/examples/node_modules/execa/lib/stdio.js +0 -52
  705. package/examples/node_modules/execa/lib/stream.js +0 -97
  706. package/examples/node_modules/execa/license +0 -9
  707. package/examples/node_modules/execa/package.json +0 -102
  708. package/examples/node_modules/execa/readme.md +0 -650
  709. package/examples/node_modules/fastest-levenshtein/.eslintrc.js +0 -27
  710. package/examples/node_modules/fastest-levenshtein/.prettierrc +0 -4
  711. package/examples/node_modules/fastest-levenshtein/.travis.yml +0 -17
  712. package/examples/node_modules/fastest-levenshtein/LICENSE.md +0 -21
  713. package/examples/node_modules/fastest-levenshtein/README.md +0 -55
  714. package/examples/node_modules/fastest-levenshtein/index.d.ts +0 -2
  715. package/examples/node_modules/fastest-levenshtein/index.js +0 -147
  716. package/examples/node_modules/fastest-levenshtein/package.json +0 -90
  717. package/examples/node_modules/fastest-levenshtein/test.js +0 -64
  718. package/examples/node_modules/find-up/index.d.ts +0 -137
  719. package/examples/node_modules/find-up/index.js +0 -89
  720. package/examples/node_modules/find-up/license +0 -9
  721. package/examples/node_modules/find-up/package.json +0 -85
  722. package/examples/node_modules/find-up/readme.md +0 -156
  723. package/examples/node_modules/function-bind/.editorconfig +0 -20
  724. package/examples/node_modules/function-bind/.eslintrc +0 -15
  725. package/examples/node_modules/function-bind/.jscs.json +0 -176
  726. package/examples/node_modules/function-bind/.travis.yml +0 -168
  727. package/examples/node_modules/function-bind/LICENSE +0 -20
  728. package/examples/node_modules/function-bind/README.md +0 -48
  729. package/examples/node_modules/function-bind/implementation.js +0 -52
  730. package/examples/node_modules/function-bind/index.js +0 -5
  731. package/examples/node_modules/function-bind/package.json +0 -94
  732. package/examples/node_modules/function-bind/test/.eslintrc +0 -9
  733. package/examples/node_modules/function-bind/test/index.js +0 -252
  734. package/examples/node_modules/get-stream/buffer-stream.js +0 -52
  735. package/examples/node_modules/get-stream/index.d.ts +0 -105
  736. package/examples/node_modules/get-stream/index.js +0 -61
  737. package/examples/node_modules/get-stream/license +0 -9
  738. package/examples/node_modules/get-stream/package.json +0 -79
  739. package/examples/node_modules/get-stream/readme.md +0 -124
  740. package/examples/node_modules/has/LICENSE-MIT +0 -22
  741. package/examples/node_modules/has/README.md +0 -18
  742. package/examples/node_modules/has/package.json +0 -73
  743. package/examples/node_modules/has/src/index.js +0 -5
  744. package/examples/node_modules/has/test/index.js +0 -10
  745. package/examples/node_modules/human-signals/CHANGELOG.md +0 -11
  746. package/examples/node_modules/human-signals/LICENSE +0 -201
  747. package/examples/node_modules/human-signals/README.md +0 -165
  748. package/examples/node_modules/human-signals/build/src/core.js +0 -273
  749. package/examples/node_modules/human-signals/build/src/core.js.map +0 -1
  750. package/examples/node_modules/human-signals/build/src/main.d.ts +0 -52
  751. package/examples/node_modules/human-signals/build/src/main.js +0 -71
  752. package/examples/node_modules/human-signals/build/src/main.js.map +0 -1
  753. package/examples/node_modules/human-signals/build/src/realtime.js +0 -19
  754. package/examples/node_modules/human-signals/build/src/realtime.js.map +0 -1
  755. package/examples/node_modules/human-signals/build/src/signals.js +0 -35
  756. package/examples/node_modules/human-signals/build/src/signals.js.map +0 -1
  757. package/examples/node_modules/human-signals/package.json +0 -96
  758. package/examples/node_modules/import-local/fixtures/cli.js +0 -7
  759. package/examples/node_modules/import-local/index.js +0 -19
  760. package/examples/node_modules/import-local/license +0 -9
  761. package/examples/node_modules/import-local/package.json +0 -83
  762. package/examples/node_modules/import-local/readme.md +0 -38
  763. package/examples/node_modules/interpret/CHANGELOG +0 -115
  764. package/examples/node_modules/interpret/LICENSE +0 -22
  765. package/examples/node_modules/interpret/README.md +0 -229
  766. package/examples/node_modules/interpret/index.js +0 -211
  767. package/examples/node_modules/interpret/mjs-stub.js +0 -1
  768. package/examples/node_modules/interpret/package.json +0 -118
  769. package/examples/node_modules/is-core-module/.eslintignore +0 -1
  770. package/examples/node_modules/is-core-module/.eslintrc +0 -18
  771. package/examples/node_modules/is-core-module/.github/FUNDING.yml +0 -12
  772. package/examples/node_modules/is-core-module/.github/workflows/node-4+.yml +0 -54
  773. package/examples/node_modules/is-core-module/.github/workflows/node-iojs.yml +0 -58
  774. package/examples/node_modules/is-core-module/.github/workflows/node-pretest.yml +0 -26
  775. package/examples/node_modules/is-core-module/.github/workflows/node-zero.yml +0 -58
  776. package/examples/node_modules/is-core-module/.github/workflows/rebase.yml +0 -15
  777. package/examples/node_modules/is-core-module/.github/workflows/require-allow-edits.yml +0 -14
  778. package/examples/node_modules/is-core-module/.nycrc +0 -13
  779. package/examples/node_modules/is-core-module/CHANGELOG.md +0 -58
  780. package/examples/node_modules/is-core-module/LICENSE +0 -20
  781. package/examples/node_modules/is-core-module/README.md +0 -37
  782. package/examples/node_modules/is-core-module/core.json +0 -83
  783. package/examples/node_modules/is-core-module/index.js +0 -69
  784. package/examples/node_modules/is-core-module/package.json +0 -94
  785. package/examples/node_modules/is-core-module/test/index.js +0 -83
  786. package/examples/node_modules/is-plain-object/LICENSE +0 -21
  787. package/examples/node_modules/is-plain-object/README.md +0 -104
  788. package/examples/node_modules/is-plain-object/index.d.ts +0 -5
  789. package/examples/node_modules/is-plain-object/index.js +0 -37
  790. package/examples/node_modules/is-plain-object/package.json +0 -121
  791. package/examples/node_modules/is-stream/index.d.ts +0 -80
  792. package/examples/node_modules/is-stream/index.js +0 -29
  793. package/examples/node_modules/is-stream/license +0 -9
  794. package/examples/node_modules/is-stream/package.json +0 -73
  795. package/examples/node_modules/is-stream/readme.md +0 -57
  796. package/examples/node_modules/isexe/LICENSE +0 -15
  797. package/examples/node_modules/isexe/README.md +0 -51
  798. package/examples/node_modules/isexe/index.js +0 -57
  799. package/examples/node_modules/isexe/mode.js +0 -41
  800. package/examples/node_modules/isexe/package.json +0 -60
  801. package/examples/node_modules/isexe/test/basic.js +0 -221
  802. package/examples/node_modules/isexe/windows.js +0 -42
  803. package/examples/node_modules/isobject/LICENSE +0 -21
  804. package/examples/node_modules/isobject/README.md +0 -122
  805. package/examples/node_modules/isobject/index.d.ts +0 -5
  806. package/examples/node_modules/isobject/index.js +0 -12
  807. package/examples/node_modules/isobject/package.json +0 -119
  808. package/examples/node_modules/kind-of/CHANGELOG.md +0 -160
  809. package/examples/node_modules/kind-of/LICENSE +0 -21
  810. package/examples/node_modules/kind-of/README.md +0 -367
  811. package/examples/node_modules/kind-of/index.js +0 -129
  812. package/examples/node_modules/kind-of/package.json +0 -144
  813. package/examples/node_modules/locate-path/index.d.ts +0 -83
  814. package/examples/node_modules/locate-path/index.js +0 -65
  815. package/examples/node_modules/locate-path/license +0 -9
  816. package/examples/node_modules/locate-path/package.json +0 -77
  817. package/examples/node_modules/locate-path/readme.md +0 -122
  818. package/examples/node_modules/merge-stream/LICENSE +0 -21
  819. package/examples/node_modules/merge-stream/README.md +0 -78
  820. package/examples/node_modules/merge-stream/index.js +0 -41
  821. package/examples/node_modules/merge-stream/package.json +0 -54
  822. package/examples/node_modules/mimic-fn/index.d.ts +0 -54
  823. package/examples/node_modules/mimic-fn/index.js +0 -13
  824. package/examples/node_modules/mimic-fn/license +0 -9
  825. package/examples/node_modules/mimic-fn/package.json +0 -74
  826. package/examples/node_modules/mimic-fn/readme.md +0 -69
  827. package/examples/node_modules/npm-run-path/index.d.ts +0 -89
  828. package/examples/node_modules/npm-run-path/index.js +0 -47
  829. package/examples/node_modules/npm-run-path/license +0 -9
  830. package/examples/node_modules/npm-run-path/package.json +0 -76
  831. package/examples/node_modules/npm-run-path/readme.md +0 -115
  832. package/examples/node_modules/onetime/index.d.ts +0 -64
  833. package/examples/node_modules/onetime/index.js +0 -44
  834. package/examples/node_modules/onetime/license +0 -9
  835. package/examples/node_modules/onetime/package.json +0 -75
  836. package/examples/node_modules/onetime/readme.md +0 -94
  837. package/examples/node_modules/p-limit/index.d.ts +0 -38
  838. package/examples/node_modules/p-limit/index.js +0 -57
  839. package/examples/node_modules/p-limit/license +0 -9
  840. package/examples/node_modules/p-limit/package.json +0 -84
  841. package/examples/node_modules/p-limit/readme.md +0 -101
  842. package/examples/node_modules/p-locate/index.d.ts +0 -64
  843. package/examples/node_modules/p-locate/index.js +0 -52
  844. package/examples/node_modules/p-locate/license +0 -9
  845. package/examples/node_modules/p-locate/package.json +0 -85
  846. package/examples/node_modules/p-locate/readme.md +0 -90
  847. package/examples/node_modules/p-try/index.d.ts +0 -39
  848. package/examples/node_modules/p-try/index.js +0 -9
  849. package/examples/node_modules/p-try/license +0 -9
  850. package/examples/node_modules/p-try/package.json +0 -74
  851. package/examples/node_modules/p-try/readme.md +0 -58
  852. package/examples/node_modules/path-exists/index.d.ts +0 -28
  853. package/examples/node_modules/path-exists/index.js +0 -23
  854. package/examples/node_modules/path-exists/license +0 -9
  855. package/examples/node_modules/path-exists/package.json +0 -71
  856. package/examples/node_modules/path-exists/readme.md +0 -52
  857. package/examples/node_modules/path-key/index.d.ts +0 -40
  858. package/examples/node_modules/path-key/index.js +0 -16
  859. package/examples/node_modules/path-key/license +0 -9
  860. package/examples/node_modules/path-key/package.json +0 -72
  861. package/examples/node_modules/path-key/readme.md +0 -61
  862. package/examples/node_modules/path-parse/.travis.yml +0 -9
  863. package/examples/node_modules/path-parse/LICENSE +0 -21
  864. package/examples/node_modules/path-parse/README.md +0 -42
  865. package/examples/node_modules/path-parse/index.js +0 -93
  866. package/examples/node_modules/path-parse/package.json +0 -61
  867. package/examples/node_modules/path-parse/test.js +0 -77
  868. package/examples/node_modules/pkg-dir/index.d.ts +0 -44
  869. package/examples/node_modules/pkg-dir/index.js +0 -17
  870. package/examples/node_modules/pkg-dir/license +0 -9
  871. package/examples/node_modules/pkg-dir/package.json +0 -88
  872. package/examples/node_modules/pkg-dir/readme.md +0 -66
  873. package/examples/node_modules/rechoir/LICENSE +0 -24
  874. package/examples/node_modules/rechoir/README.md +0 -74
  875. package/examples/node_modules/rechoir/index.js +0 -67
  876. package/examples/node_modules/rechoir/lib/extension.js +0 -19
  877. package/examples/node_modules/rechoir/lib/normalize.js +0 -13
  878. package/examples/node_modules/rechoir/lib/register.js +0 -15
  879. package/examples/node_modules/rechoir/package.json +0 -89
  880. package/examples/node_modules/resolve/.editorconfig +0 -37
  881. package/examples/node_modules/resolve/.eslintignore +0 -1
  882. package/examples/node_modules/resolve/.eslintrc +0 -39
  883. package/examples/node_modules/resolve/LICENSE +0 -21
  884. package/examples/node_modules/resolve/SECURITY.md +0 -3
  885. package/examples/node_modules/resolve/appveyor.yml +0 -74
  886. package/examples/node_modules/resolve/example/async.js +0 -5
  887. package/examples/node_modules/resolve/example/sync.js +0 -3
  888. package/examples/node_modules/resolve/index.js +0 -6
  889. package/examples/node_modules/resolve/lib/async.js +0 -320
  890. package/examples/node_modules/resolve/lib/caller.js +0 -8
  891. package/examples/node_modules/resolve/lib/core.js +0 -53
  892. package/examples/node_modules/resolve/lib/core.json +0 -83
  893. package/examples/node_modules/resolve/lib/is-core.js +0 -5
  894. package/examples/node_modules/resolve/lib/node-modules-paths.js +0 -42
  895. package/examples/node_modules/resolve/lib/normalize-options.js +0 -10
  896. package/examples/node_modules/resolve/lib/sync.js +0 -199
  897. package/examples/node_modules/resolve/package.json +0 -80
  898. package/examples/node_modules/resolve/readme.markdown +0 -279
  899. package/examples/node_modules/resolve/test/.eslintrc +0 -5
  900. package/examples/node_modules/resolve/test/core.js +0 -81
  901. package/examples/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  902. package/examples/node_modules/resolve/test/dotdot/index.js +0 -1
  903. package/examples/node_modules/resolve/test/dotdot.js +0 -29
  904. package/examples/node_modules/resolve/test/faulty_basedir.js +0 -29
  905. package/examples/node_modules/resolve/test/filter.js +0 -34
  906. package/examples/node_modules/resolve/test/filter_sync.js +0 -33
  907. package/examples/node_modules/resolve/test/mock.js +0 -315
  908. package/examples/node_modules/resolve/test/mock_sync.js +0 -216
  909. package/examples/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  910. package/examples/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  911. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  912. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  913. package/examples/node_modules/resolve/test/module_dir.js +0 -56
  914. package/examples/node_modules/resolve/test/node-modules-paths.js +0 -143
  915. package/examples/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  916. package/examples/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  917. package/examples/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  918. package/examples/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  919. package/examples/node_modules/resolve/test/node_path.js +0 -70
  920. package/examples/node_modules/resolve/test/nonstring.js +0 -9
  921. package/examples/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  922. package/examples/node_modules/resolve/test/pathfilter.js +0 -75
  923. package/examples/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  924. package/examples/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  925. package/examples/node_modules/resolve/test/precedence/aaa.js +0 -1
  926. package/examples/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  927. package/examples/node_modules/resolve/test/precedence/bbb.js +0 -1
  928. package/examples/node_modules/resolve/test/precedence.js +0 -23
  929. package/examples/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  930. package/examples/node_modules/resolve/test/resolver/baz/package.json +0 -4
  931. package/examples/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  932. package/examples/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  933. package/examples/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  934. package/examples/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
  935. package/examples/node_modules/resolve/test/resolver/cup.coffee +0 -1
  936. package/examples/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  937. package/examples/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  938. package/examples/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  939. package/examples/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  940. package/examples/node_modules/resolve/test/resolver/foo.js +0 -1
  941. package/examples/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  942. package/examples/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  943. package/examples/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
  944. package/examples/node_modules/resolve/test/resolver/mug.coffee +0 -0
  945. package/examples/node_modules/resolve/test/resolver/mug.js +0 -0
  946. package/examples/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
  947. package/examples/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
  948. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
  949. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
  950. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  951. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
  952. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
  953. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
  954. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
  955. package/examples/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  956. package/examples/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  957. package/examples/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  958. package/examples/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  959. package/examples/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  960. package/examples/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  961. package/examples/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  962. package/examples/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
  963. package/examples/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
  964. package/examples/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  965. package/examples/node_modules/resolve/test/resolver.js +0 -450
  966. package/examples/node_modules/resolve/test/resolver_sync.js +0 -358
  967. package/examples/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  968. package/examples/node_modules/resolve/test/shadowed_core.js +0 -54
  969. package/examples/node_modules/resolve/test/subdirs.js +0 -13
  970. package/examples/node_modules/resolve/test/symlinks.js +0 -176
  971. package/examples/node_modules/resolve-cwd/index.d.ts +0 -48
  972. package/examples/node_modules/resolve-cwd/index.js +0 -5
  973. package/examples/node_modules/resolve-cwd/license +0 -9
  974. package/examples/node_modules/resolve-cwd/package.json +0 -75
  975. package/examples/node_modules/resolve-cwd/readme.md +0 -58
  976. package/examples/node_modules/resolve-from/index.d.ts +0 -31
  977. package/examples/node_modules/resolve-from/index.js +0 -47
  978. package/examples/node_modules/resolve-from/license +0 -9
  979. package/examples/node_modules/resolve-from/package.json +0 -68
  980. package/examples/node_modules/resolve-from/readme.md +0 -72
  981. package/examples/node_modules/shallow-clone/LICENSE +0 -21
  982. package/examples/node_modules/shallow-clone/README.md +0 -153
  983. package/examples/node_modules/shallow-clone/index.js +0 -83
  984. package/examples/node_modules/shallow-clone/package.json +0 -101
  985. package/examples/node_modules/shebang-command/index.js +0 -19
  986. package/examples/node_modules/shebang-command/license +0 -9
  987. package/examples/node_modules/shebang-command/package.json +0 -66
  988. package/examples/node_modules/shebang-command/readme.md +0 -34
  989. package/examples/node_modules/shebang-regex/index.d.ts +0 -22
  990. package/examples/node_modules/shebang-regex/index.js +0 -2
  991. package/examples/node_modules/shebang-regex/license +0 -9
  992. package/examples/node_modules/shebang-regex/package.json +0 -67
  993. package/examples/node_modules/shebang-regex/readme.md +0 -33
  994. package/examples/node_modules/signal-exit/CHANGELOG.md +0 -35
  995. package/examples/node_modules/signal-exit/LICENSE.txt +0 -16
  996. package/examples/node_modules/signal-exit/README.md +0 -39
  997. package/examples/node_modules/signal-exit/index.js +0 -163
  998. package/examples/node_modules/signal-exit/package.json +0 -66
  999. package/examples/node_modules/signal-exit/signals.js +0 -53
  1000. package/examples/node_modules/strip-final-newline/index.js +0 -16
  1001. package/examples/node_modules/strip-final-newline/license +0 -9
  1002. package/examples/node_modules/strip-final-newline/package.json +0 -72
  1003. package/examples/node_modules/strip-final-newline/readme.md +0 -30
  1004. package/examples/node_modules/v8-compile-cache/CHANGELOG.md +0 -53
  1005. package/examples/node_modules/v8-compile-cache/LICENSE +0 -21
  1006. package/examples/node_modules/v8-compile-cache/README.md +0 -55
  1007. package/examples/node_modules/v8-compile-cache/package.json +0 -66
  1008. package/examples/node_modules/v8-compile-cache/v8-compile-cache.js +0 -371
  1009. package/examples/node_modules/webpack-cli/CHANGELOG.md +0 -501
  1010. package/examples/node_modules/webpack-cli/LICENSE +0 -20
  1011. package/examples/node_modules/webpack-cli/README.md +0 -116
  1012. package/examples/node_modules/webpack-cli/bin/cli.js +0 -40
  1013. package/examples/node_modules/webpack-cli/lib/bootstrap.js +0 -18
  1014. package/examples/node_modules/webpack-cli/lib/index.js +0 -5
  1015. package/examples/node_modules/webpack-cli/lib/plugins/CLIPlugin.js +0 -99
  1016. package/examples/node_modules/webpack-cli/lib/utils/__tests__/get-package-manager.test.js +0 -108
  1017. package/examples/node_modules/webpack-cli/lib/utils/__tests__/prompt-installation.test.js +0 -118
  1018. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-all-lock/pnpm-lock.yaml +0 -0
  1019. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-all-lock/yarn.lock +0 -0
  1020. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-pnpm/pnpm-lock.yaml +0 -0
  1021. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-yarn/yarn.lock +0 -0
  1022. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-pnpm-lock/pnpm-lock.yaml +0 -0
  1023. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-and-pnpm/pnpm-lock.yaml +0 -0
  1024. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-and-pnpm/yarn.lock +0 -0
  1025. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-lock/yarn.lock +0 -0
  1026. package/examples/node_modules/webpack-cli/lib/utils/capitalize-first-letter.js +0 -9
  1027. package/examples/node_modules/webpack-cli/lib/utils/dynamic-import-loader.js +0 -13
  1028. package/examples/node_modules/webpack-cli/lib/utils/get-package-manager.js +0 -65
  1029. package/examples/node_modules/webpack-cli/lib/utils/index.js +0 -49
  1030. package/examples/node_modules/webpack-cli/lib/utils/logger.js +0 -11
  1031. package/examples/node_modules/webpack-cli/lib/utils/package-exists.js +0 -9
  1032. package/examples/node_modules/webpack-cli/lib/utils/prompt-installation.js +0 -58
  1033. package/examples/node_modules/webpack-cli/lib/utils/run-command.js +0 -13
  1034. package/examples/node_modules/webpack-cli/lib/utils/to-kebab-case.js +0 -5
  1035. package/examples/node_modules/webpack-cli/lib/webpack-cli.js +0 -1803
  1036. package/examples/node_modules/webpack-cli/package.json +0 -96
  1037. package/examples/node_modules/webpack-merge/CHANGELOG.md +0 -421
  1038. package/examples/node_modules/webpack-merge/LICENSE +0 -20
  1039. package/examples/node_modules/webpack-merge/README.md +0 -314
  1040. package/examples/node_modules/webpack-merge/dist/index.d.ts +0 -15
  1041. package/examples/node_modules/webpack-merge/dist/index.js +0 -262
  1042. package/examples/node_modules/webpack-merge/dist/index.js.map +0 -1
  1043. package/examples/node_modules/webpack-merge/dist/join-arrays.d.ts +0 -6
  1044. package/examples/node_modules/webpack-merge/dist/join-arrays.js +0 -69
  1045. package/examples/node_modules/webpack-merge/dist/join-arrays.js.map +0 -1
  1046. package/examples/node_modules/webpack-merge/dist/merge-with.d.ts +0 -2
  1047. package/examples/node_modules/webpack-merge/dist/merge-with.js +0 -38
  1048. package/examples/node_modules/webpack-merge/dist/merge-with.js.map +0 -1
  1049. package/examples/node_modules/webpack-merge/dist/types.d.ts +0 -13
  1050. package/examples/node_modules/webpack-merge/dist/types.js +0 -12
  1051. package/examples/node_modules/webpack-merge/dist/types.js.map +0 -1
  1052. package/examples/node_modules/webpack-merge/dist/unique.d.ts +0 -2
  1053. package/examples/node_modules/webpack-merge/dist/unique.js +0 -40
  1054. package/examples/node_modules/webpack-merge/dist/unique.js.map +0 -1
  1055. package/examples/node_modules/webpack-merge/dist/utils.d.ts +0 -5
  1056. package/examples/node_modules/webpack-merge/dist/utils.js +0 -24
  1057. package/examples/node_modules/webpack-merge/dist/utils.js.map +0 -1
  1058. package/examples/node_modules/webpack-merge/package.json +0 -86
  1059. package/examples/node_modules/which/CHANGELOG.md +0 -166
  1060. package/examples/node_modules/which/LICENSE +0 -15
  1061. package/examples/node_modules/which/README.md +0 -54
  1062. package/examples/node_modules/which/bin/node-which +0 -52
  1063. package/examples/node_modules/which/package.json +0 -76
  1064. package/examples/node_modules/which/which.js +0 -125
  1065. package/examples/node_modules/wildcard/.travis.yml +0 -9
  1066. package/examples/node_modules/wildcard/README.md +0 -99
  1067. package/examples/node_modules/wildcard/docs.json +0 -9
  1068. package/examples/node_modules/wildcard/examples/arrays.js +0 -10
  1069. package/examples/node_modules/wildcard/examples/objects.js +0 -10
  1070. package/examples/node_modules/wildcard/examples/strings.js +0 -7
  1071. package/examples/node_modules/wildcard/index.js +0 -114
  1072. package/examples/node_modules/wildcard/package.json +0 -82
  1073. package/examples/node_modules/wildcard/test/all.js +0 -3
  1074. package/examples/node_modules/wildcard/test/arrays.js +0 -33
  1075. package/examples/node_modules/wildcard/test/objects.js +0 -106
  1076. package/examples/node_modules/wildcard/test/strings.js +0 -46
  1077. package/examples/node_modules/wildcard/yarn.lock +0 -228
  1078. package/examples/objects.js +0 -35
  1079. package/examples/package.json +0 -3
  1080. package/examples/serialization.js +0 -16
  1081. package/examples/sparse_matrices.js +0 -19
  1082. package/examples/units.js +0 -108
  1083. package/lib/cjs/function/algebra/simplify/resolve.js +0 -76
  1084. package/lib/esm/function/algebra/simplify/resolve.js +0 -67
@@ -1,2217 +0,0 @@
1
- /**
2
- * Module dependencies.
3
- */
4
-
5
- const EventEmitter = require('events').EventEmitter;
6
- const childProcess = require('child_process');
7
- const path = require('path');
8
- const fs = require('fs');
9
-
10
- // @ts-check
11
-
12
- // Although this is a class, methods are static in style to allow override using subclass or just functions.
13
- class Help {
14
- constructor() {
15
- this.helpWidth = undefined;
16
- this.sortSubcommands = false;
17
- this.sortOptions = false;
18
- }
19
-
20
- /**
21
- * Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one.
22
- *
23
- * @param {Command} cmd
24
- * @returns {Command[]}
25
- */
26
-
27
- visibleCommands(cmd) {
28
- const visibleCommands = cmd.commands.filter(cmd => !cmd._hidden);
29
- if (cmd._hasImplicitHelpCommand()) {
30
- // Create a command matching the implicit help command.
31
- const args = cmd._helpCommandnameAndArgs.split(/ +/);
32
- const helpCommand = cmd.createCommand(args.shift())
33
- .helpOption(false);
34
- helpCommand.description(cmd._helpCommandDescription);
35
- helpCommand._parseExpectedArgs(args);
36
- visibleCommands.push(helpCommand);
37
- }
38
- if (this.sortSubcommands) {
39
- visibleCommands.sort((a, b) => {
40
- return a.name().localeCompare(b.name());
41
- });
42
- }
43
- return visibleCommands;
44
- }
45
-
46
- /**
47
- * Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one.
48
- *
49
- * @param {Command} cmd
50
- * @returns {Option[]}
51
- */
52
-
53
- visibleOptions(cmd) {
54
- const visibleOptions = cmd.options.filter((option) => !option.hidden);
55
- // Implicit help
56
- const showShortHelpFlag = cmd._hasHelpOption && cmd._helpShortFlag && !cmd._findOption(cmd._helpShortFlag);
57
- const showLongHelpFlag = cmd._hasHelpOption && !cmd._findOption(cmd._helpLongFlag);
58
- if (showShortHelpFlag || showLongHelpFlag) {
59
- let helpOption;
60
- if (!showShortHelpFlag) {
61
- helpOption = cmd.createOption(cmd._helpLongFlag, cmd._helpDescription);
62
- } else if (!showLongHelpFlag) {
63
- helpOption = cmd.createOption(cmd._helpShortFlag, cmd._helpDescription);
64
- } else {
65
- helpOption = cmd.createOption(cmd._helpFlags, cmd._helpDescription);
66
- }
67
- visibleOptions.push(helpOption);
68
- }
69
- if (this.sortOptions) {
70
- const getSortKey = (option) => {
71
- // WYSIWYG for order displayed in help with short before long, no special handling for negated.
72
- return option.short ? option.short.replace(/^-/, '') : option.long.replace(/^--/, '');
73
- };
74
- visibleOptions.sort((a, b) => {
75
- return getSortKey(a).localeCompare(getSortKey(b));
76
- });
77
- }
78
- return visibleOptions;
79
- }
80
-
81
- /**
82
- * Get an array of the arguments which have descriptions.
83
- *
84
- * @param {Command} cmd
85
- * @returns {{ term: string, description:string }[]}
86
- */
87
-
88
- visibleArguments(cmd) {
89
- if (cmd._argsDescription && cmd._args.length) {
90
- return cmd._args.map((argument) => {
91
- return { term: argument.name, description: cmd._argsDescription[argument.name] || '' };
92
- }, 0);
93
- }
94
- return [];
95
- }
96
-
97
- /**
98
- * Get the command term to show in the list of subcommands.
99
- *
100
- * @param {Command} cmd
101
- * @returns {string}
102
- */
103
-
104
- subcommandTerm(cmd) {
105
- // Legacy. Ignores custom usage string, and nested commands.
106
- const args = cmd._args.map(arg => humanReadableArgName(arg)).join(' ');
107
- return cmd._name +
108
- (cmd._aliases[0] ? '|' + cmd._aliases[0] : '') +
109
- (cmd.options.length ? ' [options]' : '') + // simplistic check for non-help option
110
- (args ? ' ' + args : '');
111
- }
112
-
113
- /**
114
- * Get the option term to show in the list of options.
115
- *
116
- * @param {Option} option
117
- * @returns {string}
118
- */
119
-
120
- optionTerm(option) {
121
- return option.flags;
122
- }
123
-
124
- /**
125
- * Get the longest command term length.
126
- *
127
- * @param {Command} cmd
128
- * @param {Help} helper
129
- * @returns {number}
130
- */
131
-
132
- longestSubcommandTermLength(cmd, helper) {
133
- return helper.visibleCommands(cmd).reduce((max, command) => {
134
- return Math.max(max, helper.subcommandTerm(command).length);
135
- }, 0);
136
- };
137
-
138
- /**
139
- * Get the longest option term length.
140
- *
141
- * @param {Command} cmd
142
- * @param {Help} helper
143
- * @returns {number}
144
- */
145
-
146
- longestOptionTermLength(cmd, helper) {
147
- return helper.visibleOptions(cmd).reduce((max, option) => {
148
- return Math.max(max, helper.optionTerm(option).length);
149
- }, 0);
150
- };
151
-
152
- /**
153
- * Get the longest argument term length.
154
- *
155
- * @param {Command} cmd
156
- * @param {Help} helper
157
- * @returns {number}
158
- */
159
-
160
- longestArgumentTermLength(cmd, helper) {
161
- return helper.visibleArguments(cmd).reduce((max, argument) => {
162
- return Math.max(max, argument.term.length);
163
- }, 0);
164
- };
165
-
166
- /**
167
- * Get the command usage to be displayed at the top of the built-in help.
168
- *
169
- * @param {Command} cmd
170
- * @returns {string}
171
- */
172
-
173
- commandUsage(cmd) {
174
- // Usage
175
- let cmdName = cmd._name;
176
- if (cmd._aliases[0]) {
177
- cmdName = cmdName + '|' + cmd._aliases[0];
178
- }
179
- let parentCmdNames = '';
180
- for (let parentCmd = cmd.parent; parentCmd; parentCmd = parentCmd.parent) {
181
- parentCmdNames = parentCmd.name() + ' ' + parentCmdNames;
182
- }
183
- return parentCmdNames + cmdName + ' ' + cmd.usage();
184
- }
185
-
186
- /**
187
- * Get the description for the command.
188
- *
189
- * @param {Command} cmd
190
- * @returns {string}
191
- */
192
-
193
- commandDescription(cmd) {
194
- // @ts-ignore: overloaded return type
195
- return cmd.description();
196
- }
197
-
198
- /**
199
- * Get the command description to show in the list of subcommands.
200
- *
201
- * @param {Command} cmd
202
- * @returns {string}
203
- */
204
-
205
- subcommandDescription(cmd) {
206
- // @ts-ignore: overloaded return type
207
- return cmd.description();
208
- }
209
-
210
- /**
211
- * Get the option description to show in the list of options.
212
- *
213
- * @param {Option} option
214
- * @return {string}
215
- */
216
-
217
- optionDescription(option) {
218
- if (option.negate) {
219
- return option.description;
220
- }
221
- const extraInfo = [];
222
- if (option.argChoices) {
223
- extraInfo.push(
224
- // use stringify to match the display of the default value
225
- `choices: ${option.argChoices.map((choice) => JSON.stringify(choice)).join(', ')}`);
226
- }
227
- if (option.defaultValue !== undefined) {
228
- extraInfo.push(`default: ${option.defaultValueDescription || JSON.stringify(option.defaultValue)}`);
229
- }
230
- if (extraInfo.length > 0) {
231
- return `${option.description} (${extraInfo.join(', ')})`;
232
- }
233
- return option.description;
234
- };
235
-
236
- /**
237
- * Generate the built-in help text.
238
- *
239
- * @param {Command} cmd
240
- * @param {Help} helper
241
- * @returns {string}
242
- */
243
-
244
- formatHelp(cmd, helper) {
245
- const termWidth = helper.padWidth(cmd, helper);
246
- const helpWidth = helper.helpWidth || 80;
247
- const itemIndentWidth = 2;
248
- const itemSeparatorWidth = 2; // between term and description
249
- function formatItem(term, description) {
250
- if (description) {
251
- const fullText = `${term.padEnd(termWidth + itemSeparatorWidth)}${description}`;
252
- return helper.wrap(fullText, helpWidth - itemIndentWidth, termWidth + itemSeparatorWidth);
253
- }
254
- return term;
255
- };
256
- function formatList(textArray) {
257
- return textArray.join('\n').replace(/^/gm, ' '.repeat(itemIndentWidth));
258
- }
259
-
260
- // Usage
261
- let output = [`Usage: ${helper.commandUsage(cmd)}`, ''];
262
-
263
- // Description
264
- const commandDescription = helper.commandDescription(cmd);
265
- if (commandDescription.length > 0) {
266
- output = output.concat([commandDescription, '']);
267
- }
268
-
269
- // Arguments
270
- const argumentList = helper.visibleArguments(cmd).map((argument) => {
271
- return formatItem(argument.term, argument.description);
272
- });
273
- if (argumentList.length > 0) {
274
- output = output.concat(['Arguments:', formatList(argumentList), '']);
275
- }
276
-
277
- // Options
278
- const optionList = helper.visibleOptions(cmd).map((option) => {
279
- return formatItem(helper.optionTerm(option), helper.optionDescription(option));
280
- });
281
- if (optionList.length > 0) {
282
- output = output.concat(['Options:', formatList(optionList), '']);
283
- }
284
-
285
- // Commands
286
- const commandList = helper.visibleCommands(cmd).map((cmd) => {
287
- return formatItem(helper.subcommandTerm(cmd), helper.subcommandDescription(cmd));
288
- });
289
- if (commandList.length > 0) {
290
- output = output.concat(['Commands:', formatList(commandList), '']);
291
- }
292
-
293
- return output.join('\n');
294
- }
295
-
296
- /**
297
- * Calculate the pad width from the maximum term length.
298
- *
299
- * @param {Command} cmd
300
- * @param {Help} helper
301
- * @returns {number}
302
- */
303
-
304
- padWidth(cmd, helper) {
305
- return Math.max(
306
- helper.longestOptionTermLength(cmd, helper),
307
- helper.longestSubcommandTermLength(cmd, helper),
308
- helper.longestArgumentTermLength(cmd, helper)
309
- );
310
- };
311
-
312
- /**
313
- * Wrap the given string to width characters per line, with lines after the first indented.
314
- * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.
315
- *
316
- * @param {string} str
317
- * @param {number} width
318
- * @param {number} indent
319
- * @param {number} [minColumnWidth=40]
320
- * @return {string}
321
- *
322
- */
323
-
324
- wrap(str, width, indent, minColumnWidth = 40) {
325
- // Detect manually wrapped and indented strings by searching for line breaks
326
- // followed by multiple spaces/tabs.
327
- if (str.match(/[\n]\s+/)) return str;
328
- // Do not wrap if not enough room for a wrapped column of text (as could end up with a word per line).
329
- const columnWidth = width - indent;
330
- if (columnWidth < minColumnWidth) return str;
331
-
332
- const leadingStr = str.substr(0, indent);
333
- const columnText = str.substr(indent);
334
-
335
- const indentString = ' '.repeat(indent);
336
- const regex = new RegExp('.{1,' + (columnWidth - 1) + '}([\\s\u200B]|$)|[^\\s\u200B]+?([\\s\u200B]|$)', 'g');
337
- const lines = columnText.match(regex) || [];
338
- return leadingStr + lines.map((line, i) => {
339
- if (line.slice(-1) === '\n') {
340
- line = line.slice(0, line.length - 1);
341
- }
342
- return ((i > 0) ? indentString : '') + line.trimRight();
343
- }).join('\n');
344
- }
345
- }
346
-
347
- class Option {
348
- /**
349
- * Initialize a new `Option` with the given `flags` and `description`.
350
- *
351
- * @param {string} flags
352
- * @param {string} [description]
353
- */
354
-
355
- constructor(flags, description) {
356
- this.flags = flags;
357
- this.description = description || '';
358
-
359
- this.required = flags.includes('<'); // A value must be supplied when the option is specified.
360
- this.optional = flags.includes('['); // A value is optional when the option is specified.
361
- // variadic test ignores <value,...> et al which might be used to describe custom splitting of single argument
362
- this.variadic = /\w\.\.\.[>\]]$/.test(flags); // The option can take multiple values.
363
- this.mandatory = false; // The option must have a value after parsing, which usually means it must be specified on command line.
364
- const optionFlags = _parseOptionFlags(flags);
365
- this.short = optionFlags.shortFlag;
366
- this.long = optionFlags.longFlag;
367
- this.negate = false;
368
- if (this.long) {
369
- this.negate = this.long.startsWith('--no-');
370
- }
371
- this.defaultValue = undefined;
372
- this.defaultValueDescription = undefined;
373
- this.parseArg = undefined;
374
- this.hidden = false;
375
- this.argChoices = undefined;
376
- }
377
-
378
- /**
379
- * Set the default value, and optionally supply the description to be displayed in the help.
380
- *
381
- * @param {any} value
382
- * @param {string} [description]
383
- * @return {Option}
384
- */
385
-
386
- default(value, description) {
387
- this.defaultValue = value;
388
- this.defaultValueDescription = description;
389
- return this;
390
- };
391
-
392
- /**
393
- * Set the custom handler for processing CLI option arguments into option values.
394
- *
395
- * @param {Function} [fn]
396
- * @return {Option}
397
- */
398
-
399
- argParser(fn) {
400
- this.parseArg = fn;
401
- return this;
402
- };
403
-
404
- /**
405
- * Whether the option is mandatory and must have a value after parsing.
406
- *
407
- * @param {boolean} [mandatory=true]
408
- * @return {Option}
409
- */
410
-
411
- makeOptionMandatory(mandatory = true) {
412
- this.mandatory = !!mandatory;
413
- return this;
414
- };
415
-
416
- /**
417
- * Hide option in help.
418
- *
419
- * @param {boolean} [hide=true]
420
- * @return {Option}
421
- */
422
-
423
- hideHelp(hide = true) {
424
- this.hidden = !!hide;
425
- return this;
426
- };
427
-
428
- /**
429
- * @api private
430
- */
431
-
432
- _concatValue(value, previous) {
433
- if (previous === this.defaultValue || !Array.isArray(previous)) {
434
- return [value];
435
- }
436
-
437
- return previous.concat(value);
438
- }
439
-
440
- /**
441
- * Only allow option value to be one of choices.
442
- *
443
- * @param {string[]} values
444
- * @return {Option}
445
- */
446
-
447
- choices(values) {
448
- this.argChoices = values;
449
- this.parseArg = (arg, previous) => {
450
- if (!values.includes(arg)) {
451
- throw new InvalidOptionArgumentError(`Allowed choices are ${values.join(', ')}.`);
452
- }
453
- if (this.variadic) {
454
- return this._concatValue(arg, previous);
455
- }
456
- return arg;
457
- };
458
- return this;
459
- };
460
-
461
- /**
462
- * Return option name.
463
- *
464
- * @return {string}
465
- */
466
-
467
- name() {
468
- if (this.long) {
469
- return this.long.replace(/^--/, '');
470
- }
471
- return this.short.replace(/^-/, '');
472
- };
473
-
474
- /**
475
- * Return option name, in a camelcase format that can be used
476
- * as a object attribute key.
477
- *
478
- * @return {string}
479
- * @api private
480
- */
481
-
482
- attributeName() {
483
- return camelcase(this.name().replace(/^no-/, ''));
484
- };
485
-
486
- /**
487
- * Check if `arg` matches the short or long flag.
488
- *
489
- * @param {string} arg
490
- * @return {boolean}
491
- * @api private
492
- */
493
-
494
- is(arg) {
495
- return this.short === arg || this.long === arg;
496
- };
497
- }
498
-
499
- /**
500
- * CommanderError class
501
- * @class
502
- */
503
- class CommanderError extends Error {
504
- /**
505
- * Constructs the CommanderError class
506
- * @param {number} exitCode suggested exit code which could be used with process.exit
507
- * @param {string} code an id string representing the error
508
- * @param {string} message human-readable description of the error
509
- * @constructor
510
- */
511
- constructor(exitCode, code, message) {
512
- super(message);
513
- // properly capture stack trace in Node.js
514
- Error.captureStackTrace(this, this.constructor);
515
- this.name = this.constructor.name;
516
- this.code = code;
517
- this.exitCode = exitCode;
518
- this.nestedError = undefined;
519
- }
520
- }
521
-
522
- /**
523
- * InvalidOptionArgumentError class
524
- * @class
525
- */
526
- class InvalidOptionArgumentError extends CommanderError {
527
- /**
528
- * Constructs the InvalidOptionArgumentError class
529
- * @param {string} [message] explanation of why argument is invalid
530
- * @constructor
531
- */
532
- constructor(message) {
533
- super(1, 'commander.invalidOptionArgument', message);
534
- // properly capture stack trace in Node.js
535
- Error.captureStackTrace(this, this.constructor);
536
- this.name = this.constructor.name;
537
- }
538
- }
539
-
540
- class Command extends EventEmitter {
541
- /**
542
- * Initialize a new `Command`.
543
- *
544
- * @param {string} [name]
545
- */
546
-
547
- constructor(name) {
548
- super();
549
- this.commands = [];
550
- this.options = [];
551
- this.parent = null;
552
- this._allowUnknownOption = false;
553
- this._allowExcessArguments = true;
554
- this._args = [];
555
- this.rawArgs = null;
556
- this._scriptPath = null;
557
- this._name = name || '';
558
- this._optionValues = {};
559
- this._storeOptionsAsProperties = false;
560
- this._actionResults = [];
561
- this._actionHandler = null;
562
- this._executableHandler = false;
563
- this._executableFile = null; // custom name for executable
564
- this._defaultCommandName = null;
565
- this._exitCallback = null;
566
- this._aliases = [];
567
- this._combineFlagAndOptionalValue = true;
568
- this._description = '';
569
- this._argsDescription = undefined;
570
- this._enablePositionalOptions = false;
571
- this._passThroughOptions = false;
572
-
573
- // see .configureOutput() for docs
574
- this._outputConfiguration = {
575
- writeOut: (str) => process.stdout.write(str),
576
- writeErr: (str) => process.stderr.write(str),
577
- getOutHelpWidth: () => process.stdout.isTTY ? process.stdout.columns : undefined,
578
- getErrHelpWidth: () => process.stderr.isTTY ? process.stderr.columns : undefined,
579
- outputError: (str, write) => write(str)
580
- };
581
-
582
- this._hidden = false;
583
- this._hasHelpOption = true;
584
- this._helpFlags = '-h, --help';
585
- this._helpDescription = 'display help for command';
586
- this._helpShortFlag = '-h';
587
- this._helpLongFlag = '--help';
588
- this._addImplicitHelpCommand = undefined; // Deliberately undefined, not decided whether true or false
589
- this._helpCommandName = 'help';
590
- this._helpCommandnameAndArgs = 'help [command]';
591
- this._helpCommandDescription = 'display help for command';
592
- this._helpConfiguration = {};
593
- }
594
-
595
- /**
596
- * Define a command.
597
- *
598
- * There are two styles of command: pay attention to where to put the description.
599
- *
600
- * Examples:
601
- *
602
- * // Command implemented using action handler (description is supplied separately to `.command`)
603
- * program
604
- * .command('clone <source> [destination]')
605
- * .description('clone a repository into a newly created directory')
606
- * .action((source, destination) => {
607
- * console.log('clone command called');
608
- * });
609
- *
610
- * // Command implemented using separate executable file (description is second parameter to `.command`)
611
- * program
612
- * .command('start <service>', 'start named service')
613
- * .command('stop [service]', 'stop named service, or all if no name supplied');
614
- *
615
- * @param {string} nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`
616
- * @param {Object|string} [actionOptsOrExecDesc] - configuration options (for action), or description (for executable)
617
- * @param {Object} [execOpts] - configuration options (for executable)
618
- * @return {Command} returns new command for action handler, or `this` for executable command
619
- */
620
-
621
- command(nameAndArgs, actionOptsOrExecDesc, execOpts) {
622
- let desc = actionOptsOrExecDesc;
623
- let opts = execOpts;
624
- if (typeof desc === 'object' && desc !== null) {
625
- opts = desc;
626
- desc = null;
627
- }
628
- opts = opts || {};
629
- const args = nameAndArgs.split(/ +/);
630
- const cmd = this.createCommand(args.shift());
631
-
632
- if (desc) {
633
- cmd.description(desc);
634
- cmd._executableHandler = true;
635
- }
636
- if (opts.isDefault) this._defaultCommandName = cmd._name;
637
-
638
- cmd._outputConfiguration = this._outputConfiguration;
639
-
640
- cmd._hidden = !!(opts.noHelp || opts.hidden); // noHelp is deprecated old name for hidden
641
- cmd._hasHelpOption = this._hasHelpOption;
642
- cmd._helpFlags = this._helpFlags;
643
- cmd._helpDescription = this._helpDescription;
644
- cmd._helpShortFlag = this._helpShortFlag;
645
- cmd._helpLongFlag = this._helpLongFlag;
646
- cmd._helpCommandName = this._helpCommandName;
647
- cmd._helpCommandnameAndArgs = this._helpCommandnameAndArgs;
648
- cmd._helpCommandDescription = this._helpCommandDescription;
649
- cmd._helpConfiguration = this._helpConfiguration;
650
- cmd._exitCallback = this._exitCallback;
651
- cmd._storeOptionsAsProperties = this._storeOptionsAsProperties;
652
- cmd._combineFlagAndOptionalValue = this._combineFlagAndOptionalValue;
653
- cmd._allowExcessArguments = this._allowExcessArguments;
654
- cmd._enablePositionalOptions = this._enablePositionalOptions;
655
-
656
- cmd._executableFile = opts.executableFile || null; // Custom name for executable file, set missing to null to match constructor
657
- this.commands.push(cmd);
658
- cmd._parseExpectedArgs(args);
659
- cmd.parent = this;
660
-
661
- if (desc) return this;
662
- return cmd;
663
- };
664
-
665
- /**
666
- * Factory routine to create a new unattached command.
667
- *
668
- * See .command() for creating an attached subcommand, which uses this routine to
669
- * create the command. You can override createCommand to customise subcommands.
670
- *
671
- * @param {string} [name]
672
- * @return {Command} new command
673
- */
674
-
675
- createCommand(name) {
676
- return new Command(name);
677
- };
678
-
679
- /**
680
- * You can customise the help with a subclass of Help by overriding createHelp,
681
- * or by overriding Help properties using configureHelp().
682
- *
683
- * @return {Help}
684
- */
685
-
686
- createHelp() {
687
- return Object.assign(new Help(), this.configureHelp());
688
- };
689
-
690
- /**
691
- * You can customise the help by overriding Help properties using configureHelp(),
692
- * or with a subclass of Help by overriding createHelp().
693
- *
694
- * @param {Object} [configuration] - configuration options
695
- * @return {Command|Object} `this` command for chaining, or stored configuration
696
- */
697
-
698
- configureHelp(configuration) {
699
- if (configuration === undefined) return this._helpConfiguration;
700
-
701
- this._helpConfiguration = configuration;
702
- return this;
703
- }
704
-
705
- /**
706
- * The default output goes to stdout and stderr. You can customise this for special
707
- * applications. You can also customise the display of errors by overriding outputError.
708
- *
709
- * The configuration properties are all functions:
710
- *
711
- * // functions to change where being written, stdout and stderr
712
- * writeOut(str)
713
- * writeErr(str)
714
- * // matching functions to specify width for wrapping help
715
- * getOutHelpWidth()
716
- * getErrHelpWidth()
717
- * // functions based on what is being written out
718
- * outputError(str, write) // used for displaying errors, and not used for displaying help
719
- *
720
- * @param {Object} [configuration] - configuration options
721
- * @return {Command|Object} `this` command for chaining, or stored configuration
722
- */
723
-
724
- configureOutput(configuration) {
725
- if (configuration === undefined) return this._outputConfiguration;
726
-
727
- Object.assign(this._outputConfiguration, configuration);
728
- return this;
729
- }
730
-
731
- /**
732
- * Add a prepared subcommand.
733
- *
734
- * See .command() for creating an attached subcommand which inherits settings from its parent.
735
- *
736
- * @param {Command} cmd - new subcommand
737
- * @param {Object} [opts] - configuration options
738
- * @return {Command} `this` command for chaining
739
- */
740
-
741
- addCommand(cmd, opts) {
742
- if (!cmd._name) throw new Error('Command passed to .addCommand() must have a name');
743
-
744
- // To keep things simple, block automatic name generation for deeply nested executables.
745
- // Fail fast and detect when adding rather than later when parsing.
746
- function checkExplicitNames(commandArray) {
747
- commandArray.forEach((cmd) => {
748
- if (cmd._executableHandler && !cmd._executableFile) {
749
- throw new Error(`Must specify executableFile for deeply nested executable: ${cmd.name()}`);
750
- }
751
- checkExplicitNames(cmd.commands);
752
- });
753
- }
754
- checkExplicitNames(cmd.commands);
755
-
756
- opts = opts || {};
757
- if (opts.isDefault) this._defaultCommandName = cmd._name;
758
- if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing implementation
759
-
760
- this.commands.push(cmd);
761
- cmd.parent = this;
762
- return this;
763
- };
764
-
765
- /**
766
- * Define argument syntax for the command.
767
- */
768
-
769
- arguments(desc) {
770
- return this._parseExpectedArgs(desc.split(/ +/));
771
- };
772
-
773
- /**
774
- * Override default decision whether to add implicit help command.
775
- *
776
- * addHelpCommand() // force on
777
- * addHelpCommand(false); // force off
778
- * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details
779
- *
780
- * @return {Command} `this` command for chaining
781
- */
782
-
783
- addHelpCommand(enableOrNameAndArgs, description) {
784
- if (enableOrNameAndArgs === false) {
785
- this._addImplicitHelpCommand = false;
786
- } else {
787
- this._addImplicitHelpCommand = true;
788
- if (typeof enableOrNameAndArgs === 'string') {
789
- this._helpCommandName = enableOrNameAndArgs.split(' ')[0];
790
- this._helpCommandnameAndArgs = enableOrNameAndArgs;
791
- }
792
- this._helpCommandDescription = description || this._helpCommandDescription;
793
- }
794
- return this;
795
- };
796
-
797
- /**
798
- * @return {boolean}
799
- * @api private
800
- */
801
-
802
- _hasImplicitHelpCommand() {
803
- if (this._addImplicitHelpCommand === undefined) {
804
- return this.commands.length && !this._actionHandler && !this._findCommand('help');
805
- }
806
- return this._addImplicitHelpCommand;
807
- };
808
-
809
- /**
810
- * Parse expected `args`.
811
- *
812
- * For example `["[type]"]` becomes `[{ required: false, name: 'type' }]`.
813
- *
814
- * @param {Array} args
815
- * @return {Command} `this` command for chaining
816
- * @api private
817
- */
818
-
819
- _parseExpectedArgs(args) {
820
- if (!args.length) return;
821
- args.forEach((arg) => {
822
- const argDetails = {
823
- required: false,
824
- name: '',
825
- variadic: false
826
- };
827
-
828
- switch (arg[0]) {
829
- case '<':
830
- argDetails.required = true;
831
- argDetails.name = arg.slice(1, -1);
832
- break;
833
- case '[':
834
- argDetails.name = arg.slice(1, -1);
835
- break;
836
- }
837
-
838
- if (argDetails.name.length > 3 && argDetails.name.slice(-3) === '...') {
839
- argDetails.variadic = true;
840
- argDetails.name = argDetails.name.slice(0, -3);
841
- }
842
- if (argDetails.name) {
843
- this._args.push(argDetails);
844
- }
845
- });
846
- this._args.forEach((arg, i) => {
847
- if (arg.variadic && i < this._args.length - 1) {
848
- throw new Error(`only the last argument can be variadic '${arg.name}'`);
849
- }
850
- });
851
- return this;
852
- };
853
-
854
- /**
855
- * Register callback to use as replacement for calling process.exit.
856
- *
857
- * @param {Function} [fn] optional callback which will be passed a CommanderError, defaults to throwing
858
- * @return {Command} `this` command for chaining
859
- */
860
-
861
- exitOverride(fn) {
862
- if (fn) {
863
- this._exitCallback = fn;
864
- } else {
865
- this._exitCallback = (err) => {
866
- if (err.code !== 'commander.executeSubCommandAsync') {
867
- throw err;
868
- } else {
869
- // Async callback from spawn events, not useful to throw.
870
- }
871
- };
872
- }
873
- return this;
874
- };
875
-
876
- /**
877
- * Call process.exit, and _exitCallback if defined.
878
- *
879
- * @param {number} exitCode exit code for using with process.exit
880
- * @param {string} code an id string representing the error
881
- * @param {string} message human-readable description of the error
882
- * @return never
883
- * @api private
884
- */
885
-
886
- _exit(exitCode, code, message) {
887
- if (this._exitCallback) {
888
- this._exitCallback(new CommanderError(exitCode, code, message));
889
- // Expecting this line is not reached.
890
- }
891
- process.exit(exitCode);
892
- };
893
-
894
- /**
895
- * Register callback `fn` for the command.
896
- *
897
- * Examples:
898
- *
899
- * program
900
- * .command('help')
901
- * .description('display verbose help')
902
- * .action(function() {
903
- * // output help here
904
- * });
905
- *
906
- * @param {Function} fn
907
- * @return {Command} `this` command for chaining
908
- */
909
-
910
- action(fn) {
911
- const listener = (args) => {
912
- // The .action callback takes an extra parameter which is the command or options.
913
- const expectedArgsCount = this._args.length;
914
- const actionArgs = args.slice(0, expectedArgsCount);
915
- if (this._storeOptionsAsProperties) {
916
- actionArgs[expectedArgsCount] = this; // backwards compatible "options"
917
- } else {
918
- actionArgs[expectedArgsCount] = this.opts();
919
- }
920
- actionArgs.push(this);
921
-
922
- const actionResult = fn.apply(this, actionArgs);
923
- // Remember result in case it is async. Assume parseAsync getting called on root.
924
- let rootCommand = this;
925
- while (rootCommand.parent) {
926
- rootCommand = rootCommand.parent;
927
- }
928
- rootCommand._actionResults.push(actionResult);
929
- };
930
- this._actionHandler = listener;
931
- return this;
932
- };
933
-
934
- /**
935
- * Factory routine to create a new unattached option.
936
- *
937
- * See .option() for creating an attached option, which uses this routine to
938
- * create the option. You can override createOption to return a custom option.
939
- *
940
- * @param {string} flags
941
- * @param {string} [description]
942
- * @return {Option} new option
943
- */
944
-
945
- createOption(flags, description) {
946
- return new Option(flags, description);
947
- };
948
-
949
- /**
950
- * Add an option.
951
- *
952
- * @param {Option} option
953
- * @return {Command} `this` command for chaining
954
- */
955
- addOption(option) {
956
- const oname = option.name();
957
- const name = option.attributeName();
958
-
959
- let defaultValue = option.defaultValue;
960
-
961
- // preassign default value for --no-*, [optional], <required>, or plain flag if boolean value
962
- if (option.negate || option.optional || option.required || typeof defaultValue === 'boolean') {
963
- // when --no-foo we make sure default is true, unless a --foo option is already defined
964
- if (option.negate) {
965
- const positiveLongFlag = option.long.replace(/^--no-/, '--');
966
- defaultValue = this._findOption(positiveLongFlag) ? this._getOptionValue(name) : true;
967
- }
968
- // preassign only if we have a default
969
- if (defaultValue !== undefined) {
970
- this._setOptionValue(name, defaultValue);
971
- }
972
- }
973
-
974
- // register the option
975
- this.options.push(option);
976
-
977
- // when it's passed assign the value
978
- // and conditionally invoke the callback
979
- this.on('option:' + oname, (val) => {
980
- const oldValue = this._getOptionValue(name);
981
-
982
- // custom processing
983
- if (val !== null && option.parseArg) {
984
- try {
985
- val = option.parseArg(val, oldValue === undefined ? defaultValue : oldValue);
986
- } catch (err) {
987
- if (err.code === 'commander.invalidOptionArgument') {
988
- const message = `error: option '${option.flags}' argument '${val}' is invalid. ${err.message}`;
989
- this._displayError(err.exitCode, err.code, message);
990
- }
991
- throw err;
992
- }
993
- } else if (val !== null && option.variadic) {
994
- val = option._concatValue(val, oldValue);
995
- }
996
-
997
- // unassigned or boolean value
998
- if (typeof oldValue === 'boolean' || typeof oldValue === 'undefined') {
999
- // if no value, negate false, and we have a default, then use it!
1000
- if (val == null) {
1001
- this._setOptionValue(name, option.negate
1002
- ? false
1003
- : defaultValue || true);
1004
- } else {
1005
- this._setOptionValue(name, val);
1006
- }
1007
- } else if (val !== null) {
1008
- // reassign
1009
- this._setOptionValue(name, option.negate ? false : val);
1010
- }
1011
- });
1012
-
1013
- return this;
1014
- }
1015
-
1016
- /**
1017
- * Internal implementation shared by .option() and .requiredOption()
1018
- *
1019
- * @api private
1020
- */
1021
- _optionEx(config, flags, description, fn, defaultValue) {
1022
- const option = this.createOption(flags, description);
1023
- option.makeOptionMandatory(!!config.mandatory);
1024
- if (typeof fn === 'function') {
1025
- option.default(defaultValue).argParser(fn);
1026
- } else if (fn instanceof RegExp) {
1027
- // deprecated
1028
- const regex = fn;
1029
- fn = (val, def) => {
1030
- const m = regex.exec(val);
1031
- return m ? m[0] : def;
1032
- };
1033
- option.default(defaultValue).argParser(fn);
1034
- } else {
1035
- option.default(fn);
1036
- }
1037
-
1038
- return this.addOption(option);
1039
- }
1040
-
1041
- /**
1042
- * Define option with `flags`, `description` and optional
1043
- * coercion `fn`.
1044
- *
1045
- * The `flags` string contains the short and/or long flags,
1046
- * separated by comma, a pipe or space. The following are all valid
1047
- * all will output this way when `--help` is used.
1048
- *
1049
- * "-p, --pepper"
1050
- * "-p|--pepper"
1051
- * "-p --pepper"
1052
- *
1053
- * Examples:
1054
- *
1055
- * // simple boolean defaulting to undefined
1056
- * program.option('-p, --pepper', 'add pepper');
1057
- *
1058
- * program.pepper
1059
- * // => undefined
1060
- *
1061
- * --pepper
1062
- * program.pepper
1063
- * // => true
1064
- *
1065
- * // simple boolean defaulting to true (unless non-negated option is also defined)
1066
- * program.option('-C, --no-cheese', 'remove cheese');
1067
- *
1068
- * program.cheese
1069
- * // => true
1070
- *
1071
- * --no-cheese
1072
- * program.cheese
1073
- * // => false
1074
- *
1075
- * // required argument
1076
- * program.option('-C, --chdir <path>', 'change the working directory');
1077
- *
1078
- * --chdir /tmp
1079
- * program.chdir
1080
- * // => "/tmp"
1081
- *
1082
- * // optional argument
1083
- * program.option('-c, --cheese [type]', 'add cheese [marble]');
1084
- *
1085
- * @param {string} flags
1086
- * @param {string} [description]
1087
- * @param {Function|*} [fn] - custom option processing function or default value
1088
- * @param {*} [defaultValue]
1089
- * @return {Command} `this` command for chaining
1090
- */
1091
-
1092
- option(flags, description, fn, defaultValue) {
1093
- return this._optionEx({}, flags, description, fn, defaultValue);
1094
- };
1095
-
1096
- /**
1097
- * Add a required option which must have a value after parsing. This usually means
1098
- * the option must be specified on the command line. (Otherwise the same as .option().)
1099
- *
1100
- * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.
1101
- *
1102
- * @param {string} flags
1103
- * @param {string} [description]
1104
- * @param {Function|*} [fn] - custom option processing function or default value
1105
- * @param {*} [defaultValue]
1106
- * @return {Command} `this` command for chaining
1107
- */
1108
-
1109
- requiredOption(flags, description, fn, defaultValue) {
1110
- return this._optionEx({ mandatory: true }, flags, description, fn, defaultValue);
1111
- };
1112
-
1113
- /**
1114
- * Alter parsing of short flags with optional values.
1115
- *
1116
- * Examples:
1117
- *
1118
- * // for `.option('-f,--flag [value]'):
1119
- * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour
1120
- * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`
1121
- *
1122
- * @param {Boolean} [combine=true] - if `true` or omitted, an optional value can be specified directly after the flag.
1123
- */
1124
- combineFlagAndOptionalValue(combine = true) {
1125
- this._combineFlagAndOptionalValue = !!combine;
1126
- return this;
1127
- };
1128
-
1129
- /**
1130
- * Allow unknown options on the command line.
1131
- *
1132
- * @param {Boolean} [allowUnknown=true] - if `true` or omitted, no error will be thrown
1133
- * for unknown options.
1134
- */
1135
- allowUnknownOption(allowUnknown = true) {
1136
- this._allowUnknownOption = !!allowUnknown;
1137
- return this;
1138
- };
1139
-
1140
- /**
1141
- * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.
1142
- *
1143
- * @param {Boolean} [allowExcess=true] - if `true` or omitted, no error will be thrown
1144
- * for excess arguments.
1145
- */
1146
- allowExcessArguments(allowExcess = true) {
1147
- this._allowExcessArguments = !!allowExcess;
1148
- return this;
1149
- };
1150
-
1151
- /**
1152
- * Enable positional options. Positional means global options are specified before subcommands which lets
1153
- * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.
1154
- * The default behaviour is non-positional and global options may appear anywhere on the command line.
1155
- *
1156
- * @param {Boolean} [positional=true]
1157
- */
1158
- enablePositionalOptions(positional = true) {
1159
- this._enablePositionalOptions = !!positional;
1160
- return this;
1161
- };
1162
-
1163
- /**
1164
- * Pass through options that come after command-arguments rather than treat them as command-options,
1165
- * so actual command-options come before command-arguments. Turning this on for a subcommand requires
1166
- * positional options to have been enabled on the program (parent commands).
1167
- * The default behaviour is non-positional and options may appear before or after command-arguments.
1168
- *
1169
- * @param {Boolean} [passThrough=true]
1170
- * for unknown options.
1171
- */
1172
- passThroughOptions(passThrough = true) {
1173
- this._passThroughOptions = !!passThrough;
1174
- if (!!this.parent && passThrough && !this.parent._enablePositionalOptions) {
1175
- throw new Error('passThroughOptions can not be used without turning on enablePositionalOptions for parent command(s)');
1176
- }
1177
- return this;
1178
- };
1179
-
1180
- /**
1181
- * Whether to store option values as properties on command object,
1182
- * or store separately (specify false). In both cases the option values can be accessed using .opts().
1183
- *
1184
- * @param {boolean} [storeAsProperties=true]
1185
- * @return {Command} `this` command for chaining
1186
- */
1187
-
1188
- storeOptionsAsProperties(storeAsProperties = true) {
1189
- this._storeOptionsAsProperties = !!storeAsProperties;
1190
- if (this.options.length) {
1191
- throw new Error('call .storeOptionsAsProperties() before adding options');
1192
- }
1193
- return this;
1194
- };
1195
-
1196
- /**
1197
- * Store option value
1198
- *
1199
- * @param {string} key
1200
- * @param {Object} value
1201
- * @api private
1202
- */
1203
-
1204
- _setOptionValue(key, value) {
1205
- if (this._storeOptionsAsProperties) {
1206
- this[key] = value;
1207
- } else {
1208
- this._optionValues[key] = value;
1209
- }
1210
- };
1211
-
1212
- /**
1213
- * Retrieve option value
1214
- *
1215
- * @param {string} key
1216
- * @return {Object} value
1217
- * @api private
1218
- */
1219
-
1220
- _getOptionValue(key) {
1221
- if (this._storeOptionsAsProperties) {
1222
- return this[key];
1223
- }
1224
- return this._optionValues[key];
1225
- };
1226
-
1227
- /**
1228
- * Parse `argv`, setting options and invoking commands when defined.
1229
- *
1230
- * The default expectation is that the arguments are from node and have the application as argv[0]
1231
- * and the script being run in argv[1], with user parameters after that.
1232
- *
1233
- * Examples:
1234
- *
1235
- * program.parse(process.argv);
1236
- * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions
1237
- * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
1238
- *
1239
- * @param {string[]} [argv] - optional, defaults to process.argv
1240
- * @param {Object} [parseOptions] - optionally specify style of options with from: node/user/electron
1241
- * @param {string} [parseOptions.from] - where the args are from: 'node', 'user', 'electron'
1242
- * @return {Command} `this` command for chaining
1243
- */
1244
-
1245
- parse(argv, parseOptions) {
1246
- if (argv !== undefined && !Array.isArray(argv)) {
1247
- throw new Error('first parameter to parse must be array or undefined');
1248
- }
1249
- parseOptions = parseOptions || {};
1250
-
1251
- // Default to using process.argv
1252
- if (argv === undefined) {
1253
- argv = process.argv;
1254
- // @ts-ignore: unknown property
1255
- if (process.versions && process.versions.electron) {
1256
- parseOptions.from = 'electron';
1257
- }
1258
- }
1259
- this.rawArgs = argv.slice();
1260
-
1261
- // make it a little easier for callers by supporting various argv conventions
1262
- let userArgs;
1263
- switch (parseOptions.from) {
1264
- case undefined:
1265
- case 'node':
1266
- this._scriptPath = argv[1];
1267
- userArgs = argv.slice(2);
1268
- break;
1269
- case 'electron':
1270
- // @ts-ignore: unknown property
1271
- if (process.defaultApp) {
1272
- this._scriptPath = argv[1];
1273
- userArgs = argv.slice(2);
1274
- } else {
1275
- userArgs = argv.slice(1);
1276
- }
1277
- break;
1278
- case 'user':
1279
- userArgs = argv.slice(0);
1280
- break;
1281
- default:
1282
- throw new Error(`unexpected parse option { from: '${parseOptions.from}' }`);
1283
- }
1284
- if (!this._scriptPath && require.main) {
1285
- this._scriptPath = require.main.filename;
1286
- }
1287
-
1288
- // Guess name, used in usage in help.
1289
- this._name = this._name || (this._scriptPath && path.basename(this._scriptPath, path.extname(this._scriptPath)));
1290
-
1291
- // Let's go!
1292
- this._parseCommand([], userArgs);
1293
-
1294
- return this;
1295
- };
1296
-
1297
- /**
1298
- * Parse `argv`, setting options and invoking commands when defined.
1299
- *
1300
- * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.
1301
- *
1302
- * The default expectation is that the arguments are from node and have the application as argv[0]
1303
- * and the script being run in argv[1], with user parameters after that.
1304
- *
1305
- * Examples:
1306
- *
1307
- * program.parseAsync(process.argv);
1308
- * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions
1309
- * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
1310
- *
1311
- * @param {string[]} [argv]
1312
- * @param {Object} [parseOptions]
1313
- * @param {string} parseOptions.from - where the args are from: 'node', 'user', 'electron'
1314
- * @return {Promise}
1315
- */
1316
-
1317
- parseAsync(argv, parseOptions) {
1318
- this.parse(argv, parseOptions);
1319
- return Promise.all(this._actionResults).then(() => this);
1320
- };
1321
-
1322
- /**
1323
- * Execute a sub-command executable.
1324
- *
1325
- * @api private
1326
- */
1327
-
1328
- _executeSubCommand(subcommand, args) {
1329
- args = args.slice();
1330
- let launchWithNode = false; // Use node for source targets so do not need to get permissions correct, and on Windows.
1331
- const sourceExt = ['.js', '.ts', '.tsx', '.mjs', '.cjs'];
1332
-
1333
- // Not checking for help first. Unlikely to have mandatory and executable, and can't robustly test for help flags in external command.
1334
- this._checkForMissingMandatoryOptions();
1335
-
1336
- // Want the entry script as the reference for command name and directory for searching for other files.
1337
- let scriptPath = this._scriptPath;
1338
- // Fallback in case not set, due to how Command created or called.
1339
- if (!scriptPath && require.main) {
1340
- scriptPath = require.main.filename;
1341
- }
1342
-
1343
- let baseDir;
1344
- try {
1345
- const resolvedLink = fs.realpathSync(scriptPath);
1346
- baseDir = path.dirname(resolvedLink);
1347
- } catch (e) {
1348
- baseDir = '.'; // dummy, probably not going to find executable!
1349
- }
1350
-
1351
- // name of the subcommand, like `pm-install`
1352
- let bin = path.basename(scriptPath, path.extname(scriptPath)) + '-' + subcommand._name;
1353
- if (subcommand._executableFile) {
1354
- bin = subcommand._executableFile;
1355
- }
1356
-
1357
- const localBin = path.join(baseDir, bin);
1358
- if (fs.existsSync(localBin)) {
1359
- // prefer local `./<bin>` to bin in the $PATH
1360
- bin = localBin;
1361
- } else {
1362
- // Look for source files.
1363
- sourceExt.forEach((ext) => {
1364
- if (fs.existsSync(`${localBin}${ext}`)) {
1365
- bin = `${localBin}${ext}`;
1366
- }
1367
- });
1368
- }
1369
- launchWithNode = sourceExt.includes(path.extname(bin));
1370
-
1371
- let proc;
1372
- if (process.platform !== 'win32') {
1373
- if (launchWithNode) {
1374
- args.unshift(bin);
1375
- // add executable arguments to spawn
1376
- args = incrementNodeInspectorPort(process.execArgv).concat(args);
1377
-
1378
- proc = childProcess.spawn(process.argv[0], args, { stdio: 'inherit' });
1379
- } else {
1380
- proc = childProcess.spawn(bin, args, { stdio: 'inherit' });
1381
- }
1382
- } else {
1383
- args.unshift(bin);
1384
- // add executable arguments to spawn
1385
- args = incrementNodeInspectorPort(process.execArgv).concat(args);
1386
- proc = childProcess.spawn(process.execPath, args, { stdio: 'inherit' });
1387
- }
1388
-
1389
- const signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP'];
1390
- signals.forEach((signal) => {
1391
- // @ts-ignore
1392
- process.on(signal, () => {
1393
- if (proc.killed === false && proc.exitCode === null) {
1394
- proc.kill(signal);
1395
- }
1396
- });
1397
- });
1398
-
1399
- // By default terminate process when spawned process terminates.
1400
- // Suppressing the exit if exitCallback defined is a bit messy and of limited use, but does allow process to stay running!
1401
- const exitCallback = this._exitCallback;
1402
- if (!exitCallback) {
1403
- proc.on('close', process.exit.bind(process));
1404
- } else {
1405
- proc.on('close', () => {
1406
- exitCallback(new CommanderError(process.exitCode || 0, 'commander.executeSubCommandAsync', '(close)'));
1407
- });
1408
- }
1409
- proc.on('error', (err) => {
1410
- // @ts-ignore
1411
- if (err.code === 'ENOENT') {
1412
- const executableMissing = `'${bin}' does not exist
1413
- - if '${subcommand._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
1414
- - if the default executable name is not suitable, use the executableFile option to supply a custom name`;
1415
- throw new Error(executableMissing);
1416
- // @ts-ignore
1417
- } else if (err.code === 'EACCES') {
1418
- throw new Error(`'${bin}' not executable`);
1419
- }
1420
- if (!exitCallback) {
1421
- process.exit(1);
1422
- } else {
1423
- const wrappedError = new CommanderError(1, 'commander.executeSubCommandAsync', '(error)');
1424
- wrappedError.nestedError = err;
1425
- exitCallback(wrappedError);
1426
- }
1427
- });
1428
-
1429
- // Store the reference to the child process
1430
- this.runningCommand = proc;
1431
- };
1432
-
1433
- /**
1434
- * @api private
1435
- */
1436
- _dispatchSubcommand(commandName, operands, unknown) {
1437
- const subCommand = this._findCommand(commandName);
1438
- if (!subCommand) this.help({ error: true });
1439
-
1440
- if (subCommand._executableHandler) {
1441
- this._executeSubCommand(subCommand, operands.concat(unknown));
1442
- } else {
1443
- subCommand._parseCommand(operands, unknown);
1444
- }
1445
- };
1446
-
1447
- /**
1448
- * Process arguments in context of this command.
1449
- *
1450
- * @api private
1451
- */
1452
-
1453
- _parseCommand(operands, unknown) {
1454
- const parsed = this.parseOptions(unknown);
1455
- operands = operands.concat(parsed.operands);
1456
- unknown = parsed.unknown;
1457
- this.args = operands.concat(unknown);
1458
-
1459
- if (operands && this._findCommand(operands[0])) {
1460
- this._dispatchSubcommand(operands[0], operands.slice(1), unknown);
1461
- } else if (this._hasImplicitHelpCommand() && operands[0] === this._helpCommandName) {
1462
- if (operands.length === 1) {
1463
- this.help();
1464
- } else {
1465
- this._dispatchSubcommand(operands[1], [], [this._helpLongFlag]);
1466
- }
1467
- } else if (this._defaultCommandName) {
1468
- outputHelpIfRequested(this, unknown); // Run the help for default command from parent rather than passing to default command
1469
- this._dispatchSubcommand(this._defaultCommandName, operands, unknown);
1470
- } else {
1471
- if (this.commands.length && this.args.length === 0 && !this._actionHandler && !this._defaultCommandName) {
1472
- // probably missing subcommand and no handler, user needs help
1473
- this.help({ error: true });
1474
- }
1475
-
1476
- outputHelpIfRequested(this, parsed.unknown);
1477
- this._checkForMissingMandatoryOptions();
1478
-
1479
- // We do not always call this check to avoid masking a "better" error, like unknown command.
1480
- const checkForUnknownOptions = () => {
1481
- if (parsed.unknown.length > 0) {
1482
- this.unknownOption(parsed.unknown[0]);
1483
- }
1484
- };
1485
-
1486
- const commandEvent = `command:${this.name()}`;
1487
- if (this._actionHandler) {
1488
- checkForUnknownOptions();
1489
- // Check expected arguments and collect variadic together.
1490
- const args = this.args.slice();
1491
- this._args.forEach((arg, i) => {
1492
- if (arg.required && args[i] == null) {
1493
- this.missingArgument(arg.name);
1494
- } else if (arg.variadic) {
1495
- args[i] = args.splice(i);
1496
- args.length = Math.min(i + 1, args.length);
1497
- }
1498
- });
1499
- if (args.length > this._args.length) {
1500
- this._excessArguments(args);
1501
- }
1502
-
1503
- this._actionHandler(args);
1504
- if (this.parent) this.parent.emit(commandEvent, operands, unknown); // legacy
1505
- } else if (this.parent && this.parent.listenerCount(commandEvent)) {
1506
- checkForUnknownOptions();
1507
- this.parent.emit(commandEvent, operands, unknown); // legacy
1508
- } else if (operands.length) {
1509
- if (this._findCommand('*')) { // legacy default command
1510
- this._dispatchSubcommand('*', operands, unknown);
1511
- } else if (this.listenerCount('command:*')) {
1512
- // skip option check, emit event for possible misspelling suggestion
1513
- this.emit('command:*', operands, unknown);
1514
- } else if (this.commands.length) {
1515
- this.unknownCommand();
1516
- } else {
1517
- checkForUnknownOptions();
1518
- }
1519
- } else if (this.commands.length) {
1520
- // This command has subcommands and nothing hooked up at this level, so display help.
1521
- this.help({ error: true });
1522
- } else {
1523
- checkForUnknownOptions();
1524
- // fall through for caller to handle after calling .parse()
1525
- }
1526
- }
1527
- };
1528
-
1529
- /**
1530
- * Find matching command.
1531
- *
1532
- * @api private
1533
- */
1534
- _findCommand(name) {
1535
- if (!name) return undefined;
1536
- return this.commands.find(cmd => cmd._name === name || cmd._aliases.includes(name));
1537
- };
1538
-
1539
- /**
1540
- * Return an option matching `arg` if any.
1541
- *
1542
- * @param {string} arg
1543
- * @return {Option}
1544
- * @api private
1545
- */
1546
-
1547
- _findOption(arg) {
1548
- return this.options.find(option => option.is(arg));
1549
- };
1550
-
1551
- /**
1552
- * Display an error message if a mandatory option does not have a value.
1553
- * Lazy calling after checking for help flags from leaf subcommand.
1554
- *
1555
- * @api private
1556
- */
1557
-
1558
- _checkForMissingMandatoryOptions() {
1559
- // Walk up hierarchy so can call in subcommand after checking for displaying help.
1560
- for (let cmd = this; cmd; cmd = cmd.parent) {
1561
- cmd.options.forEach((anOption) => {
1562
- if (anOption.mandatory && (cmd._getOptionValue(anOption.attributeName()) === undefined)) {
1563
- cmd.missingMandatoryOptionValue(anOption);
1564
- }
1565
- });
1566
- }
1567
- };
1568
-
1569
- /**
1570
- * Parse options from `argv` removing known options,
1571
- * and return argv split into operands and unknown arguments.
1572
- *
1573
- * Examples:
1574
- *
1575
- * argv => operands, unknown
1576
- * --known kkk op => [op], []
1577
- * op --known kkk => [op], []
1578
- * sub --unknown uuu op => [sub], [--unknown uuu op]
1579
- * sub -- --unknown uuu op => [sub --unknown uuu op], []
1580
- *
1581
- * @param {String[]} argv
1582
- * @return {{operands: String[], unknown: String[]}}
1583
- */
1584
-
1585
- parseOptions(argv) {
1586
- const operands = []; // operands, not options or values
1587
- const unknown = []; // first unknown option and remaining unknown args
1588
- let dest = operands;
1589
- const args = argv.slice();
1590
-
1591
- function maybeOption(arg) {
1592
- return arg.length > 1 && arg[0] === '-';
1593
- }
1594
-
1595
- // parse options
1596
- let activeVariadicOption = null;
1597
- while (args.length) {
1598
- const arg = args.shift();
1599
-
1600
- // literal
1601
- if (arg === '--') {
1602
- if (dest === unknown) dest.push(arg);
1603
- dest.push(...args);
1604
- break;
1605
- }
1606
-
1607
- if (activeVariadicOption && !maybeOption(arg)) {
1608
- this.emit(`option:${activeVariadicOption.name()}`, arg);
1609
- continue;
1610
- }
1611
- activeVariadicOption = null;
1612
-
1613
- if (maybeOption(arg)) {
1614
- const option = this._findOption(arg);
1615
- // recognised option, call listener to assign value with possible custom processing
1616
- if (option) {
1617
- if (option.required) {
1618
- const value = args.shift();
1619
- if (value === undefined) this.optionMissingArgument(option);
1620
- this.emit(`option:${option.name()}`, value);
1621
- } else if (option.optional) {
1622
- let value = null;
1623
- // historical behaviour is optional value is following arg unless an option
1624
- if (args.length > 0 && !maybeOption(args[0])) {
1625
- value = args.shift();
1626
- }
1627
- this.emit(`option:${option.name()}`, value);
1628
- } else { // boolean flag
1629
- this.emit(`option:${option.name()}`);
1630
- }
1631
- activeVariadicOption = option.variadic ? option : null;
1632
- continue;
1633
- }
1634
- }
1635
-
1636
- // Look for combo options following single dash, eat first one if known.
1637
- if (arg.length > 2 && arg[0] === '-' && arg[1] !== '-') {
1638
- const option = this._findOption(`-${arg[1]}`);
1639
- if (option) {
1640
- if (option.required || (option.optional && this._combineFlagAndOptionalValue)) {
1641
- // option with value following in same argument
1642
- this.emit(`option:${option.name()}`, arg.slice(2));
1643
- } else {
1644
- // boolean option, emit and put back remainder of arg for further processing
1645
- this.emit(`option:${option.name()}`);
1646
- args.unshift(`-${arg.slice(2)}`);
1647
- }
1648
- continue;
1649
- }
1650
- }
1651
-
1652
- // Look for known long flag with value, like --foo=bar
1653
- if (/^--[^=]+=/.test(arg)) {
1654
- const index = arg.indexOf('=');
1655
- const option = this._findOption(arg.slice(0, index));
1656
- if (option && (option.required || option.optional)) {
1657
- this.emit(`option:${option.name()}`, arg.slice(index + 1));
1658
- continue;
1659
- }
1660
- }
1661
-
1662
- // Not a recognised option by this command.
1663
- // Might be a command-argument, or subcommand option, or unknown option, or help command or option.
1664
-
1665
- // An unknown option means further arguments also classified as unknown so can be reprocessed by subcommands.
1666
- if (maybeOption(arg)) {
1667
- dest = unknown;
1668
- }
1669
-
1670
- // If using positionalOptions, stop processing our options at subcommand.
1671
- if ((this._enablePositionalOptions || this._passThroughOptions) && operands.length === 0 && unknown.length === 0) {
1672
- if (this._findCommand(arg)) {
1673
- operands.push(arg);
1674
- if (args.length > 0) unknown.push(...args);
1675
- break;
1676
- } else if (arg === this._helpCommandName && this._hasImplicitHelpCommand()) {
1677
- operands.push(arg);
1678
- if (args.length > 0) operands.push(...args);
1679
- break;
1680
- } else if (this._defaultCommandName) {
1681
- unknown.push(arg);
1682
- if (args.length > 0) unknown.push(...args);
1683
- break;
1684
- }
1685
- }
1686
-
1687
- // If using passThroughOptions, stop processing options at first command-argument.
1688
- if (this._passThroughOptions) {
1689
- dest.push(arg);
1690
- if (args.length > 0) dest.push(...args);
1691
- break;
1692
- }
1693
-
1694
- // add arg
1695
- dest.push(arg);
1696
- }
1697
-
1698
- return { operands, unknown };
1699
- };
1700
-
1701
- /**
1702
- * Return an object containing options as key-value pairs
1703
- *
1704
- * @return {Object}
1705
- */
1706
- opts() {
1707
- if (this._storeOptionsAsProperties) {
1708
- // Preserve original behaviour so backwards compatible when still using properties
1709
- const result = {};
1710
- const len = this.options.length;
1711
-
1712
- for (let i = 0; i < len; i++) {
1713
- const key = this.options[i].attributeName();
1714
- result[key] = key === this._versionOptionName ? this._version : this[key];
1715
- }
1716
- return result;
1717
- }
1718
-
1719
- return this._optionValues;
1720
- };
1721
-
1722
- /**
1723
- * Internal bottleneck for handling of parsing errors.
1724
- *
1725
- * @api private
1726
- */
1727
- _displayError(exitCode, code, message) {
1728
- this._outputConfiguration.outputError(`${message}\n`, this._outputConfiguration.writeErr);
1729
- this._exit(exitCode, code, message);
1730
- }
1731
-
1732
- /**
1733
- * Argument `name` is missing.
1734
- *
1735
- * @param {string} name
1736
- * @api private
1737
- */
1738
-
1739
- missingArgument(name) {
1740
- const message = `error: missing required argument '${name}'`;
1741
- this._displayError(1, 'commander.missingArgument', message);
1742
- };
1743
-
1744
- /**
1745
- * `Option` is missing an argument.
1746
- *
1747
- * @param {Option} option
1748
- * @api private
1749
- */
1750
-
1751
- optionMissingArgument(option) {
1752
- const message = `error: option '${option.flags}' argument missing`;
1753
- this._displayError(1, 'commander.optionMissingArgument', message);
1754
- };
1755
-
1756
- /**
1757
- * `Option` does not have a value, and is a mandatory option.
1758
- *
1759
- * @param {Option} option
1760
- * @api private
1761
- */
1762
-
1763
- missingMandatoryOptionValue(option) {
1764
- const message = `error: required option '${option.flags}' not specified`;
1765
- this._displayError(1, 'commander.missingMandatoryOptionValue', message);
1766
- };
1767
-
1768
- /**
1769
- * Unknown option `flag`.
1770
- *
1771
- * @param {string} flag
1772
- * @api private
1773
- */
1774
-
1775
- unknownOption(flag) {
1776
- if (this._allowUnknownOption) return;
1777
- const message = `error: unknown option '${flag}'`;
1778
- this._displayError(1, 'commander.unknownOption', message);
1779
- };
1780
-
1781
- /**
1782
- * Excess arguments, more than expected.
1783
- *
1784
- * @param {string[]} receivedArgs
1785
- * @api private
1786
- */
1787
-
1788
- _excessArguments(receivedArgs) {
1789
- if (this._allowExcessArguments) return;
1790
-
1791
- const expected = this._args.length;
1792
- const s = (expected === 1) ? '' : 's';
1793
- const forSubcommand = this.parent ? ` for '${this.name()}'` : '';
1794
- const message = `error: too many arguments${forSubcommand}. Expected ${expected} argument${s} but got ${receivedArgs.length}.`;
1795
- this._displayError(1, 'commander.excessArguments', message);
1796
- };
1797
-
1798
- /**
1799
- * Unknown command.
1800
- *
1801
- * @api private
1802
- */
1803
-
1804
- unknownCommand() {
1805
- const partCommands = [this.name()];
1806
- for (let parentCmd = this.parent; parentCmd; parentCmd = parentCmd.parent) {
1807
- partCommands.unshift(parentCmd.name());
1808
- }
1809
- const fullCommand = partCommands.join(' ');
1810
- const message = `error: unknown command '${this.args[0]}'.` +
1811
- (this._hasHelpOption ? ` See '${fullCommand} ${this._helpLongFlag}'.` : '');
1812
- this._displayError(1, 'commander.unknownCommand', message);
1813
- };
1814
-
1815
- /**
1816
- * Set the program version to `str`.
1817
- *
1818
- * This method auto-registers the "-V, --version" flag
1819
- * which will print the version number when passed.
1820
- *
1821
- * You can optionally supply the flags and description to override the defaults.
1822
- *
1823
- * @param {string} str
1824
- * @param {string} [flags]
1825
- * @param {string} [description]
1826
- * @return {this | string} `this` command for chaining, or version string if no arguments
1827
- */
1828
-
1829
- version(str, flags, description) {
1830
- if (str === undefined) return this._version;
1831
- this._version = str;
1832
- flags = flags || '-V, --version';
1833
- description = description || 'output the version number';
1834
- const versionOption = this.createOption(flags, description);
1835
- this._versionOptionName = versionOption.attributeName();
1836
- this.options.push(versionOption);
1837
- this.on('option:' + versionOption.name(), () => {
1838
- this._outputConfiguration.writeOut(`${str}\n`);
1839
- this._exit(0, 'commander.version', str);
1840
- });
1841
- return this;
1842
- };
1843
-
1844
- /**
1845
- * Set the description to `str`.
1846
- *
1847
- * @param {string} [str]
1848
- * @param {Object} [argsDescription]
1849
- * @return {string|Command}
1850
- */
1851
- description(str, argsDescription) {
1852
- if (str === undefined && argsDescription === undefined) return this._description;
1853
- this._description = str;
1854
- this._argsDescription = argsDescription;
1855
- return this;
1856
- };
1857
-
1858
- /**
1859
- * Set an alias for the command.
1860
- *
1861
- * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.
1862
- *
1863
- * @param {string} [alias]
1864
- * @return {string|Command}
1865
- */
1866
-
1867
- alias(alias) {
1868
- if (alias === undefined) return this._aliases[0]; // just return first, for backwards compatibility
1869
-
1870
- let command = this;
1871
- if (this.commands.length !== 0 && this.commands[this.commands.length - 1]._executableHandler) {
1872
- // assume adding alias for last added executable subcommand, rather than this
1873
- command = this.commands[this.commands.length - 1];
1874
- }
1875
-
1876
- if (alias === command._name) throw new Error('Command alias can\'t be the same as its name');
1877
-
1878
- command._aliases.push(alias);
1879
- return this;
1880
- };
1881
-
1882
- /**
1883
- * Set aliases for the command.
1884
- *
1885
- * Only the first alias is shown in the auto-generated help.
1886
- *
1887
- * @param {string[]} [aliases]
1888
- * @return {string[]|Command}
1889
- */
1890
-
1891
- aliases(aliases) {
1892
- // Getter for the array of aliases is the main reason for having aliases() in addition to alias().
1893
- if (aliases === undefined) return this._aliases;
1894
-
1895
- aliases.forEach((alias) => this.alias(alias));
1896
- return this;
1897
- };
1898
-
1899
- /**
1900
- * Set / get the command usage `str`.
1901
- *
1902
- * @param {string} [str]
1903
- * @return {String|Command}
1904
- */
1905
-
1906
- usage(str) {
1907
- if (str === undefined) {
1908
- if (this._usage) return this._usage;
1909
-
1910
- const args = this._args.map((arg) => {
1911
- return humanReadableArgName(arg);
1912
- });
1913
- return [].concat(
1914
- (this.options.length || this._hasHelpOption ? '[options]' : []),
1915
- (this.commands.length ? '[command]' : []),
1916
- (this._args.length ? args : [])
1917
- ).join(' ');
1918
- }
1919
-
1920
- this._usage = str;
1921
- return this;
1922
- };
1923
-
1924
- /**
1925
- * Get or set the name of the command
1926
- *
1927
- * @param {string} [str]
1928
- * @return {string|Command}
1929
- */
1930
-
1931
- name(str) {
1932
- if (str === undefined) return this._name;
1933
- this._name = str;
1934
- return this;
1935
- };
1936
-
1937
- /**
1938
- * Return program help documentation.
1939
- *
1940
- * @param {{ error: boolean }} [contextOptions] - pass {error:true} to wrap for stderr instead of stdout
1941
- * @return {string}
1942
- */
1943
-
1944
- helpInformation(contextOptions) {
1945
- const helper = this.createHelp();
1946
- if (helper.helpWidth === undefined) {
1947
- helper.helpWidth = (contextOptions && contextOptions.error) ? this._outputConfiguration.getErrHelpWidth() : this._outputConfiguration.getOutHelpWidth();
1948
- }
1949
- return helper.formatHelp(this, helper);
1950
- };
1951
-
1952
- /**
1953
- * @api private
1954
- */
1955
-
1956
- _getHelpContext(contextOptions) {
1957
- contextOptions = contextOptions || {};
1958
- const context = { error: !!contextOptions.error };
1959
- let write;
1960
- if (context.error) {
1961
- write = (arg) => this._outputConfiguration.writeErr(arg);
1962
- } else {
1963
- write = (arg) => this._outputConfiguration.writeOut(arg);
1964
- }
1965
- context.write = contextOptions.write || write;
1966
- context.command = this;
1967
- return context;
1968
- }
1969
-
1970
- /**
1971
- * Output help information for this command.
1972
- *
1973
- * Outputs built-in help, and custom text added using `.addHelpText()`.
1974
- *
1975
- * @param {{ error: boolean } | Function} [contextOptions] - pass {error:true} to write to stderr instead of stdout
1976
- */
1977
-
1978
- outputHelp(contextOptions) {
1979
- let deprecatedCallback;
1980
- if (typeof contextOptions === 'function') {
1981
- deprecatedCallback = contextOptions;
1982
- contextOptions = undefined;
1983
- }
1984
- const context = this._getHelpContext(contextOptions);
1985
-
1986
- const groupListeners = [];
1987
- let command = this;
1988
- while (command) {
1989
- groupListeners.push(command); // ordered from current command to root
1990
- command = command.parent;
1991
- }
1992
-
1993
- groupListeners.slice().reverse().forEach(command => command.emit('beforeAllHelp', context));
1994
- this.emit('beforeHelp', context);
1995
-
1996
- let helpInformation = this.helpInformation(context);
1997
- if (deprecatedCallback) {
1998
- helpInformation = deprecatedCallback(helpInformation);
1999
- if (typeof helpInformation !== 'string' && !Buffer.isBuffer(helpInformation)) {
2000
- throw new Error('outputHelp callback must return a string or a Buffer');
2001
- }
2002
- }
2003
- context.write(helpInformation);
2004
-
2005
- this.emit(this._helpLongFlag); // deprecated
2006
- this.emit('afterHelp', context);
2007
- groupListeners.forEach(command => command.emit('afterAllHelp', context));
2008
- };
2009
-
2010
- /**
2011
- * You can pass in flags and a description to override the help
2012
- * flags and help description for your command. Pass in false to
2013
- * disable the built-in help option.
2014
- *
2015
- * @param {string | boolean} [flags]
2016
- * @param {string} [description]
2017
- * @return {Command} `this` command for chaining
2018
- */
2019
-
2020
- helpOption(flags, description) {
2021
- if (typeof flags === 'boolean') {
2022
- this._hasHelpOption = flags;
2023
- return this;
2024
- }
2025
- this._helpFlags = flags || this._helpFlags;
2026
- this._helpDescription = description || this._helpDescription;
2027
-
2028
- const helpFlags = _parseOptionFlags(this._helpFlags);
2029
- this._helpShortFlag = helpFlags.shortFlag;
2030
- this._helpLongFlag = helpFlags.longFlag;
2031
-
2032
- return this;
2033
- };
2034
-
2035
- /**
2036
- * Output help information and exit.
2037
- *
2038
- * Outputs built-in help, and custom text added using `.addHelpText()`.
2039
- *
2040
- * @param {{ error: boolean }} [contextOptions] - pass {error:true} to write to stderr instead of stdout
2041
- */
2042
-
2043
- help(contextOptions) {
2044
- this.outputHelp(contextOptions);
2045
- let exitCode = process.exitCode || 0;
2046
- if (exitCode === 0 && contextOptions && typeof contextOptions !== 'function' && contextOptions.error) {
2047
- exitCode = 1;
2048
- }
2049
- // message: do not have all displayed text available so only passing placeholder.
2050
- this._exit(exitCode, 'commander.help', '(outputHelp)');
2051
- };
2052
-
2053
- /**
2054
- * Add additional text to be displayed with the built-in help.
2055
- *
2056
- * Position is 'before' or 'after' to affect just this command,
2057
- * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.
2058
- *
2059
- * @param {string} position - before or after built-in help
2060
- * @param {string | Function} text - string to add, or a function returning a string
2061
- * @return {Command} `this` command for chaining
2062
- */
2063
- addHelpText(position, text) {
2064
- const allowedValues = ['beforeAll', 'before', 'after', 'afterAll'];
2065
- if (!allowedValues.includes(position)) {
2066
- throw new Error(`Unexpected value for position to addHelpText.
2067
- Expecting one of '${allowedValues.join("', '")}'`);
2068
- }
2069
- const helpEvent = `${position}Help`;
2070
- this.on(helpEvent, (context) => {
2071
- let helpStr;
2072
- if (typeof text === 'function') {
2073
- helpStr = text({ error: context.error, command: context.command });
2074
- } else {
2075
- helpStr = text;
2076
- }
2077
- // Ignore falsy value when nothing to output.
2078
- if (helpStr) {
2079
- context.write(`${helpStr}\n`);
2080
- }
2081
- });
2082
- return this;
2083
- }
2084
- };
2085
-
2086
- /**
2087
- * Expose the root command.
2088
- */
2089
-
2090
- exports = module.exports = new Command();
2091
- exports.program = exports; // More explicit access to global command.
2092
-
2093
- /**
2094
- * Expose classes
2095
- */
2096
-
2097
- exports.Command = Command;
2098
- exports.Option = Option;
2099
- exports.CommanderError = CommanderError;
2100
- exports.InvalidOptionArgumentError = InvalidOptionArgumentError;
2101
- exports.Help = Help;
2102
-
2103
- /**
2104
- * Camel-case the given `flag`
2105
- *
2106
- * @param {string} flag
2107
- * @return {string}
2108
- * @api private
2109
- */
2110
-
2111
- function camelcase(flag) {
2112
- return flag.split('-').reduce((str, word) => {
2113
- return str + word[0].toUpperCase() + word.slice(1);
2114
- });
2115
- }
2116
-
2117
- /**
2118
- * Output help information if help flags specified
2119
- *
2120
- * @param {Command} cmd - command to output help for
2121
- * @param {Array} args - array of options to search for help flags
2122
- * @api private
2123
- */
2124
-
2125
- function outputHelpIfRequested(cmd, args) {
2126
- const helpOption = cmd._hasHelpOption && args.find(arg => arg === cmd._helpLongFlag || arg === cmd._helpShortFlag);
2127
- if (helpOption) {
2128
- cmd.outputHelp();
2129
- // (Do not have all displayed text available so only passing placeholder.)
2130
- cmd._exit(0, 'commander.helpDisplayed', '(outputHelp)');
2131
- }
2132
- }
2133
-
2134
- /**
2135
- * Takes an argument and returns its human readable equivalent for help usage.
2136
- *
2137
- * @param {Object} arg
2138
- * @return {string}
2139
- * @api private
2140
- */
2141
-
2142
- function humanReadableArgName(arg) {
2143
- const nameOutput = arg.name + (arg.variadic === true ? '...' : '');
2144
-
2145
- return arg.required
2146
- ? '<' + nameOutput + '>'
2147
- : '[' + nameOutput + ']';
2148
- }
2149
-
2150
- /**
2151
- * Parse the short and long flag out of something like '-m,--mixed <value>'
2152
- *
2153
- * @api private
2154
- */
2155
-
2156
- function _parseOptionFlags(flags) {
2157
- let shortFlag;
2158
- let longFlag;
2159
- // Use original very loose parsing to maintain backwards compatibility for now,
2160
- // which allowed for example unintended `-sw, --short-word` [sic].
2161
- const flagParts = flags.split(/[ |,]+/);
2162
- if (flagParts.length > 1 && !/^[[<]/.test(flagParts[1])) shortFlag = flagParts.shift();
2163
- longFlag = flagParts.shift();
2164
- // Add support for lone short flag without significantly changing parsing!
2165
- if (!shortFlag && /^-[^-]$/.test(longFlag)) {
2166
- shortFlag = longFlag;
2167
- longFlag = undefined;
2168
- }
2169
- return { shortFlag, longFlag };
2170
- }
2171
-
2172
- /**
2173
- * Scan arguments and increment port number for inspect calls (to avoid conflicts when spawning new command).
2174
- *
2175
- * @param {string[]} args - array of arguments from node.execArgv
2176
- * @returns {string[]}
2177
- * @api private
2178
- */
2179
-
2180
- function incrementNodeInspectorPort(args) {
2181
- // Testing for these options:
2182
- // --inspect[=[host:]port]
2183
- // --inspect-brk[=[host:]port]
2184
- // --inspect-port=[host:]port
2185
- return args.map((arg) => {
2186
- if (!arg.startsWith('--inspect')) {
2187
- return arg;
2188
- }
2189
- let debugOption;
2190
- let debugHost = '127.0.0.1';
2191
- let debugPort = '9229';
2192
- let match;
2193
- if ((match = arg.match(/^(--inspect(-brk)?)$/)) !== null) {
2194
- // e.g. --inspect
2195
- debugOption = match[1];
2196
- } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+)$/)) !== null) {
2197
- debugOption = match[1];
2198
- if (/^\d+$/.test(match[3])) {
2199
- // e.g. --inspect=1234
2200
- debugPort = match[3];
2201
- } else {
2202
- // e.g. --inspect=localhost
2203
- debugHost = match[3];
2204
- }
2205
- } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/)) !== null) {
2206
- // e.g. --inspect=localhost:1234
2207
- debugOption = match[1];
2208
- debugHost = match[3];
2209
- debugPort = match[4];
2210
- }
2211
-
2212
- if (debugOption && debugPort !== '0') {
2213
- return `${debugOption}=${debugHost}:${parseInt(debugPort) + 1}`;
2214
- }
2215
- return arg;
2216
- });
2217
- }