mathjs 9.2.0 → 9.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (936) hide show
  1. package/HISTORY.md +47 -1
  2. package/README.md +6 -5
  3. package/bin/cli.js +11 -11
  4. package/docs/datatypes/matrices.md +15 -0
  5. package/docs/expressions/parsing.md +21 -4
  6. package/docs/expressions/syntax.md +7 -0
  7. package/docs/reference/functions/complex.md +5 -49
  8. package/docs/reference/functions/eigs.md +12 -12
  9. package/docs/reference/functions/flatten.md +1 -0
  10. package/docs/reference/functions/lsolveAll.md +2 -2
  11. package/docs/reference/functions/matrixFromColumns.md +43 -0
  12. package/docs/reference/functions/matrixFromFunction.md +48 -0
  13. package/docs/reference/functions/matrixFromRows.md +43 -0
  14. package/docs/reference/functions/usolveAll.md +2 -2
  15. package/docs/reference/functions.md +6 -3
  16. package/examples/advanced/custom_scope_objects.js +115 -0
  17. package/examples/node_modules/.bin/envinfo +15 -0
  18. package/examples/node_modules/.bin/envinfo.cmd +17 -0
  19. package/examples/node_modules/.bin/envinfo.ps1 +18 -0
  20. package/examples/node_modules/.bin/import-local-fixture +15 -0
  21. package/examples/node_modules/.bin/import-local-fixture.cmd +17 -0
  22. package/examples/node_modules/.bin/import-local-fixture.ps1 +18 -0
  23. package/examples/node_modules/.bin/node-which +15 -0
  24. package/examples/node_modules/.bin/node-which.cmd +17 -0
  25. package/examples/node_modules/.bin/node-which.ps1 +18 -0
  26. package/examples/node_modules/.bin/webpack-cli +15 -0
  27. package/examples/node_modules/.bin/webpack-cli.cmd +17 -0
  28. package/examples/node_modules/.bin/webpack-cli.ps1 +18 -0
  29. package/examples/node_modules/@discoveryjs/json-ext/CHANGELOG.md +42 -0
  30. package/examples/node_modules/@discoveryjs/json-ext/LICENSE +21 -0
  31. package/examples/node_modules/@discoveryjs/json-ext/README.md +255 -0
  32. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.js +808 -0
  33. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.min.js +1 -0
  34. package/examples/node_modules/@discoveryjs/json-ext/package.json +93 -0
  35. package/examples/node_modules/@discoveryjs/json-ext/src/index.js +6 -0
  36. package/examples/node_modules/@discoveryjs/json-ext/src/parse-chunked.js +339 -0
  37. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-info.js +224 -0
  38. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream-browser.js +3 -0
  39. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream.js +394 -0
  40. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder-browser.js +1 -0
  41. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder.js +1 -0
  42. package/examples/node_modules/@discoveryjs/json-ext/src/utils.js +148 -0
  43. package/examples/node_modules/@webpack-cli/configtest/CHANGELOG.md +18 -0
  44. package/examples/node_modules/@webpack-cli/configtest/LICENSE +20 -0
  45. package/examples/node_modules/@webpack-cli/configtest/lib/index.d.ts +4 -0
  46. package/examples/node_modules/@webpack-cli/configtest/lib/index.js +62 -0
  47. package/examples/node_modules/@webpack-cli/configtest/package.json +45 -0
  48. package/examples/node_modules/@webpack-cli/info/CHANGELOG.md +61 -0
  49. package/examples/node_modules/@webpack-cli/info/LICENSE +20 -0
  50. package/examples/node_modules/@webpack-cli/info/README.md +49 -0
  51. package/examples/node_modules/@webpack-cli/info/lib/index.d.ts +4 -0
  52. package/examples/node_modules/@webpack-cli/info/lib/index.js +66 -0
  53. package/examples/node_modules/@webpack-cli/info/package.json +47 -0
  54. package/examples/node_modules/@webpack-cli/serve/CHANGELOG.md +93 -0
  55. package/examples/node_modules/@webpack-cli/serve/LICENSE +20 -0
  56. package/examples/node_modules/@webpack-cli/serve/README.md +26 -0
  57. package/examples/node_modules/@webpack-cli/serve/lib/index.d.ts +4 -0
  58. package/examples/node_modules/@webpack-cli/serve/lib/index.js +107 -0
  59. package/examples/node_modules/@webpack-cli/serve/lib/startDevServer.d.ts +12 -0
  60. package/examples/node_modules/@webpack-cli/serve/lib/startDevServer.js +113 -0
  61. package/examples/node_modules/@webpack-cli/serve/lib/types.d.ts +48 -0
  62. package/examples/node_modules/@webpack-cli/serve/lib/types.js +12 -0
  63. package/examples/node_modules/@webpack-cli/serve/package.json +50 -0
  64. package/examples/node_modules/ansi-colors/LICENSE +21 -0
  65. package/examples/node_modules/ansi-colors/README.md +315 -0
  66. package/examples/node_modules/ansi-colors/index.js +177 -0
  67. package/examples/node_modules/ansi-colors/package.json +152 -0
  68. package/examples/node_modules/ansi-colors/symbols.js +70 -0
  69. package/examples/node_modules/ansi-colors/types/index.d.ts +161 -0
  70. package/examples/node_modules/clone-deep/LICENSE +21 -0
  71. package/examples/node_modules/clone-deep/README.md +106 -0
  72. package/examples/node_modules/clone-deep/index.js +49 -0
  73. package/examples/node_modules/clone-deep/package.json +112 -0
  74. package/examples/node_modules/colorette/LICENSE.md +7 -0
  75. package/examples/node_modules/colorette/README.md +102 -0
  76. package/examples/node_modules/colorette/index.cjs +73 -0
  77. package/examples/node_modules/colorette/index.d.ts +49 -0
  78. package/examples/node_modules/colorette/index.js +73 -0
  79. package/examples/node_modules/colorette/package.json +73 -0
  80. package/examples/node_modules/commander/CHANGELOG.md +440 -0
  81. package/examples/node_modules/commander/LICENSE +22 -0
  82. package/examples/node_modules/commander/Readme.md +917 -0
  83. package/examples/node_modules/commander/esm.mjs +4 -0
  84. package/examples/node_modules/commander/index.js +2217 -0
  85. package/examples/node_modules/commander/package-support.json +16 -0
  86. package/examples/node_modules/commander/package.json +100 -0
  87. package/examples/node_modules/commander/typings/index.d.ts +627 -0
  88. package/examples/node_modules/cross-spawn/CHANGELOG.md +130 -0
  89. package/examples/node_modules/cross-spawn/LICENSE +21 -0
  90. package/examples/node_modules/cross-spawn/README.md +96 -0
  91. package/examples/node_modules/cross-spawn/index.js +39 -0
  92. package/examples/node_modules/cross-spawn/lib/enoent.js +59 -0
  93. package/examples/node_modules/cross-spawn/lib/parse.js +91 -0
  94. package/examples/node_modules/cross-spawn/lib/util/escape.js +45 -0
  95. package/examples/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  96. package/examples/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  97. package/examples/node_modules/cross-spawn/package.json +104 -0
  98. package/examples/node_modules/enquirer/CHANGELOG.md +135 -0
  99. package/examples/node_modules/enquirer/LICENSE +21 -0
  100. package/examples/node_modules/enquirer/README.md +1752 -0
  101. package/examples/node_modules/enquirer/index.d.ts +151 -0
  102. package/examples/node_modules/enquirer/index.js +250 -0
  103. package/examples/node_modules/enquirer/lib/ansi.js +116 -0
  104. package/examples/node_modules/enquirer/lib/combos.js +75 -0
  105. package/examples/node_modules/enquirer/lib/completer.js +52 -0
  106. package/examples/node_modules/enquirer/lib/interpolate.js +266 -0
  107. package/examples/node_modules/enquirer/lib/keypress.js +243 -0
  108. package/examples/node_modules/enquirer/lib/placeholder.js +63 -0
  109. package/examples/node_modules/enquirer/lib/prompt.js +485 -0
  110. package/examples/node_modules/enquirer/lib/prompts/autocomplete.js +113 -0
  111. package/examples/node_modules/enquirer/lib/prompts/basicauth.js +41 -0
  112. package/examples/node_modules/enquirer/lib/prompts/confirm.js +13 -0
  113. package/examples/node_modules/enquirer/lib/prompts/editable.js +136 -0
  114. package/examples/node_modules/enquirer/lib/prompts/form.js +196 -0
  115. package/examples/node_modules/enquirer/lib/prompts/index.js +28 -0
  116. package/examples/node_modules/enquirer/lib/prompts/input.js +55 -0
  117. package/examples/node_modules/enquirer/lib/prompts/invisible.js +11 -0
  118. package/examples/node_modules/enquirer/lib/prompts/list.js +36 -0
  119. package/examples/node_modules/enquirer/lib/prompts/multiselect.js +11 -0
  120. package/examples/node_modules/enquirer/lib/prompts/numeral.js +1 -0
  121. package/examples/node_modules/enquirer/lib/prompts/password.js +18 -0
  122. package/examples/node_modules/enquirer/lib/prompts/quiz.js +37 -0
  123. package/examples/node_modules/enquirer/lib/prompts/scale.js +237 -0
  124. package/examples/node_modules/enquirer/lib/prompts/select.js +139 -0
  125. package/examples/node_modules/enquirer/lib/prompts/snippet.js +185 -0
  126. package/examples/node_modules/enquirer/lib/prompts/sort.js +37 -0
  127. package/examples/node_modules/enquirer/lib/prompts/survey.js +163 -0
  128. package/examples/node_modules/enquirer/lib/prompts/text.js +1 -0
  129. package/examples/node_modules/enquirer/lib/prompts/toggle.js +109 -0
  130. package/examples/node_modules/enquirer/lib/render.js +33 -0
  131. package/examples/node_modules/enquirer/lib/roles.js +46 -0
  132. package/examples/node_modules/enquirer/lib/state.js +69 -0
  133. package/examples/node_modules/enquirer/lib/styles.js +144 -0
  134. package/examples/node_modules/enquirer/lib/symbols.js +66 -0
  135. package/examples/node_modules/enquirer/lib/theme.js +11 -0
  136. package/examples/node_modules/enquirer/lib/timer.js +38 -0
  137. package/examples/node_modules/enquirer/lib/types/array.js +658 -0
  138. package/examples/node_modules/enquirer/lib/types/auth.js +29 -0
  139. package/examples/node_modules/enquirer/lib/types/boolean.js +88 -0
  140. package/examples/node_modules/enquirer/lib/types/index.js +7 -0
  141. package/examples/node_modules/enquirer/lib/types/number.js +86 -0
  142. package/examples/node_modules/enquirer/lib/types/string.js +185 -0
  143. package/examples/node_modules/enquirer/lib/utils.js +268 -0
  144. package/examples/node_modules/enquirer/package.json +148 -0
  145. package/examples/node_modules/envinfo/LICENSE +21 -0
  146. package/examples/node_modules/envinfo/README.md +285 -0
  147. package/examples/node_modules/envinfo/dist/cli.js +2 -0
  148. package/examples/node_modules/envinfo/dist/envinfo.js +1 -0
  149. package/examples/node_modules/envinfo/package.json +130 -0
  150. package/examples/node_modules/execa/index.d.ts +554 -0
  151. package/examples/node_modules/execa/index.js +258 -0
  152. package/examples/node_modules/execa/lib/command.js +32 -0
  153. package/examples/node_modules/execa/lib/error.js +86 -0
  154. package/examples/node_modules/execa/lib/kill.js +112 -0
  155. package/examples/node_modules/execa/lib/promise.js +46 -0
  156. package/examples/node_modules/execa/lib/stdio.js +52 -0
  157. package/examples/node_modules/execa/lib/stream.js +97 -0
  158. package/examples/node_modules/execa/license +9 -0
  159. package/examples/node_modules/execa/package.json +102 -0
  160. package/examples/node_modules/execa/readme.md +650 -0
  161. package/examples/node_modules/fastest-levenshtein/.eslintrc.js +27 -0
  162. package/examples/node_modules/fastest-levenshtein/.prettierrc +4 -0
  163. package/examples/node_modules/fastest-levenshtein/.travis.yml +17 -0
  164. package/examples/node_modules/fastest-levenshtein/LICENSE.md +21 -0
  165. package/examples/node_modules/fastest-levenshtein/README.md +55 -0
  166. package/examples/node_modules/fastest-levenshtein/index.d.ts +2 -0
  167. package/examples/node_modules/fastest-levenshtein/index.js +147 -0
  168. package/examples/node_modules/fastest-levenshtein/package.json +90 -0
  169. package/examples/node_modules/fastest-levenshtein/test.js +64 -0
  170. package/examples/node_modules/find-up/index.d.ts +137 -0
  171. package/examples/node_modules/find-up/index.js +89 -0
  172. package/examples/node_modules/find-up/license +9 -0
  173. package/examples/node_modules/find-up/package.json +85 -0
  174. package/examples/node_modules/find-up/readme.md +156 -0
  175. package/examples/node_modules/function-bind/.editorconfig +20 -0
  176. package/examples/node_modules/function-bind/.eslintrc +15 -0
  177. package/examples/node_modules/function-bind/.jscs.json +176 -0
  178. package/examples/node_modules/function-bind/.npmignore +22 -0
  179. package/examples/node_modules/function-bind/.travis.yml +168 -0
  180. package/examples/node_modules/function-bind/LICENSE +20 -0
  181. package/examples/node_modules/function-bind/README.md +48 -0
  182. package/examples/node_modules/function-bind/implementation.js +52 -0
  183. package/examples/node_modules/function-bind/index.js +5 -0
  184. package/examples/node_modules/function-bind/package.json +94 -0
  185. package/examples/node_modules/function-bind/test/.eslintrc +9 -0
  186. package/examples/node_modules/function-bind/test/index.js +252 -0
  187. package/examples/node_modules/get-stream/buffer-stream.js +52 -0
  188. package/examples/node_modules/get-stream/index.d.ts +105 -0
  189. package/examples/node_modules/get-stream/index.js +61 -0
  190. package/examples/node_modules/get-stream/license +9 -0
  191. package/examples/node_modules/get-stream/package.json +79 -0
  192. package/examples/node_modules/get-stream/readme.md +124 -0
  193. package/examples/node_modules/has/LICENSE-MIT +22 -0
  194. package/examples/node_modules/has/README.md +18 -0
  195. package/examples/node_modules/has/package.json +73 -0
  196. package/examples/node_modules/has/src/index.js +5 -0
  197. package/examples/node_modules/has/test/index.js +10 -0
  198. package/examples/node_modules/human-signals/CHANGELOG.md +11 -0
  199. package/examples/node_modules/human-signals/LICENSE +201 -0
  200. package/examples/node_modules/human-signals/README.md +165 -0
  201. package/examples/node_modules/human-signals/build/src/core.js +273 -0
  202. package/examples/node_modules/human-signals/build/src/core.js.map +1 -0
  203. package/examples/node_modules/human-signals/build/src/main.d.ts +52 -0
  204. package/examples/node_modules/human-signals/build/src/main.js +71 -0
  205. package/examples/node_modules/human-signals/build/src/main.js.map +1 -0
  206. package/examples/node_modules/human-signals/build/src/realtime.js +19 -0
  207. package/examples/node_modules/human-signals/build/src/realtime.js.map +1 -0
  208. package/examples/node_modules/human-signals/build/src/signals.js +35 -0
  209. package/examples/node_modules/human-signals/build/src/signals.js.map +1 -0
  210. package/examples/node_modules/human-signals/package.json +96 -0
  211. package/examples/node_modules/import-local/fixtures/cli.js +7 -0
  212. package/examples/node_modules/import-local/index.js +19 -0
  213. package/examples/node_modules/import-local/license +9 -0
  214. package/examples/node_modules/import-local/package.json +83 -0
  215. package/examples/node_modules/import-local/readme.md +38 -0
  216. package/examples/node_modules/interpret/CHANGELOG +115 -0
  217. package/examples/node_modules/interpret/LICENSE +22 -0
  218. package/examples/node_modules/interpret/README.md +229 -0
  219. package/examples/node_modules/interpret/index.js +211 -0
  220. package/examples/node_modules/interpret/mjs-stub.js +1 -0
  221. package/examples/node_modules/interpret/package.json +118 -0
  222. package/examples/node_modules/is-core-module/.eslintignore +1 -0
  223. package/examples/node_modules/is-core-module/.eslintrc +18 -0
  224. package/examples/node_modules/is-core-module/.github/FUNDING.yml +12 -0
  225. package/examples/node_modules/is-core-module/.github/workflows/node-4+.yml +54 -0
  226. package/examples/node_modules/is-core-module/.github/workflows/node-iojs.yml +58 -0
  227. package/examples/node_modules/is-core-module/.github/workflows/node-pretest.yml +26 -0
  228. package/examples/node_modules/is-core-module/.github/workflows/node-zero.yml +58 -0
  229. package/examples/node_modules/is-core-module/.github/workflows/rebase.yml +15 -0
  230. package/examples/node_modules/is-core-module/.github/workflows/require-allow-edits.yml +14 -0
  231. package/examples/node_modules/is-core-module/.nycrc +13 -0
  232. package/examples/node_modules/is-core-module/CHANGELOG.md +58 -0
  233. package/examples/node_modules/is-core-module/LICENSE +20 -0
  234. package/examples/node_modules/is-core-module/README.md +37 -0
  235. package/examples/node_modules/is-core-module/core.json +83 -0
  236. package/examples/node_modules/is-core-module/index.js +69 -0
  237. package/examples/node_modules/is-core-module/package.json +94 -0
  238. package/examples/node_modules/is-core-module/test/index.js +83 -0
  239. package/examples/node_modules/is-plain-object/LICENSE +21 -0
  240. package/examples/node_modules/is-plain-object/README.md +104 -0
  241. package/examples/node_modules/is-plain-object/index.d.ts +5 -0
  242. package/examples/node_modules/is-plain-object/index.js +37 -0
  243. package/examples/node_modules/is-plain-object/package.json +121 -0
  244. package/examples/node_modules/is-stream/index.d.ts +80 -0
  245. package/examples/node_modules/is-stream/index.js +29 -0
  246. package/examples/node_modules/is-stream/license +9 -0
  247. package/examples/node_modules/is-stream/package.json +73 -0
  248. package/examples/node_modules/is-stream/readme.md +57 -0
  249. package/examples/node_modules/isexe/.npmignore +2 -0
  250. package/examples/node_modules/isexe/LICENSE +15 -0
  251. package/examples/node_modules/isexe/README.md +51 -0
  252. package/examples/node_modules/isexe/index.js +57 -0
  253. package/examples/node_modules/isexe/mode.js +41 -0
  254. package/examples/node_modules/isexe/package.json +60 -0
  255. package/examples/node_modules/isexe/test/basic.js +221 -0
  256. package/examples/node_modules/isexe/windows.js +42 -0
  257. package/examples/node_modules/isobject/LICENSE +21 -0
  258. package/examples/node_modules/isobject/README.md +122 -0
  259. package/examples/node_modules/isobject/index.d.ts +5 -0
  260. package/examples/node_modules/isobject/index.js +12 -0
  261. package/examples/node_modules/isobject/package.json +119 -0
  262. package/examples/node_modules/kind-of/CHANGELOG.md +160 -0
  263. package/examples/node_modules/kind-of/LICENSE +21 -0
  264. package/examples/node_modules/kind-of/README.md +367 -0
  265. package/examples/node_modules/kind-of/index.js +129 -0
  266. package/examples/node_modules/kind-of/package.json +144 -0
  267. package/examples/node_modules/locate-path/index.d.ts +83 -0
  268. package/examples/node_modules/locate-path/index.js +65 -0
  269. package/examples/node_modules/locate-path/license +9 -0
  270. package/examples/node_modules/locate-path/package.json +77 -0
  271. package/examples/node_modules/locate-path/readme.md +122 -0
  272. package/examples/node_modules/merge-stream/LICENSE +21 -0
  273. package/examples/node_modules/merge-stream/README.md +78 -0
  274. package/examples/node_modules/merge-stream/index.js +41 -0
  275. package/examples/node_modules/merge-stream/package.json +54 -0
  276. package/examples/node_modules/mimic-fn/index.d.ts +54 -0
  277. package/examples/node_modules/mimic-fn/index.js +13 -0
  278. package/examples/node_modules/mimic-fn/license +9 -0
  279. package/examples/node_modules/mimic-fn/package.json +74 -0
  280. package/examples/node_modules/mimic-fn/readme.md +69 -0
  281. package/examples/node_modules/npm-run-path/index.d.ts +89 -0
  282. package/examples/node_modules/npm-run-path/index.js +47 -0
  283. package/examples/node_modules/npm-run-path/license +9 -0
  284. package/examples/node_modules/npm-run-path/package.json +76 -0
  285. package/examples/node_modules/npm-run-path/readme.md +115 -0
  286. package/examples/node_modules/onetime/index.d.ts +64 -0
  287. package/examples/node_modules/onetime/index.js +44 -0
  288. package/examples/node_modules/onetime/license +9 -0
  289. package/examples/node_modules/onetime/package.json +75 -0
  290. package/examples/node_modules/onetime/readme.md +94 -0
  291. package/examples/node_modules/p-limit/index.d.ts +38 -0
  292. package/examples/node_modules/p-limit/index.js +57 -0
  293. package/examples/node_modules/p-limit/license +9 -0
  294. package/examples/node_modules/p-limit/package.json +84 -0
  295. package/examples/node_modules/p-limit/readme.md +101 -0
  296. package/examples/node_modules/p-locate/index.d.ts +64 -0
  297. package/examples/node_modules/p-locate/index.js +52 -0
  298. package/examples/node_modules/p-locate/license +9 -0
  299. package/examples/node_modules/p-locate/package.json +85 -0
  300. package/examples/node_modules/p-locate/readme.md +90 -0
  301. package/examples/node_modules/p-try/index.d.ts +39 -0
  302. package/examples/node_modules/p-try/index.js +9 -0
  303. package/examples/node_modules/p-try/license +9 -0
  304. package/examples/node_modules/p-try/package.json +74 -0
  305. package/examples/node_modules/p-try/readme.md +58 -0
  306. package/examples/node_modules/path-exists/index.d.ts +28 -0
  307. package/examples/node_modules/path-exists/index.js +23 -0
  308. package/examples/node_modules/path-exists/license +9 -0
  309. package/examples/node_modules/path-exists/package.json +71 -0
  310. package/examples/node_modules/path-exists/readme.md +52 -0
  311. package/examples/node_modules/path-key/index.d.ts +40 -0
  312. package/examples/node_modules/path-key/index.js +16 -0
  313. package/examples/node_modules/path-key/license +9 -0
  314. package/examples/node_modules/path-key/package.json +72 -0
  315. package/examples/node_modules/path-key/readme.md +61 -0
  316. package/examples/node_modules/path-parse/.travis.yml +9 -0
  317. package/examples/node_modules/path-parse/LICENSE +21 -0
  318. package/examples/node_modules/path-parse/README.md +42 -0
  319. package/examples/node_modules/path-parse/index.js +93 -0
  320. package/examples/node_modules/path-parse/package.json +61 -0
  321. package/examples/node_modules/path-parse/test.js +77 -0
  322. package/examples/node_modules/pkg-dir/index.d.ts +44 -0
  323. package/examples/node_modules/pkg-dir/index.js +17 -0
  324. package/examples/node_modules/pkg-dir/license +9 -0
  325. package/examples/node_modules/pkg-dir/package.json +88 -0
  326. package/examples/node_modules/pkg-dir/readme.md +66 -0
  327. package/examples/node_modules/rechoir/LICENSE +24 -0
  328. package/examples/node_modules/rechoir/README.md +74 -0
  329. package/examples/node_modules/rechoir/index.js +67 -0
  330. package/examples/node_modules/rechoir/lib/extension.js +19 -0
  331. package/examples/node_modules/rechoir/lib/normalize.js +13 -0
  332. package/examples/node_modules/rechoir/lib/register.js +15 -0
  333. package/examples/node_modules/rechoir/package.json +89 -0
  334. package/examples/node_modules/resolve/.editorconfig +37 -0
  335. package/examples/node_modules/resolve/.eslintignore +1 -0
  336. package/examples/node_modules/resolve/.eslintrc +39 -0
  337. package/examples/node_modules/resolve/LICENSE +21 -0
  338. package/examples/node_modules/resolve/SECURITY.md +3 -0
  339. package/examples/node_modules/resolve/appveyor.yml +74 -0
  340. package/examples/node_modules/resolve/example/async.js +5 -0
  341. package/examples/node_modules/resolve/example/sync.js +3 -0
  342. package/examples/node_modules/resolve/index.js +6 -0
  343. package/examples/node_modules/resolve/lib/async.js +320 -0
  344. package/examples/node_modules/resolve/lib/caller.js +8 -0
  345. package/examples/node_modules/resolve/lib/core.js +53 -0
  346. package/examples/node_modules/resolve/lib/core.json +83 -0
  347. package/examples/node_modules/resolve/lib/is-core.js +5 -0
  348. package/examples/node_modules/resolve/lib/node-modules-paths.js +42 -0
  349. package/examples/node_modules/resolve/lib/normalize-options.js +10 -0
  350. package/examples/node_modules/resolve/lib/sync.js +199 -0
  351. package/examples/node_modules/resolve/package.json +80 -0
  352. package/examples/node_modules/resolve/readme.markdown +279 -0
  353. package/examples/node_modules/resolve/test/.eslintrc +5 -0
  354. package/examples/node_modules/resolve/test/core.js +81 -0
  355. package/examples/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  356. package/examples/node_modules/resolve/test/dotdot/index.js +1 -0
  357. package/examples/node_modules/resolve/test/dotdot.js +29 -0
  358. package/examples/node_modules/resolve/test/faulty_basedir.js +29 -0
  359. package/examples/node_modules/resolve/test/filter.js +34 -0
  360. package/examples/node_modules/resolve/test/filter_sync.js +33 -0
  361. package/examples/node_modules/resolve/test/mock.js +315 -0
  362. package/examples/node_modules/resolve/test/mock_sync.js +216 -0
  363. package/examples/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  364. package/examples/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  365. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  366. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  367. package/examples/node_modules/resolve/test/module_dir.js +56 -0
  368. package/examples/node_modules/resolve/test/node-modules-paths.js +143 -0
  369. package/examples/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  370. package/examples/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  371. package/examples/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  372. package/examples/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  373. package/examples/node_modules/resolve/test/node_path.js +70 -0
  374. package/examples/node_modules/resolve/test/nonstring.js +9 -0
  375. package/examples/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  376. package/examples/node_modules/resolve/test/pathfilter.js +75 -0
  377. package/examples/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  378. package/examples/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  379. package/examples/node_modules/resolve/test/precedence/aaa.js +1 -0
  380. package/examples/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  381. package/examples/node_modules/resolve/test/precedence/bbb.js +1 -0
  382. package/examples/node_modules/resolve/test/precedence.js +23 -0
  383. package/examples/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  384. package/examples/node_modules/resolve/test/resolver/baz/package.json +4 -0
  385. package/examples/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  386. package/examples/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  387. package/examples/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  388. package/examples/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
  389. package/examples/node_modules/resolve/test/resolver/cup.coffee +1 -0
  390. package/examples/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
  391. package/examples/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
  392. package/examples/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
  393. package/examples/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
  394. package/examples/node_modules/resolve/test/resolver/foo.js +1 -0
  395. package/examples/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  396. package/examples/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  397. package/examples/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
  398. package/examples/node_modules/resolve/test/resolver/mug.coffee +0 -0
  399. package/examples/node_modules/resolve/test/resolver/mug.js +0 -0
  400. package/examples/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
  401. package/examples/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
  402. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
  403. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
  404. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  405. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
  406. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
  407. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
  408. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
  409. package/examples/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  410. package/examples/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  411. package/examples/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  412. package/examples/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
  413. package/examples/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
  414. package/examples/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  415. package/examples/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  416. package/examples/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
  417. package/examples/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
  418. package/examples/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
  419. package/examples/node_modules/resolve/test/resolver.js +450 -0
  420. package/examples/node_modules/resolve/test/resolver_sync.js +358 -0
  421. package/examples/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  422. package/examples/node_modules/resolve/test/shadowed_core.js +54 -0
  423. package/examples/node_modules/resolve/test/subdirs.js +13 -0
  424. package/examples/node_modules/resolve/test/symlinks.js +176 -0
  425. package/examples/node_modules/resolve-cwd/index.d.ts +48 -0
  426. package/examples/node_modules/resolve-cwd/index.js +5 -0
  427. package/examples/node_modules/resolve-cwd/license +9 -0
  428. package/examples/node_modules/resolve-cwd/package.json +75 -0
  429. package/examples/node_modules/resolve-cwd/readme.md +58 -0
  430. package/examples/node_modules/resolve-from/index.d.ts +31 -0
  431. package/examples/node_modules/resolve-from/index.js +47 -0
  432. package/examples/node_modules/resolve-from/license +9 -0
  433. package/examples/node_modules/resolve-from/package.json +68 -0
  434. package/examples/node_modules/resolve-from/readme.md +72 -0
  435. package/examples/node_modules/shallow-clone/LICENSE +21 -0
  436. package/examples/node_modules/shallow-clone/README.md +153 -0
  437. package/examples/node_modules/shallow-clone/index.js +83 -0
  438. package/examples/node_modules/shallow-clone/package.json +101 -0
  439. package/examples/node_modules/shebang-command/index.js +19 -0
  440. package/examples/node_modules/shebang-command/license +9 -0
  441. package/examples/node_modules/shebang-command/package.json +66 -0
  442. package/examples/node_modules/shebang-command/readme.md +34 -0
  443. package/examples/node_modules/shebang-regex/index.d.ts +22 -0
  444. package/examples/node_modules/shebang-regex/index.js +2 -0
  445. package/examples/node_modules/shebang-regex/license +9 -0
  446. package/examples/node_modules/shebang-regex/package.json +67 -0
  447. package/examples/node_modules/shebang-regex/readme.md +33 -0
  448. package/examples/node_modules/signal-exit/CHANGELOG.md +35 -0
  449. package/examples/node_modules/signal-exit/LICENSE.txt +16 -0
  450. package/examples/node_modules/signal-exit/README.md +39 -0
  451. package/examples/node_modules/signal-exit/index.js +163 -0
  452. package/examples/node_modules/signal-exit/package.json +66 -0
  453. package/examples/node_modules/signal-exit/signals.js +53 -0
  454. package/examples/node_modules/strip-final-newline/index.js +16 -0
  455. package/examples/node_modules/strip-final-newline/license +9 -0
  456. package/examples/node_modules/strip-final-newline/package.json +72 -0
  457. package/examples/node_modules/strip-final-newline/readme.md +30 -0
  458. package/examples/node_modules/v8-compile-cache/CHANGELOG.md +53 -0
  459. package/examples/node_modules/v8-compile-cache/LICENSE +21 -0
  460. package/examples/node_modules/v8-compile-cache/README.md +55 -0
  461. package/examples/node_modules/v8-compile-cache/package.json +66 -0
  462. package/examples/node_modules/v8-compile-cache/v8-compile-cache.js +371 -0
  463. package/examples/node_modules/webpack-cli/CHANGELOG.md +501 -0
  464. package/examples/node_modules/webpack-cli/LICENSE +20 -0
  465. package/examples/node_modules/webpack-cli/README.md +116 -0
  466. package/examples/node_modules/webpack-cli/bin/cli.js +40 -0
  467. package/examples/node_modules/webpack-cli/lib/bootstrap.js +18 -0
  468. package/examples/node_modules/webpack-cli/lib/index.js +5 -0
  469. package/examples/node_modules/webpack-cli/lib/plugins/CLIPlugin.js +99 -0
  470. package/examples/node_modules/webpack-cli/lib/utils/__tests__/get-package-manager.test.js +108 -0
  471. package/examples/node_modules/webpack-cli/lib/utils/__tests__/prompt-installation.test.js +118 -0
  472. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-all-lock/package-lock.json +0 -0
  473. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-all-lock/pnpm-lock.yaml +0 -0
  474. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-all-lock/yarn.lock +0 -0
  475. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-pnpm/package-lock.json +0 -0
  476. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-pnpm/pnpm-lock.yaml +0 -0
  477. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-yarn/package-lock.json +0 -0
  478. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-and-yarn/yarn.lock +0 -0
  479. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-npm-lock/package-lock.json +0 -0
  480. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-pnpm-lock/pnpm-lock.yaml +0 -0
  481. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-and-pnpm/pnpm-lock.yaml +0 -0
  482. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-and-pnpm/yarn.lock +0 -0
  483. package/examples/node_modules/webpack-cli/lib/utils/__tests__/test-yarn-lock/yarn.lock +0 -0
  484. package/examples/node_modules/webpack-cli/lib/utils/capitalize-first-letter.js +9 -0
  485. package/examples/node_modules/webpack-cli/lib/utils/dynamic-import-loader.js +13 -0
  486. package/examples/node_modules/webpack-cli/lib/utils/get-package-manager.js +65 -0
  487. package/examples/node_modules/webpack-cli/lib/utils/index.js +49 -0
  488. package/examples/node_modules/webpack-cli/lib/utils/logger.js +11 -0
  489. package/examples/node_modules/webpack-cli/lib/utils/package-exists.js +9 -0
  490. package/examples/node_modules/webpack-cli/lib/utils/prompt-installation.js +58 -0
  491. package/examples/node_modules/webpack-cli/lib/utils/run-command.js +13 -0
  492. package/examples/node_modules/webpack-cli/lib/utils/to-kebab-case.js +5 -0
  493. package/examples/node_modules/webpack-cli/lib/webpack-cli.js +1803 -0
  494. package/examples/node_modules/webpack-cli/package.json +96 -0
  495. package/examples/node_modules/webpack-merge/CHANGELOG.md +421 -0
  496. package/examples/node_modules/webpack-merge/LICENSE +20 -0
  497. package/examples/node_modules/webpack-merge/README.md +314 -0
  498. package/examples/node_modules/webpack-merge/dist/index.d.ts +15 -0
  499. package/examples/node_modules/webpack-merge/dist/index.js +262 -0
  500. package/examples/node_modules/webpack-merge/dist/index.js.map +1 -0
  501. package/examples/node_modules/webpack-merge/dist/join-arrays.d.ts +6 -0
  502. package/examples/node_modules/webpack-merge/dist/join-arrays.js +69 -0
  503. package/examples/node_modules/webpack-merge/dist/join-arrays.js.map +1 -0
  504. package/examples/node_modules/webpack-merge/dist/merge-with.d.ts +2 -0
  505. package/examples/node_modules/webpack-merge/dist/merge-with.js +38 -0
  506. package/examples/node_modules/webpack-merge/dist/merge-with.js.map +1 -0
  507. package/examples/node_modules/webpack-merge/dist/types.d.ts +13 -0
  508. package/examples/node_modules/webpack-merge/dist/types.js +12 -0
  509. package/examples/node_modules/webpack-merge/dist/types.js.map +1 -0
  510. package/examples/node_modules/webpack-merge/dist/unique.d.ts +2 -0
  511. package/examples/node_modules/webpack-merge/dist/unique.js +40 -0
  512. package/examples/node_modules/webpack-merge/dist/unique.js.map +1 -0
  513. package/examples/node_modules/webpack-merge/dist/utils.d.ts +5 -0
  514. package/examples/node_modules/webpack-merge/dist/utils.js +24 -0
  515. package/examples/node_modules/webpack-merge/dist/utils.js.map +1 -0
  516. package/examples/node_modules/webpack-merge/package.json +86 -0
  517. package/examples/node_modules/which/CHANGELOG.md +166 -0
  518. package/examples/node_modules/which/LICENSE +15 -0
  519. package/examples/node_modules/which/README.md +54 -0
  520. package/examples/node_modules/which/bin/node-which +52 -0
  521. package/examples/node_modules/which/package.json +76 -0
  522. package/examples/node_modules/which/which.js +125 -0
  523. package/examples/node_modules/wildcard/.travis.yml +9 -0
  524. package/examples/node_modules/wildcard/README.md +99 -0
  525. package/examples/node_modules/wildcard/docs.json +9 -0
  526. package/examples/node_modules/wildcard/examples/arrays.js +10 -0
  527. package/examples/node_modules/wildcard/examples/objects.js +10 -0
  528. package/examples/node_modules/wildcard/examples/strings.js +7 -0
  529. package/examples/node_modules/wildcard/index.js +114 -0
  530. package/examples/node_modules/wildcard/package.json +82 -0
  531. package/examples/node_modules/wildcard/test/all.js +3 -0
  532. package/examples/node_modules/wildcard/test/arrays.js +33 -0
  533. package/examples/node_modules/wildcard/test/objects.js +106 -0
  534. package/examples/node_modules/wildcard/test/strings.js +46 -0
  535. package/examples/node_modules/wildcard/yarn.lock +228 -0
  536. package/lib/browser/math.js +10 -10
  537. package/lib/browser/math.js.map +1 -1
  538. package/lib/cjs/core/create.js +8 -7
  539. package/lib/cjs/core/function/import.js +9 -7
  540. package/lib/cjs/core/function/typed.js +6 -1
  541. package/lib/cjs/defaultInstance.js +3 -3
  542. package/lib/cjs/entry/allFactoriesAny.js +3 -3
  543. package/lib/cjs/entry/allFactoriesNumber.js +3 -3
  544. package/lib/cjs/entry/configReadonly.js +5 -4
  545. package/lib/cjs/entry/dependenciesAny/dependenciesEigs.generated.js +51 -0
  546. package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromColumns.generated.js +29 -0
  547. package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromFunction.generated.js +26 -0
  548. package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromRows.generated.js +29 -0
  549. package/lib/cjs/entry/dependenciesAny.generated.js +24 -0
  550. package/lib/cjs/entry/impureFunctionsAny.generated.js +22 -17
  551. package/lib/cjs/entry/impureFunctionsNumber.generated.js +11 -9
  552. package/lib/cjs/entry/pureFunctionsAny.generated.js +78 -41
  553. package/lib/cjs/expression/Parser.js +22 -15
  554. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +9 -0
  555. package/lib/cjs/expression/embeddedDocs/function/matrix/column.js +1 -1
  556. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromColumns.js +15 -0
  557. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromFunction.js +15 -0
  558. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromRows.js +15 -0
  559. package/lib/cjs/expression/embeddedDocs/function/matrix/row.js +1 -1
  560. package/lib/cjs/expression/function/evaluate.js +6 -4
  561. package/lib/cjs/expression/keywords.js +1 -3
  562. package/lib/cjs/expression/node/AccessorNode.js +1 -0
  563. package/lib/cjs/expression/node/AssignmentNode.js +6 -3
  564. package/lib/cjs/expression/node/FunctionAssignmentNode.js +2 -4
  565. package/lib/cjs/expression/node/FunctionNode.js +86 -39
  566. package/lib/cjs/expression/node/IndexNode.js +5 -13
  567. package/lib/cjs/expression/node/Node.js +15 -9
  568. package/lib/cjs/expression/node/ObjectNode.js +5 -3
  569. package/lib/cjs/expression/node/SymbolNode.js +4 -4
  570. package/lib/cjs/expression/node/utils/access.js +5 -3
  571. package/lib/cjs/expression/node/utils/assign.js +5 -3
  572. package/lib/cjs/expression/parse.js +23 -20
  573. package/lib/cjs/expression/transform/utils/compileInlineExpression.js +5 -3
  574. package/lib/cjs/factoriesAny.js +24 -0
  575. package/lib/cjs/function/algebra/decomposition/qr.js +5 -3
  576. package/lib/cjs/function/algebra/simplify/resolve.js +7 -1
  577. package/lib/cjs/function/algebra/simplify.js +20 -14
  578. package/lib/cjs/function/algebra/solver/lsolveAll.js +9 -19
  579. package/lib/cjs/function/algebra/solver/usolveAll.js +9 -19
  580. package/lib/cjs/function/arithmetic/ceil.js +6 -16
  581. package/lib/cjs/function/arithmetic/floor.js +6 -16
  582. package/lib/cjs/function/arithmetic/norm.js +2 -2
  583. package/lib/cjs/function/arithmetic/pow.js +9 -7
  584. package/lib/cjs/function/arithmetic/round.js +7 -5
  585. package/lib/cjs/function/complex/im.js +3 -0
  586. package/lib/cjs/function/complex/re.js +3 -0
  587. package/lib/cjs/function/matrix/eigs/complexEigs.js +631 -0
  588. package/lib/cjs/function/matrix/eigs/realSymetric.js +341 -0
  589. package/lib/cjs/function/matrix/eigs.js +188 -334
  590. package/lib/cjs/function/matrix/flatten.js +1 -0
  591. package/lib/cjs/function/matrix/matrixFromColumns.js +118 -0
  592. package/lib/cjs/function/matrix/matrixFromFunction.js +85 -0
  593. package/lib/cjs/function/matrix/matrixFromRows.js +108 -0
  594. package/lib/cjs/function/probability/pickRandom.js +1 -1
  595. package/lib/cjs/function/probability/util/seededRNG.js +2 -2
  596. package/lib/cjs/function/relational/compareNatural.js +2 -2
  597. package/lib/cjs/function/utils/isPrime.js +67 -3
  598. package/lib/cjs/header.js +2 -2
  599. package/lib/cjs/plain/bignumber/index.js +2 -2
  600. package/lib/cjs/type/bignumber/BigNumber.js +2 -2
  601. package/lib/cjs/type/bignumber/function/bignumber.js +4 -4
  602. package/lib/cjs/type/complex/Complex.js +5 -5
  603. package/lib/cjs/type/fraction/Fraction.js +2 -2
  604. package/lib/cjs/type/matrix/DenseMatrix.js +138 -0
  605. package/lib/cjs/type/matrix/Matrix.js +10 -0
  606. package/lib/cjs/type/matrix/SparseMatrix.js +77 -3
  607. package/lib/cjs/type/matrix/function/matrix.js +2 -1
  608. package/lib/cjs/type/number.js +63 -5
  609. package/lib/cjs/type/unit/Unit.js +15 -13
  610. package/lib/cjs/utils/array.js +1 -1
  611. package/lib/cjs/utils/customs.js +18 -4
  612. package/lib/cjs/utils/emitter.js +2 -2
  613. package/lib/cjs/utils/function.js +6 -2
  614. package/lib/cjs/utils/is.js +7 -5
  615. package/lib/cjs/utils/latex.js +2 -2
  616. package/lib/cjs/utils/map.js +197 -0
  617. package/lib/cjs/utils/object.js +6 -5
  618. package/lib/cjs/utils/scope.js +33 -0
  619. package/lib/cjs/utils/snapshot.js +17 -16
  620. package/lib/cjs/utils/string.js +6 -4
  621. package/lib/cjs/version.js +1 -1
  622. package/lib/esm/constants.js +15 -15
  623. package/lib/esm/core/create.js +1 -2
  624. package/lib/esm/core/function/typed.js +5 -1
  625. package/lib/esm/entry/configReadonly.js +1 -2
  626. package/lib/esm/entry/dependenciesAny/dependenciesEigs.generated.js +34 -0
  627. package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromColumns.generated.js +16 -0
  628. package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromFunction.generated.js +14 -0
  629. package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromRows.generated.js +16 -0
  630. package/lib/esm/entry/dependenciesAny.generated.js +3 -0
  631. package/lib/esm/entry/impureFunctionsAny.generated.js +13 -10
  632. package/lib/esm/entry/impureFunctionsNumber.generated.js +1 -1
  633. package/lib/esm/entry/pureFunctionsAny.generated.js +66 -32
  634. package/lib/esm/expression/Help.js +1 -1
  635. package/lib/esm/expression/Parser.js +23 -15
  636. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
  637. package/lib/esm/expression/embeddedDocs/function/matrix/column.js +1 -1
  638. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromColumns.js +8 -0
  639. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromFunction.js +8 -0
  640. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromRows.js +8 -0
  641. package/lib/esm/expression/embeddedDocs/function/matrix/row.js +1 -1
  642. package/lib/esm/expression/function/compile.js +1 -1
  643. package/lib/esm/expression/function/evaluate.js +6 -5
  644. package/lib/esm/expression/function/help.js +1 -1
  645. package/lib/esm/expression/function/parser.js +1 -1
  646. package/lib/esm/expression/keywords.js +1 -3
  647. package/lib/esm/expression/node/AccessorNode.js +2 -1
  648. package/lib/esm/expression/node/ArrayNode.js +1 -1
  649. package/lib/esm/expression/node/AssignmentNode.js +7 -4
  650. package/lib/esm/expression/node/BlockNode.js +1 -1
  651. package/lib/esm/expression/node/ConditionalNode.js +1 -1
  652. package/lib/esm/expression/node/ConstantNode.js +1 -1
  653. package/lib/esm/expression/node/FunctionAssignmentNode.js +3 -4
  654. package/lib/esm/expression/node/FunctionNode.js +68 -33
  655. package/lib/esm/expression/node/IndexNode.js +1 -1
  656. package/lib/esm/expression/node/Node.js +7 -8
  657. package/lib/esm/expression/node/ObjectNode.js +1 -1
  658. package/lib/esm/expression/node/OperatorNode.js +1 -1
  659. package/lib/esm/expression/node/ParenthesisNode.js +1 -1
  660. package/lib/esm/expression/node/RangeNode.js +1 -1
  661. package/lib/esm/expression/node/RelationalNode.js +1 -1
  662. package/lib/esm/expression/node/SymbolNode.js +5 -5
  663. package/lib/esm/expression/parse.js +15 -9
  664. package/lib/esm/expression/transform/apply.transform.js +1 -1
  665. package/lib/esm/expression/transform/column.transform.js +1 -1
  666. package/lib/esm/expression/transform/concat.transform.js +1 -1
  667. package/lib/esm/expression/transform/diff.transform.js +1 -1
  668. package/lib/esm/expression/transform/filter.transform.js +1 -1
  669. package/lib/esm/expression/transform/forEach.transform.js +1 -1
  670. package/lib/esm/expression/transform/index.transform.js +1 -1
  671. package/lib/esm/expression/transform/map.transform.js +1 -1
  672. package/lib/esm/expression/transform/max.transform.js +1 -1
  673. package/lib/esm/expression/transform/mean.transform.js +1 -1
  674. package/lib/esm/expression/transform/min.transform.js +1 -1
  675. package/lib/esm/expression/transform/range.transform.js +1 -1
  676. package/lib/esm/expression/transform/row.transform.js +1 -1
  677. package/lib/esm/expression/transform/std.transform.js +1 -1
  678. package/lib/esm/expression/transform/subset.transform.js +1 -1
  679. package/lib/esm/expression/transform/sum.transform.js +1 -1
  680. package/lib/esm/expression/transform/utils/compileInlineExpression.js +4 -3
  681. package/lib/esm/expression/transform/variance.transform.js +1 -1
  682. package/lib/esm/factoriesAny.js +3 -0
  683. package/lib/esm/factoriesNumber.js +1 -1
  684. package/lib/esm/function/algebra/decomposition/lup.js +1 -1
  685. package/lib/esm/function/algebra/decomposition/qr.js +2 -3
  686. package/lib/esm/function/algebra/decomposition/slu.js +1 -1
  687. package/lib/esm/function/algebra/derivative.js +1 -1
  688. package/lib/esm/function/algebra/rationalize.js +1 -1
  689. package/lib/esm/function/algebra/simplify/resolve.js +7 -2
  690. package/lib/esm/function/algebra/simplify/simplifyConstant.js +1 -1
  691. package/lib/esm/function/algebra/simplify/simplifyCore.js +1 -1
  692. package/lib/esm/function/algebra/simplify/util.js +1 -1
  693. package/lib/esm/function/algebra/simplify.js +16 -12
  694. package/lib/esm/function/algebra/solver/lsolve.js +1 -1
  695. package/lib/esm/function/algebra/solver/lsolveAll.js +4 -4
  696. package/lib/esm/function/algebra/solver/lusolve.js +1 -1
  697. package/lib/esm/function/algebra/solver/usolve.js +1 -1
  698. package/lib/esm/function/algebra/solver/usolveAll.js +4 -4
  699. package/lib/esm/function/algebra/sparse/csAmd.js +1 -1
  700. package/lib/esm/function/algebra/sparse/csChol.js +1 -1
  701. package/lib/esm/function/algebra/sparse/csCounts.js +1 -1
  702. package/lib/esm/function/algebra/sparse/csLu.js +1 -1
  703. package/lib/esm/function/algebra/sparse/csSpsolve.js +1 -1
  704. package/lib/esm/function/algebra/sparse/csSqr.js +1 -1
  705. package/lib/esm/function/algebra/sparse/csSymperm.js +1 -1
  706. package/lib/esm/function/arithmetic/abs.js +1 -1
  707. package/lib/esm/function/arithmetic/add.js +1 -1
  708. package/lib/esm/function/arithmetic/addScalar.js +1 -1
  709. package/lib/esm/function/arithmetic/cbrt.js +1 -1
  710. package/lib/esm/function/arithmetic/ceil.js +1 -1
  711. package/lib/esm/function/arithmetic/cube.js +1 -1
  712. package/lib/esm/function/arithmetic/divide.js +1 -1
  713. package/lib/esm/function/arithmetic/divideScalar.js +1 -1
  714. package/lib/esm/function/arithmetic/dotDivide.js +1 -1
  715. package/lib/esm/function/arithmetic/dotMultiply.js +1 -1
  716. package/lib/esm/function/arithmetic/dotPow.js +1 -1
  717. package/lib/esm/function/arithmetic/exp.js +1 -1
  718. package/lib/esm/function/arithmetic/expm1.js +1 -1
  719. package/lib/esm/function/arithmetic/fix.js +1 -1
  720. package/lib/esm/function/arithmetic/floor.js +1 -1
  721. package/lib/esm/function/arithmetic/gcd.js +1 -1
  722. package/lib/esm/function/arithmetic/hypot.js +1 -1
  723. package/lib/esm/function/arithmetic/lcm.js +1 -1
  724. package/lib/esm/function/arithmetic/log.js +1 -1
  725. package/lib/esm/function/arithmetic/log10.js +1 -1
  726. package/lib/esm/function/arithmetic/log1p.js +1 -1
  727. package/lib/esm/function/arithmetic/log2.js +1 -1
  728. package/lib/esm/function/arithmetic/mod.js +1 -1
  729. package/lib/esm/function/arithmetic/multiply.js +1 -1
  730. package/lib/esm/function/arithmetic/multiplyScalar.js +1 -1
  731. package/lib/esm/function/arithmetic/norm.js +3 -3
  732. package/lib/esm/function/arithmetic/nthRoot.js +2 -2
  733. package/lib/esm/function/arithmetic/nthRoots.js +1 -1
  734. package/lib/esm/function/arithmetic/pow.js +10 -8
  735. package/lib/esm/function/arithmetic/round.js +6 -6
  736. package/lib/esm/function/arithmetic/sign.js +1 -1
  737. package/lib/esm/function/arithmetic/sqrt.js +1 -1
  738. package/lib/esm/function/arithmetic/square.js +1 -1
  739. package/lib/esm/function/arithmetic/subtract.js +1 -1
  740. package/lib/esm/function/arithmetic/unaryMinus.js +1 -1
  741. package/lib/esm/function/arithmetic/unaryPlus.js +1 -1
  742. package/lib/esm/function/arithmetic/xgcd.js +1 -1
  743. package/lib/esm/function/bitwise/bitAnd.js +1 -1
  744. package/lib/esm/function/bitwise/bitNot.js +1 -1
  745. package/lib/esm/function/bitwise/bitOr.js +1 -1
  746. package/lib/esm/function/bitwise/bitXor.js +1 -1
  747. package/lib/esm/function/bitwise/leftShift.js +1 -1
  748. package/lib/esm/function/bitwise/rightArithShift.js +1 -1
  749. package/lib/esm/function/bitwise/rightLogShift.js +1 -1
  750. package/lib/esm/function/combinatorics/bellNumbers.js +1 -1
  751. package/lib/esm/function/combinatorics/catalan.js +1 -1
  752. package/lib/esm/function/combinatorics/composition.js +1 -1
  753. package/lib/esm/function/combinatorics/stirlingS2.js +1 -1
  754. package/lib/esm/function/complex/arg.js +1 -1
  755. package/lib/esm/function/complex/conj.js +1 -1
  756. package/lib/esm/function/complex/im.js +4 -1
  757. package/lib/esm/function/complex/re.js +4 -1
  758. package/lib/esm/function/geometry/distance.js +1 -1
  759. package/lib/esm/function/geometry/intersect.js +1 -1
  760. package/lib/esm/function/logical/and.js +1 -1
  761. package/lib/esm/function/logical/not.js +1 -1
  762. package/lib/esm/function/logical/or.js +1 -1
  763. package/lib/esm/function/logical/xor.js +1 -1
  764. package/lib/esm/function/matrix/apply.js +1 -1
  765. package/lib/esm/function/matrix/column.js +1 -1
  766. package/lib/esm/function/matrix/concat.js +1 -1
  767. package/lib/esm/function/matrix/count.js +1 -1
  768. package/lib/esm/function/matrix/cross.js +1 -1
  769. package/lib/esm/function/matrix/ctranspose.js +1 -1
  770. package/lib/esm/function/matrix/det.js +1 -1
  771. package/lib/esm/function/matrix/diag.js +1 -1
  772. package/lib/esm/function/matrix/diff.js +1 -1
  773. package/lib/esm/function/matrix/dot.js +1 -1
  774. package/lib/esm/function/matrix/eigs/complexEigs.js +586 -0
  775. package/lib/esm/function/matrix/eigs/realSymetric.js +335 -0
  776. package/lib/esm/function/matrix/eigs.js +187 -335
  777. package/lib/esm/function/matrix/expm.js +1 -1
  778. package/lib/esm/function/matrix/filter.js +1 -1
  779. package/lib/esm/function/matrix/flatten.js +2 -1
  780. package/lib/esm/function/matrix/forEach.js +1 -1
  781. package/lib/esm/function/matrix/getMatrixDataType.js +1 -1
  782. package/lib/esm/function/matrix/identity.js +1 -1
  783. package/lib/esm/function/matrix/inv.js +1 -1
  784. package/lib/esm/function/matrix/kron.js +1 -1
  785. package/lib/esm/function/matrix/map.js +1 -1
  786. package/lib/esm/function/matrix/matrixFromColumns.js +93 -0
  787. package/lib/esm/function/matrix/matrixFromFunction.js +78 -0
  788. package/lib/esm/function/matrix/matrixFromRows.js +83 -0
  789. package/lib/esm/function/matrix/ones.js +1 -1
  790. package/lib/esm/function/matrix/partitionSelect.js +1 -1
  791. package/lib/esm/function/matrix/range.js +1 -1
  792. package/lib/esm/function/matrix/reshape.js +1 -1
  793. package/lib/esm/function/matrix/resize.js +1 -1
  794. package/lib/esm/function/matrix/rotate.js +1 -1
  795. package/lib/esm/function/matrix/rotationMatrix.js +1 -1
  796. package/lib/esm/function/matrix/row.js +1 -1
  797. package/lib/esm/function/matrix/size.js +1 -1
  798. package/lib/esm/function/matrix/sort.js +1 -1
  799. package/lib/esm/function/matrix/sqrtm.js +1 -1
  800. package/lib/esm/function/matrix/squeeze.js +1 -1
  801. package/lib/esm/function/matrix/subset.js +1 -1
  802. package/lib/esm/function/matrix/trace.js +1 -1
  803. package/lib/esm/function/matrix/transpose.js +1 -1
  804. package/lib/esm/function/matrix/zeros.js +1 -1
  805. package/lib/esm/function/probability/combinations.js +1 -1
  806. package/lib/esm/function/probability/combinationsWithRep.js +1 -1
  807. package/lib/esm/function/probability/factorial.js +1 -1
  808. package/lib/esm/function/probability/gamma.js +1 -1
  809. package/lib/esm/function/probability/kldivergence.js +1 -1
  810. package/lib/esm/function/probability/multinomial.js +1 -1
  811. package/lib/esm/function/probability/permutations.js +1 -1
  812. package/lib/esm/function/probability/pickRandom.js +2 -2
  813. package/lib/esm/function/probability/random.js +2 -2
  814. package/lib/esm/function/probability/randomInt.js +1 -1
  815. package/lib/esm/function/relational/compare.js +2 -2
  816. package/lib/esm/function/relational/compareNatural.js +1 -1
  817. package/lib/esm/function/relational/compareText.js +2 -2
  818. package/lib/esm/function/relational/deepEqual.js +1 -1
  819. package/lib/esm/function/relational/equal.js +2 -2
  820. package/lib/esm/function/relational/equalScalar.js +2 -2
  821. package/lib/esm/function/relational/equalText.js +1 -1
  822. package/lib/esm/function/relational/larger.js +2 -2
  823. package/lib/esm/function/relational/largerEq.js +2 -2
  824. package/lib/esm/function/relational/smaller.js +2 -2
  825. package/lib/esm/function/relational/smallerEq.js +2 -2
  826. package/lib/esm/function/relational/unequal.js +2 -2
  827. package/lib/esm/function/set/setCartesian.js +1 -1
  828. package/lib/esm/function/set/setDifference.js +1 -1
  829. package/lib/esm/function/set/setDistinct.js +1 -1
  830. package/lib/esm/function/set/setIntersect.js +1 -1
  831. package/lib/esm/function/set/setIsSubset.js +1 -1
  832. package/lib/esm/function/set/setMultiplicity.js +1 -1
  833. package/lib/esm/function/set/setPowerset.js +1 -1
  834. package/lib/esm/function/set/setSize.js +1 -1
  835. package/lib/esm/function/set/setSymDifference.js +1 -1
  836. package/lib/esm/function/set/setUnion.js +1 -1
  837. package/lib/esm/function/special/erf.js +1 -1
  838. package/lib/esm/function/statistics/mad.js +1 -1
  839. package/lib/esm/function/statistics/max.js +1 -1
  840. package/lib/esm/function/statistics/mean.js +1 -1
  841. package/lib/esm/function/statistics/median.js +1 -1
  842. package/lib/esm/function/statistics/min.js +1 -1
  843. package/lib/esm/function/statistics/mode.js +1 -1
  844. package/lib/esm/function/statistics/prod.js +1 -1
  845. package/lib/esm/function/statistics/quantileSeq.js +1 -1
  846. package/lib/esm/function/statistics/std.js +1 -1
  847. package/lib/esm/function/statistics/sum.js +1 -1
  848. package/lib/esm/function/statistics/variance.js +1 -1
  849. package/lib/esm/function/string/bin.js +1 -1
  850. package/lib/esm/function/string/format.js +1 -1
  851. package/lib/esm/function/string/hex.js +1 -1
  852. package/lib/esm/function/string/oct.js +1 -1
  853. package/lib/esm/function/string/print.js +1 -1
  854. package/lib/esm/function/trigonometry/acos.js +1 -1
  855. package/lib/esm/function/trigonometry/acosh.js +1 -1
  856. package/lib/esm/function/trigonometry/acot.js +1 -1
  857. package/lib/esm/function/trigonometry/acoth.js +1 -1
  858. package/lib/esm/function/trigonometry/acsc.js +1 -1
  859. package/lib/esm/function/trigonometry/acsch.js +1 -1
  860. package/lib/esm/function/trigonometry/asec.js +1 -1
  861. package/lib/esm/function/trigonometry/asech.js +1 -1
  862. package/lib/esm/function/trigonometry/asin.js +1 -1
  863. package/lib/esm/function/trigonometry/asinh.js +1 -1
  864. package/lib/esm/function/trigonometry/atan.js +1 -1
  865. package/lib/esm/function/trigonometry/atan2.js +1 -1
  866. package/lib/esm/function/trigonometry/atanh.js +1 -1
  867. package/lib/esm/function/trigonometry/cos.js +1 -1
  868. package/lib/esm/function/trigonometry/cosh.js +1 -1
  869. package/lib/esm/function/trigonometry/cot.js +1 -1
  870. package/lib/esm/function/trigonometry/coth.js +1 -1
  871. package/lib/esm/function/trigonometry/csc.js +1 -1
  872. package/lib/esm/function/trigonometry/csch.js +1 -1
  873. package/lib/esm/function/trigonometry/sec.js +1 -1
  874. package/lib/esm/function/trigonometry/sech.js +1 -1
  875. package/lib/esm/function/trigonometry/sin.js +1 -1
  876. package/lib/esm/function/trigonometry/sinh.js +1 -1
  877. package/lib/esm/function/trigonometry/tan.js +1 -1
  878. package/lib/esm/function/trigonometry/tanh.js +1 -1
  879. package/lib/esm/function/unit/to.js +1 -1
  880. package/lib/esm/function/utils/clone.js +1 -1
  881. package/lib/esm/function/utils/hasNumericValue.js +1 -1
  882. package/lib/esm/function/utils/isInteger.js +1 -1
  883. package/lib/esm/function/utils/isNaN.js +1 -1
  884. package/lib/esm/function/utils/isNegative.js +1 -1
  885. package/lib/esm/function/utils/isNumeric.js +1 -1
  886. package/lib/esm/function/utils/isPositive.js +1 -1
  887. package/lib/esm/function/utils/isPrime.js +66 -4
  888. package/lib/esm/function/utils/isZero.js +1 -1
  889. package/lib/esm/function/utils/numeric.js +1 -1
  890. package/lib/esm/function/utils/typeOf.js +1 -1
  891. package/lib/esm/json/reviver.js +1 -1
  892. package/lib/esm/type/bignumber/BigNumber.js +1 -1
  893. package/lib/esm/type/bignumber/function/bignumber.js +5 -5
  894. package/lib/esm/type/boolean.js +1 -1
  895. package/lib/esm/type/chain/Chain.js +1 -1
  896. package/lib/esm/type/chain/function/chain.js +1 -1
  897. package/lib/esm/type/complex/function/complex.js +1 -1
  898. package/lib/esm/type/fraction/function/fraction.js +1 -1
  899. package/lib/esm/type/matrix/DenseMatrix.js +75 -1
  900. package/lib/esm/type/matrix/FibonacciHeap.js +1 -1
  901. package/lib/esm/type/matrix/ImmutableDenseMatrix.js +1 -1
  902. package/lib/esm/type/matrix/Matrix.js +10 -0
  903. package/lib/esm/type/matrix/MatrixIndex.js +1 -1
  904. package/lib/esm/type/matrix/Spa.js +1 -1
  905. package/lib/esm/type/matrix/SparseMatrix.js +37 -3
  906. package/lib/esm/type/matrix/function/index.js +1 -1
  907. package/lib/esm/type/matrix/function/matrix.js +3 -2
  908. package/lib/esm/type/matrix/function/sparse.js +1 -1
  909. package/lib/esm/type/matrix/utils/algorithm01.js +1 -1
  910. package/lib/esm/type/matrix/utils/algorithm02.js +1 -1
  911. package/lib/esm/type/matrix/utils/algorithm03.js +1 -1
  912. package/lib/esm/type/matrix/utils/algorithm04.js +1 -1
  913. package/lib/esm/type/matrix/utils/algorithm05.js +1 -1
  914. package/lib/esm/type/matrix/utils/algorithm06.js +1 -1
  915. package/lib/esm/type/matrix/utils/algorithm07.js +1 -1
  916. package/lib/esm/type/matrix/utils/algorithm08.js +1 -1
  917. package/lib/esm/type/matrix/utils/algorithm09.js +1 -1
  918. package/lib/esm/type/matrix/utils/algorithm10.js +1 -1
  919. package/lib/esm/type/matrix/utils/algorithm11.js +1 -1
  920. package/lib/esm/type/matrix/utils/algorithm12.js +1 -1
  921. package/lib/esm/type/matrix/utils/algorithm13.js +1 -1
  922. package/lib/esm/type/matrix/utils/algorithm14.js +1 -1
  923. package/lib/esm/type/number.js +64 -6
  924. package/lib/esm/type/string.js +1 -1
  925. package/lib/esm/type/unit/Unit.js +4 -5
  926. package/lib/esm/type/unit/function/createUnit.js +1 -1
  927. package/lib/esm/type/unit/function/splitUnit.js +1 -1
  928. package/lib/esm/type/unit/function/unit.js +1 -1
  929. package/lib/esm/type/unit/physicalConstants.js +2 -2
  930. package/lib/esm/utils/array.js +1 -1
  931. package/lib/esm/utils/customs.js +10 -0
  932. package/lib/esm/utils/map.js +135 -0
  933. package/lib/esm/utils/scope.js +26 -0
  934. package/lib/esm/utils/snapshot.js +3 -4
  935. package/lib/esm/version.js +1 -1
  936. package/package.json +22 -13
@@ -0,0 +1,501 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [4.5.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.4.0...webpack-cli@4.5.0) (2021-02-02)
7
+
8
+ ### Bug Fixes
9
+
10
+ - avoid deprecation message ([9d6dbda](https://github.com/webpack/webpack-cli/commit/9d6dbda93da167a1aaad03f599105a4fe7849dc3))
11
+ - error message on invalid plugin options ([#2380](https://github.com/webpack/webpack-cli/issues/2380)) ([f9ce1d3](https://github.com/webpack/webpack-cli/commit/f9ce1d30b83bf0e0b4d91498d012c13c208e6e67))
12
+ - improve description for 'configtest' command ([#2379](https://github.com/webpack/webpack-cli/issues/2379)) ([311bae3](https://github.com/webpack/webpack-cli/commit/311bae336d83424c800e553b6ef40242d967685c))
13
+
14
+ ### Features
15
+
16
+ - add the `--node-env` flag ([#2388](https://github.com/webpack/webpack-cli/issues/2388)) ([e5126f1](https://github.com/webpack/webpack-cli/commit/e5126f10b6622437c0541c25be2a610a82c1df04))
17
+ - entries syntax ([#2369](https://github.com/webpack/webpack-cli/issues/2369)) ([6b31614](https://github.com/webpack/webpack-cli/commit/6b3161479578f572f803f579c7e71073eb797184))
18
+ - support ES module configuration format ([#2381](https://github.com/webpack/webpack-cli/issues/2381)) ([aebdbbc](https://github.com/webpack/webpack-cli/commit/aebdbbc1f6e2761e7821cb3660bea686cce7b587))
19
+
20
+ # [4.4.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.3.1...webpack-cli@4.4.0) (2021-01-19)
21
+
22
+ ### Bug Fixes
23
+
24
+ - better description for --no-watch-options-stdin ([#2288](https://github.com/webpack/webpack-cli/issues/2288)) ([4ee8665](https://github.com/webpack/webpack-cli/commit/4ee8665e01e8dce16448e0a4d3dd2293731695ab))
25
+ - double commands output in help ([#2298](https://github.com/webpack/webpack-cli/issues/2298)) ([efe81e9](https://github.com/webpack/webpack-cli/commit/efe81e986a6dca5cc9b72a5c9312dc21409f65b1))
26
+ - pass all `argv` to configurations when `serve` command used ([#2345](https://github.com/webpack/webpack-cli/issues/2345)) ([5070b9b](https://github.com/webpack/webpack-cli/commit/5070b9bcbd5bdac00088d0c21486ad181a4df000))
27
+ - respect `--stats`, `--color` and `--no-color` option for serve c… ([#2312](https://github.com/webpack/webpack-cli/issues/2312)) ([73d3fec](https://github.com/webpack/webpack-cli/commit/73d3feced18b4e3708f958707326a6642a594cf2))
28
+ - show exact package name while prompting for installation ([#2338](https://github.com/webpack/webpack-cli/issues/2338)) ([ffc93e5](https://github.com/webpack/webpack-cli/commit/ffc93e556d784e2d4409cb0d3a92d737850996f4))
29
+ - webpack installation prompt message ([#2316](https://github.com/webpack/webpack-cli/issues/2316)) ([3659c5e](https://github.com/webpack/webpack-cli/commit/3659c5e529fe1319251ef1c713d6cc758f7f5353))
30
+
31
+ ### Features
32
+
33
+ - `configtest` validate default configuration ([#2354](https://github.com/webpack/webpack-cli/issues/2354)) ([487691a](https://github.com/webpack/webpack-cli/commit/487691abc8d817f5b3c1ab87743d7235ff15d956))
34
+ - added `build` command (aliases - 'bundle' and 'b') ([7590f66](https://github.com/webpack/webpack-cli/commit/7590f66663ce701d52d9276c3adf9dbdfd1a0fa4))
35
+ - added the `watch` command ([#2357](https://github.com/webpack/webpack-cli/issues/2357)) ([9693f7d](https://github.com/webpack/webpack-cli/commit/9693f7d9543a8fce610c4ef903ccca0d12d229a1))
36
+ - allow to pass parseOption to CLI class ([#2299](https://github.com/webpack/webpack-cli/issues/2299)) ([2af0801](https://github.com/webpack/webpack-cli/commit/2af08013852a95c6f6462c56a9994a4ee28c6ea1))
37
+ - allow to use `help` command to show option information ([#2353](https://github.com/webpack/webpack-cli/issues/2353)) ([15eb411](https://github.com/webpack/webpack-cli/commit/15eb411237dcdcf0db7a501c103fe53f9b82903f))
38
+ - new `configtest` command ([#2303](https://github.com/webpack/webpack-cli/issues/2303)) ([eb7b189](https://github.com/webpack/webpack-cli/commit/eb7b18937d045261a5b20ca8356e8b4ae4dfcaad))
39
+ - show multiple suggestions on unknown options ([#2349](https://github.com/webpack/webpack-cli/issues/2349)) ([7314d6c](https://github.com/webpack/webpack-cli/commit/7314d6ca927473da2f355a7d356a943471488606))
40
+
41
+ ## [4.3.1](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.3.0...webpack-cli@4.3.1) (2020-12-31)
42
+
43
+ ### Bug Fixes
44
+
45
+ - error message on not installed module loaders for configuration ([#2282](https://github.com/webpack/webpack-cli/issues/2282)) ([29eaa8e](https://github.com/webpack/webpack-cli/commit/29eaa8e843510e020ac4b57a13622df40713fe27))
46
+ - peer dependencies ([#2284](https://github.com/webpack/webpack-cli/issues/2284)) ([083f2a0](https://github.com/webpack/webpack-cli/commit/083f2a069d6dc0a3b9492eb3f205474ba843acfd))
47
+ - provide useful error on unknown command ([d6380bb](https://github.com/webpack/webpack-cli/commit/d6380bb6c6756d2a00ac20f2ffc454481d97e4d3))
48
+ - the `--help` option is working without `webpack-dev-server` ([#2267](https://github.com/webpack/webpack-cli/issues/2267)) ([1dae54d](https://github.com/webpack/webpack-cli/commit/1dae54da94d3220437b9257efe512447023de1d3))
49
+ - the `--progress` option is working with `--json` ([#2276](https://github.com/webpack/webpack-cli/issues/2276)) ([0595603](https://github.com/webpack/webpack-cli/commit/05956030cbb1491a2e9313732470bcd4ebe5a36d))
50
+
51
+ # [4.3.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.2.0...webpack-cli@4.3.0) (2020-12-25)
52
+
53
+ ### Bug Fixes
54
+
55
+ - fix problems with `--mode` and config resolution, there are situations when we resolve an invalid config file, the `--mode` option does not affect on config resolution, if you faced with an error after updating, please use the `--config` option
56
+ - correct usage of cli-flags ([#2205](https://github.com/webpack/webpack-cli/issues/2205)) ([c8fc7d1](https://github.com/webpack/webpack-cli/commit/c8fc7d1f195800c4fbe54ed6533e694f40fa7a1b))
57
+ - defer setting default mode to core ([#2095](https://github.com/webpack/webpack-cli/issues/2095)) ([3eb410e](https://github.com/webpack/webpack-cli/commit/3eb410e5d8f8e2149910b65f4a028c85f8af5d28))
58
+ - respect the `--watch-options-stdin` option ([2d1e001](https://github.com/webpack/webpack-cli/commit/2d1e001e7f4f560c2b36607bd1b29dfe2aa32066))
59
+ - respect `--color`/`--no-color` option ([#2042](https://github.com/webpack/webpack-cli/issues/2042)) ([09bd812](https://github.com/webpack/webpack-cli/commit/09bd8126e95c9675b1f6862451f629cd4c439adb))
60
+ - stringify stats using streaming approach ([#2190](https://github.com/webpack/webpack-cli/issues/2190)) ([9bf4e92](https://github.com/webpack/webpack-cli/commit/9bf4e925757b02f7252073501562c95e762dc59b))
61
+ - use logger for error with proper exit code ([#2076](https://github.com/webpack/webpack-cli/issues/2076)) ([2c9069f](https://github.com/webpack/webpack-cli/commit/2c9069fd1f7c0fb70f019900e4b841c5ea33975e))
62
+ - reduce spammy logs ([#2206](https://github.com/webpack/webpack-cli/issues/2206)) ([9b3cc28](https://github.com/webpack/webpack-cli/commit/9b3cc283d7b74aa3bb26fe36c6110436b016e0d9))
63
+ - respect the `infrastructureLogging.level` option (logger uses `stderr`) ([#2144](https://github.com/webpack/webpack-cli/issues/2144)) ([7daccc7](https://github.com/webpack/webpack-cli/commit/7daccc786a0eb4eeae4c5b3632fc28240a696170))
64
+ - respect all options from command line for the `server` command
65
+ - `help` and `version` output
66
+ - respect `stats` from the config (webpack@4) ([#2098](https://github.com/webpack/webpack-cli/issues/2098)) ([2d6e5c6](https://github.com/webpack/webpack-cli/commit/2d6e5c6f4ed967368a81742bf347e39f24ee16c8))
67
+ - fixed colors work with multi compiler mode (webpack@4)
68
+
69
+ ### Features
70
+
71
+ - add `bundle` command (alias for `webpack [options]`)
72
+ - add `pnpm` support for package installation ([#2040](https://github.com/webpack/webpack-cli/issues/2040)) ([46cba36](https://github.com/webpack/webpack-cli/commit/46cba367f06a6354fe98fcb15e7771e819feeac0))
73
+
74
+ # [4.2.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.1.0...webpack-cli@4.2.0) (2020-11-04)
75
+
76
+ ### Bug Fixes
77
+
78
+ - --config-name behaviour for fuctional configs ([#2006](https://github.com/webpack/webpack-cli/issues/2006)) ([29ecf8d](https://github.com/webpack/webpack-cli/commit/29ecf8dbcd1c5c7d75fc7fb1634107697832d952))
79
+ - assign cache value for default configs ([#2013](https://github.com/webpack/webpack-cli/issues/2013)) ([d2e3c74](https://github.com/webpack/webpack-cli/commit/d2e3c74d32b0141c694259cf4f31e6c48b0f681d))
80
+ - callback deprecation ([#1977](https://github.com/webpack/webpack-cli/issues/1977)) ([2cb0c0e](https://github.com/webpack/webpack-cli/commit/2cb0c0e383670949ce31231edbfda514f47c3dfc))
81
+ - handle core flags for webpack 4 ([#2023](https://github.com/webpack/webpack-cli/issues/2023)) ([ea66a7e](https://github.com/webpack/webpack-cli/commit/ea66a7e3ec6eabcc439b96acb21e2a25be2e35e5))
82
+ - help and version functionality ([#1972](https://github.com/webpack/webpack-cli/issues/1972)) ([e8010b3](https://github.com/webpack/webpack-cli/commit/e8010b3aac695971e542ad4d3584ce534da39b8f))
83
+
84
+ ### Features
85
+
86
+ - export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))
87
+ - progress supports string argument ([#2000](https://github.com/webpack/webpack-cli/issues/2000)) ([f13346e](https://github.com/webpack/webpack-cli/commit/f13346e6acb46e982a5d20fa1d2ae56fc52523dc))
88
+ - suggest the closest match based on the Levenshtein distance algorithm ([#2010](https://github.com/webpack/webpack-cli/issues/2010)) ([491a582](https://github.com/webpack/webpack-cli/commit/491a582620b64ed4acbccd04f687adc28a5e4cff))
89
+
90
+ # [4.1.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0...webpack-cli@4.1.0) (2020-10-19)
91
+
92
+ ### Bug Fixes
93
+
94
+ - avoid unnecessary stringify ([#1920](https://github.com/webpack/webpack-cli/issues/1920)) ([5ef1e7b](https://github.com/webpack/webpack-cli/commit/5ef1e7b074390406b76cb3e25dd90f045e1bd8a2))
95
+ - colored output ([#1944](https://github.com/webpack/webpack-cli/issues/1944)) ([2bbbb14](https://github.com/webpack/webpack-cli/commit/2bbbb14ca9a404f2205c0f5a5515e73832ee6173))
96
+ - move init command to separate package ([#1950](https://github.com/webpack/webpack-cli/issues/1950)) ([92ad475](https://github.com/webpack/webpack-cli/commit/92ad475d4b9606b5db7c31dd3666658301c95597))
97
+ - output stacktrace on errors ([#1949](https://github.com/webpack/webpack-cli/issues/1949)) ([9ba9d6f](https://github.com/webpack/webpack-cli/commit/9ba9d6f460fb25fb79d52f4360239b8c4b471451))
98
+ - run CLI after webpack installation ([#1951](https://github.com/webpack/webpack-cli/issues/1951)) ([564279e](https://github.com/webpack/webpack-cli/commit/564279e5b634a399647bcdb21449e5e6a7f0637e))
99
+ - support any config name ([#1926](https://github.com/webpack/webpack-cli/issues/1926)) ([6f95b26](https://github.com/webpack/webpack-cli/commit/6f95b267bf6a3a3e71360f4de176a4ebbec3afa1))
100
+ - support array of functions and promises ([#1946](https://github.com/webpack/webpack-cli/issues/1946)) ([2ace39b](https://github.com/webpack/webpack-cli/commit/2ace39b06117f558c0d8528cea9248253cbdf593))
101
+ - watch mode and options ([#1931](https://github.com/webpack/webpack-cli/issues/1931)) ([258219a](https://github.com/webpack/webpack-cli/commit/258219a3bb606b228636e6373a3d20413c1f660e))
102
+
103
+ ### Features
104
+
105
+ - allow passing strings in env flag ([#1939](https://github.com/webpack/webpack-cli/issues/1939)) ([cc081a2](https://github.com/webpack/webpack-cli/commit/cc081a256181e34137a89d2e9d37b04280b3f180))
106
+
107
+ # [4.0.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-rc.1...webpack-cli@4.0.0) (2020-10-10)
108
+
109
+ ### Bug Fixes
110
+
111
+ - add compilation lifecycle in watch instance ([#1903](https://github.com/webpack/webpack-cli/issues/1903)) ([02b6d21](https://github.com/webpack/webpack-cli/commit/02b6d21eaa20166a7ed37816de716b8fc22b756a))
112
+ - cleanup `package-utils` package ([#1822](https://github.com/webpack/webpack-cli/issues/1822)) ([fd5b92b](https://github.com/webpack/webpack-cli/commit/fd5b92b3cd40361daec5bf4486e455a41f4c9738))
113
+ - cli-executer supplies args further up ([#1904](https://github.com/webpack/webpack-cli/issues/1904)) ([097564a](https://github.com/webpack/webpack-cli/commit/097564a851b36b63e0a6bf88144997ef65aa057a))
114
+ - exit code for validation errors ([59f6303](https://github.com/webpack/webpack-cli/commit/59f63037fcbdbb8934b578b9adf5725bc4ae1235))
115
+ - exit process in case of schema errors ([71e89b4](https://github.com/webpack/webpack-cli/commit/71e89b4092d953ea587cc4f606451ab78cbcdb93))
116
+
117
+ ### Features
118
+
119
+ - assign config paths in build dependencies in cache config ([#1900](https://github.com/webpack/webpack-cli/issues/1900)) ([7e90f11](https://github.com/webpack/webpack-cli/commit/7e90f110b119f36ef9def4f66cf4e17ccf1438cd))
120
+
121
+ # [4.0.0-rc.1](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-beta.8...webpack-cli@4.0.0-rc.1) (2020-10-06)
122
+
123
+ ### Bug Fixes
124
+
125
+ - cache issue ([#1862](https://github.com/webpack/webpack-cli/issues/1862)) ([305c188](https://github.com/webpack/webpack-cli/commit/305c18816ca6c4275c2755ae6b48d90a8cc85bd1))
126
+ - check webpack installation before running cli ([#1827](https://github.com/webpack/webpack-cli/issues/1827)) ([be509fa](https://github.com/webpack/webpack-cli/commit/be509fac9a03e202e062229484bb10af7876968f))
127
+ - defer setting default entry to core ([#1856](https://github.com/webpack/webpack-cli/issues/1856)) ([5da1f81](https://github.com/webpack/webpack-cli/commit/5da1f81ed101b024249c5cd4e043ec1397338782))
128
+ - log error if --config-name is used without multiple configs ([#1874](https://github.com/webpack/webpack-cli/issues/1874)) ([f653409](https://github.com/webpack/webpack-cli/commit/f653409e3468849970dab354f84c5213da01122d))
129
+ - mode behaviour ([#1824](https://github.com/webpack/webpack-cli/issues/1824)) ([9e9c70b](https://github.com/webpack/webpack-cli/commit/9e9c70bc1f30d90cebd91341e865abb46f9c269e))
130
+ - only set output path on passing flag ([#1855](https://github.com/webpack/webpack-cli/issues/1855)) ([2f36b9d](https://github.com/webpack/webpack-cli/commit/2f36b9d858faedaf3a6adca10a529d9837c0dd24))
131
+ - show warning if bail and watch are used together ([#1804](https://github.com/webpack/webpack-cli/issues/1804)) ([6140b24](https://github.com/webpack/webpack-cli/commit/6140b24d08990aa807070f105d46a92e18855c9e))
132
+ - warning should not result in non-zero exit code ([#1872](https://github.com/webpack/webpack-cli/issues/1872)) ([ae9539d](https://github.com/webpack/webpack-cli/commit/ae9539d20eab2172118f61f7a9ba7e26541e16a2))
133
+
134
+ ### Features
135
+
136
+ - add --analyze flag ([#1853](https://github.com/webpack/webpack-cli/issues/1853)) ([e6d210a](https://github.com/webpack/webpack-cli/commit/e6d210a66b899023b1f39bb33cce7a9b83a5b803))
137
+ - allow users to store stats as json to a file ([#1835](https://github.com/webpack/webpack-cli/issues/1835)) ([3907517](https://github.com/webpack/webpack-cli/commit/3907517b6afff46ddab51e32ada0357fc9763117))
138
+
139
+ # 4.0.0-beta.9 (2020-09-19)
140
+
141
+ ### Bug Fixes
142
+
143
+ - **serve:** merge CLI and devServer options correctly ([#1649](https://github.com/webpack/webpack-cli/issues/1649)) ([2cdf5ce](https://github.com/webpack/webpack-cli/commit/2cdf5ce159f63ac65b33f4aca4c82fa1e959fef5))
144
+ - **utils:** respect package-lock.json ([#1375](https://github.com/webpack/webpack-cli/issues/1375)) ([ce8ec5a](https://github.com/webpack/webpack-cli/commit/ce8ec5a9f56ab5c1ce30742dced56dcbea237600))
145
+ - **webpack-cli:** add configuration for mode option none ([#1303](https://github.com/webpack/webpack-cli/issues/1303)) ([a6930ac](https://github.com/webpack/webpack-cli/commit/a6930ac7aeea39d4b23480b1dfc05baff7b73460))
146
+ - **webpack-cli:** add value none in mode usage ([#1411](https://github.com/webpack/webpack-cli/issues/1411)) ([66ac5b2](https://github.com/webpack/webpack-cli/commit/66ac5b239cfad99b84754c512e5982dc0902e9dd))
147
+ - **webpack-cli:** correct cli-flags usage ([#1441](https://github.com/webpack/webpack-cli/issues/1441)) ([fb3660d](https://github.com/webpack/webpack-cli/commit/fb3660dd5cab8c596607110de14cacd98f255e34))
148
+ - **webpack-cli:** handle promise rejection with package installation ([#1284](https://github.com/webpack/webpack-cli/issues/1284)) ([eb1112e](https://github.com/webpack/webpack-cli/commit/eb1112edf05b0a1bc83dced0e83987e4f459174c))
149
+ - **webpack-cli:** prefer import local ([#1345](https://github.com/webpack/webpack-cli/issues/1345)) ([1af3bef](https://github.com/webpack/webpack-cli/commit/1af3befa6e680d8ee8e58dff8162ebb343755997))
150
+ - **webpack-cli:** prefetch flag implementation ([#1583](https://github.com/webpack/webpack-cli/issues/1583)) ([d5d7682](https://github.com/webpack/webpack-cli/commit/d5d76828e29acf209ae665a91c61d849fd616d9e))
151
+ - **webpack-cli:** remove invalid stats warning with json flag ([#1587](https://github.com/webpack/webpack-cli/issues/1587)) ([1fe4674](https://github.com/webpack/webpack-cli/commit/1fe4674b7bcca06fed9c55b34c9ee141703567f6))
152
+ - 🐛 do not apply own defaults while setting mode ([#1565](https://github.com/webpack/webpack-cli/issues/1565)) ([4ca25bc](https://github.com/webpack/webpack-cli/commit/4ca25bc01d8ea51fdcb5aea15fd13aefd6a1aa71))
153
+ - allow unknown files to use default require as fallback ([#1747](https://github.com/webpack/webpack-cli/issues/1747)) ([b071623](https://github.com/webpack/webpack-cli/commit/b071623ae67a9f9528b02e07376044d851ad378a))
154
+ - **webpack-cli:** verbose flag functionality ([#1549](https://github.com/webpack/webpack-cli/issues/1549)) ([e15d9cd](https://github.com/webpack/webpack-cli/commit/e15d9cdc42627b87c9e666509f008826e0032358))
155
+ - ci for webpack@beta.30 ([#1801](https://github.com/webpack/webpack-cli/issues/1801)) ([cb38d63](https://github.com/webpack/webpack-cli/commit/cb38d6311f59679a0680344e0eecf39803ebc5a1))
156
+ - compatibility with webpack@next ([#1779](https://github.com/webpack/webpack-cli/issues/1779)) ([fc8c18d](https://github.com/webpack/webpack-cli/commit/fc8c18dcdae28b4d5b0b65d02b0a2b916b40bae4))
157
+ - consistent webpack plugin name ([#1480](https://github.com/webpack/webpack-cli/issues/1480)) ([145c552](https://github.com/webpack/webpack-cli/commit/145c552d1ace3303607fe4d204106fe9437e24a0))
158
+ - json flag, enable tests ([#1460](https://github.com/webpack/webpack-cli/issues/1460)) ([d268e13](https://github.com/webpack/webpack-cli/commit/d268e13aeca3321be6dfad29612645fde954a5db))
159
+ - prevent info from running unnecessarily ([#1650](https://github.com/webpack/webpack-cli/issues/1650)) ([ddee5ad](https://github.com/webpack/webpack-cli/commit/ddee5ad01eee0a261881348e4de013cfa5942e55))
160
+ - promise support in config ([#1666](https://github.com/webpack/webpack-cli/issues/1666)) ([7489e63](https://github.com/webpack/webpack-cli/commit/7489e639d13e8b89690a50595eb48214e9cdb1d9))
161
+ - rename sourcemap flag to devtool ([#1723](https://github.com/webpack/webpack-cli/issues/1723)) ([8623343](https://github.com/webpack/webpack-cli/commit/8623343c4a375be35860735c507e44548295d4e5))
162
+ - set mode=production by default ([#1688](https://github.com/webpack/webpack-cli/issues/1688)) ([8360df7](https://github.com/webpack/webpack-cli/commit/8360df76474bf7923ae201b895e0ae98266d6893))
163
+ - show version information for plugin and loader ([#1661](https://github.com/webpack/webpack-cli/issues/1661)) ([1ad71e4](https://github.com/webpack/webpack-cli/commit/1ad71e4aa838e4b4655e12bddca64e1c0ef2044e))
164
+ - **webpack-cli:** to void defaultEntry override the webpack config entry ([#1289](https://github.com/webpack/webpack-cli/issues/1289)) ([99ff047](https://github.com/webpack/webpack-cli/commit/99ff04779cad1a90d8ac47345db5f8540c6ddc23)), closes [#1288](https://github.com/webpack/webpack-cli/issues/1288) [#1288](https://github.com/webpack/webpack-cli/issues/1288) [#1288](https://github.com/webpack/webpack-cli/issues/1288)
165
+ - supply argv to config with functions ([#1721](https://github.com/webpack/webpack-cli/issues/1721)) ([2f05940](https://github.com/webpack/webpack-cli/commit/2f0594084a2d676dfe0675e54e967099c201f30c))
166
+ - throw err when supplied config is absent ([#1760](https://github.com/webpack/webpack-cli/issues/1760)) ([86dfe51](https://github.com/webpack/webpack-cli/commit/86dfe514a5b5de38f631a02e5211d10f32c536b9))
167
+ - throw error for invalid args ([#1462](https://github.com/webpack/webpack-cli/issues/1462)) ([25b3e04](https://github.com/webpack/webpack-cli/commit/25b3e04637db64b7f584e9badf9f8e59de978b7f))
168
+ - typo in Compiler.js ([#1580](https://github.com/webpack/webpack-cli/issues/1580)) ([e1ccad4](https://github.com/webpack/webpack-cli/commit/e1ccad453cefb9e6a115bb87ae472843e14fb8aa))
169
+ - use appropriate exit codes ([#1755](https://github.com/webpack/webpack-cli/issues/1755)) ([83f73b0](https://github.com/webpack/webpack-cli/commit/83f73b056e224301b871bee5e9b7254e64e84e95))
170
+ - use compiler.apply for Progress Plugin ([#1772](https://github.com/webpack/webpack-cli/issues/1772)) ([e8f2f20](https://github.com/webpack/webpack-cli/commit/e8f2f207159ad74cfa0f3a4bc9f97bf12a9b9836))
171
+ - use fileTypes from interpret ([#1690](https://github.com/webpack/webpack-cli/issues/1690)) ([d8f028e](https://github.com/webpack/webpack-cli/commit/d8f028edc98f28c354bfd48f7069bb52244d35da))
172
+ - warn about merge config resolution cases ([#1674](https://github.com/webpack/webpack-cli/issues/1674)) ([bb5c7b0](https://github.com/webpack/webpack-cli/commit/bb5c7b0ed4005d523572e69c6bc924fdb5cf7306))
173
+
174
+ ### Code Refactoring
175
+
176
+ - remove plugin flag ([#1571](https://github.com/webpack/webpack-cli/issues/1571)) ([e4a6b7b](https://github.com/webpack/webpack-cli/commit/e4a6b7bf94776832afb948389b4ec7bf63f9911d))
177
+ - 💡 remove defaults flag ([#1543](https://github.com/webpack/webpack-cli/issues/1543)) ([a905590](https://github.com/webpack/webpack-cli/commit/a9055902ea27c3b3ea66c334e6a8aa2f1848b6be))
178
+
179
+ ### Features
180
+
181
+ - **webpack-cli:** --version for external packages ([#1421](https://github.com/webpack/webpack-cli/issues/1421)) ([756a8ff](https://github.com/webpack/webpack-cli/commit/756a8ff9640f3d65b49c14fe782dac9f2936d7d5))
182
+ - **webpack-cli:** add --no-hot flag ([#1591](https://github.com/webpack/webpack-cli/issues/1591)) ([31fcaf3](https://github.com/webpack/webpack-cli/commit/31fcaf3ed64794a449a23588a37440d32d7e6baa))
183
+ - **webpack-cli:** add --no-stats flag ([#1654](https://github.com/webpack/webpack-cli/issues/1654)) ([597eff7](https://github.com/webpack/webpack-cli/commit/597eff731830f62adce82661612e5fdcdad7b4cd))
184
+ - **webpack-cli:** add alias for version ([#1405](https://github.com/webpack/webpack-cli/issues/1405)) ([6b9461e](https://github.com/webpack/webpack-cli/commit/6b9461ecf6148933ec643ae9b8315fd2b2b0dccb))
185
+ - **webpack-cli:** add mode argument validation ([#1290](https://github.com/webpack/webpack-cli/issues/1290)) ([e273303](https://github.com/webpack/webpack-cli/commit/e2733038b11715c5f93399a3d3d72b6755781d26))
186
+ - allow multiple types for --stats ([ca2d593](https://github.com/webpack/webpack-cli/commit/ca2d593badfb8b5884d42d2e36a7ba6fa5a540df))
187
+ - **webpack-cli:** add no-mode flag ([#1276](https://github.com/webpack/webpack-cli/issues/1276)) ([a069d73](https://github.com/webpack/webpack-cli/commit/a069d73fe420151f97a39cc50bc3865b981595e1))
188
+ - 🎸 add support for env flag ([#1598](https://github.com/webpack/webpack-cli/issues/1598)) ([7249153](https://github.com/webpack/webpack-cli/commit/72491539bb06986d28bd55a1b112760435cade9d))
189
+ - add --config-name flag ([#1753](https://github.com/webpack/webpack-cli/issues/1753)) ([d3ed19a](https://github.com/webpack/webpack-cli/commit/d3ed19a96811b98caa0ea0de0f8d7e76fe06879d))
190
+ - add aliases to all available commands ([#1644](https://github.com/webpack/webpack-cli/issues/1644)) ([9352027](https://github.com/webpack/webpack-cli/commit/93520270f4bfdbf1b70ed3f02e8fe34fae51e246))
191
+ - add init to webpack-cli ([#1609](https://github.com/webpack/webpack-cli/issues/1609)) ([5f4f3ea](https://github.com/webpack/webpack-cli/commit/5f4f3ea44a8e71ffb964a31948264623a6a75e2b))
192
+ - add name flag ([#1757](https://github.com/webpack/webpack-cli/issues/1757)) ([ad0779f](https://github.com/webpack/webpack-cli/commit/ad0779fc53776cbd9048d033d54b7a8e9de43e8a))
193
+ - add stats detailed option ([#1359](https://github.com/webpack/webpack-cli/issues/1359)) ([3e649e9](https://github.com/webpack/webpack-cli/commit/3e649e9796fd6756aed1b30aae9be63518db4dc5))
194
+ - **webpack-cli:** allow multiple entry files ([#1619](https://github.com/webpack/webpack-cli/issues/1619)) ([ac2e52c](https://github.com/webpack/webpack-cli/commit/ac2e52c2ef8aa74aa795476be94ce7c968b8d1c5))
195
+ - add support for .cjs config ([#1727](https://github.com/webpack/webpack-cli/issues/1727)) ([55ab016](https://github.com/webpack/webpack-cli/commit/55ab016c0a8ff1be1ccf8d36673e4391918647ba))
196
+ - add support for merging multiple configurations ([#1768](https://github.com/webpack/webpack-cli/issues/1768)) ([b1e7024](https://github.com/webpack/webpack-cli/commit/b1e70244a625098633d09b04d7f772cfe18272ec))
197
+ - add support for none config in dotfolder ([#1637](https://github.com/webpack/webpack-cli/issues/1637)) ([28526a6](https://github.com/webpack/webpack-cli/commit/28526a6b9a45e9b577a243782f14ef5a279739aa))
198
+ - add support to spawn multiple compilers with different configs ([#1765](https://github.com/webpack/webpack-cli/issues/1765)) ([c63ab29](https://github.com/webpack/webpack-cli/commit/c63ab29e896c0d0fa3df0d26215172651e7edee8))
199
+ - allow multiple targets ([#1799](https://github.com/webpack/webpack-cli/issues/1799)) ([1724ddb](https://github.com/webpack/webpack-cli/commit/1724ddb9067d5c5ba2654d4e5473ee9de5610825))
200
+ - allow only specified negated flags ([#1613](https://github.com/webpack/webpack-cli/issues/1613)) ([885e0a2](https://github.com/webpack/webpack-cli/commit/885e0a222fca9622908c9314fd802c771b9f2b91))
201
+ - allow using cjs as default config ([#1775](https://github.com/webpack/webpack-cli/issues/1775)) ([aaaa07b](https://github.com/webpack/webpack-cli/commit/aaaa07bd510cdd3d0b30cb69eb622d8798bd15eb))
202
+ - parse Number flags ([#1652](https://github.com/webpack/webpack-cli/issues/1652)) ([b319c3a](https://github.com/webpack/webpack-cli/commit/b319c3ac209582546f30a248a94c10eede6da50e))
203
+ - **webpack-cli:** allow negative property for cli-flags ([#1668](https://github.com/webpack/webpack-cli/issues/1668)) ([e7b46c2](https://github.com/webpack/webpack-cli/commit/e7b46c24514d77fcdd67067cded3154aaa98e48a))
204
+ - **webpack-cli:** import flags from webpack core ([#1630](https://github.com/webpack/webpack-cli/issues/1630)) ([f478cc9](https://github.com/webpack/webpack-cli/commit/f478cc9810a17e828d96a5c9439992ecac86fc26))
205
+ - **webpack-cli:** webpack stats ([#1299](https://github.com/webpack/webpack-cli/issues/1299)) ([0cbb270](https://github.com/webpack/webpack-cli/commit/0cbb2702a1e581150bb8e38dc9f361331179c406))
206
+ - serve integration ([#1712](https://github.com/webpack/webpack-cli/issues/1712)) ([d3e2936](https://github.com/webpack/webpack-cli/commit/d3e29368c40ee47e4f7a07c41281714645e20ea7))
207
+ - show up cli flag aliases with webpack help <arg> ([#1647](https://github.com/webpack/webpack-cli/issues/1647)) ([d087c61](https://github.com/webpack/webpack-cli/commit/d087c61a8a64359a8f520b4c3916948cb846a55c))
208
+ - support command aliases with webpack-cli version ([#1664](https://github.com/webpack/webpack-cli/issues/1664)) ([a637801](https://github.com/webpack/webpack-cli/commit/a6378015ef1c51a7eb3eb85858f8109dd8c2a50a))
209
+ - support multiple env params ([#1715](https://github.com/webpack/webpack-cli/issues/1715)) ([d315443](https://github.com/webpack/webpack-cli/commit/d3154431e559f736d8beaf6ca98b12a59b80e9bd))
210
+ - validate user input ([#1610](https://github.com/webpack/webpack-cli/issues/1610)) ([3842a49](https://github.com/webpack/webpack-cli/commit/3842a49a64b65865720e75f8967daf56528abc8d))
211
+
212
+ ### Performance Improvements
213
+
214
+ - do not spawn new process for running webpack ([#1741](https://github.com/webpack/webpack-cli/issues/1741)) ([e06392a](https://github.com/webpack/webpack-cli/commit/e06392ae531d111dab9603c785001338740f42ab))
215
+
216
+ ### BREAKING CHANGES
217
+
218
+ - 🧨 removed --plugin without any replacement
219
+
220
+ Co-authored-by: Anshuman Verma <anshu.av97@gmail.com>
221
+
222
+ - the `defaults` options was removed without replacement
223
+
224
+ # [4.0.0-beta.8](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-beta.7...webpack-cli@4.0.0-beta.8) (2020-03-02)
225
+
226
+ **Note:** Version bump only for package webpack-cli
227
+
228
+ # [4.0.0-beta.7](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-beta.6...webpack-cli@4.0.0-beta.7) (2020-02-29)
229
+
230
+ ### Bug Fixes
231
+
232
+ - **webpack-cli:** fixed support for SCSS entry points ([#1271](https://github.com/webpack/webpack-cli/issues/1271)) ([321bbe5](https://github.com/webpack/webpack-cli/commit/321bbe5d5da9b3c7781ce751133432952998aaa5))
233
+ - **webpack-cli:** handle promise rejection happening with cli-executor ([#1269](https://github.com/webpack/webpack-cli/issues/1269)) ([afe97f6](https://github.com/webpack/webpack-cli/commit/afe97f69eac2540db94897c39c5bb467cf137e3c))
234
+
235
+ ### Features
236
+
237
+ - **webpack-cli:** create a cli executer ([#1255](https://github.com/webpack/webpack-cli/issues/1255)) ([c74574b](https://github.com/webpack/webpack-cli/commit/c74574b8015362def7463c3de9adff0e839735a3))
238
+
239
+ # [4.0.0-beta.6](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-beta.5...webpack-cli@4.0.0-beta.6) (2020-02-23)
240
+
241
+ **Note:** Version bump only for package webpack-cli
242
+
243
+ # [4.0.0-beta.5](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0-beta.4...webpack-cli@4.0.0-beta.5) (2020-02-23)
244
+
245
+ **Note:** Version bump only for package webpack-cli
246
+
247
+ # 4.0.0-beta.4 (2020-02-23)
248
+
249
+ ### Features
250
+
251
+ - **webpack-cli:** add progress bar for progress flag ([#1238](https://github.com/webpack/webpack-cli/issues/1238)) ([06129a1](https://github.com/webpack/webpack-cli/commit/06129a19a39495f54cbf1b123d24f1216b4cc0d9))
252
+ - **webpack-cli:** added mode argument ([#1253](https://github.com/webpack/webpack-cli/issues/1253)) ([7a5b33d](https://github.com/webpack/webpack-cli/commit/7a5b33dcd5aa5a8ea37062ae93d1fc38cdb5464c))
253
+
254
+ ## [4.0.0-beta.2](https://github.com/webpack/webpack-cli/compare/v3.3.5...v4.0.0-beta.2) (2020-02-11)
255
+
256
+ ### Features
257
+
258
+ - 0cjs for array configs ([e233ed6](https://github.com/webpack/webpack-cli/commit/e233ed6661ea6453d7e6b005b73c6ecd05c871ac))
259
+ - **chore:** refactor code to eliminate redundancy ([12cf389](https://github.com/webpack/webpack-cli/commit/12cf389f4550298c4646d99c9ac431658bb8ba8e))
260
+ - **cli:** add helper to check if arg is the command name or alias ([28d303b](https://github.com/webpack/webpack-cli/commit/28d303bced6810a18a4f7bc6d8a0dba487f79433))
261
+ - remove unneeded color ([b4cd29f](https://github.com/webpack/webpack-cli/commit/b4cd29fbad26e291687e90d10b3087331193b9f4))
262
+ - **cli:** adds standard output flag ([#1206](https://github.com/webpack/webpack-cli/issues/1206)) ([b05e5eb](https://github.com/webpack/webpack-cli/commit/b05e5ebf918576ddd5a304dc86be0aed02352bfa))
263
+ - add codeowners file ([1070038](https://github.com/webpack/webpack-cli/commit/10700386046bb1be908dfc48384d77aad44bf93f))
264
+ - add mjs support ([5f38764](https://github.com/webpack/webpack-cli/commit/5f387641839419d3f536bb99ad6741f701b953de))
265
+ - add-badge ([751ae5a](https://github.com/webpack/webpack-cli/commit/751ae5a4d3fb4895ffb8d28ef61b99c8454a438c))
266
+ - always spawn a process for cli ([#1198](https://github.com/webpack/webpack-cli/issues/1198)) ([06171b3](https://github.com/webpack/webpack-cli/commit/06171b3c7c030985d4c6cf32e7512cb3795f73ba))
267
+ - better defaults, cleanup ([1a467b6](https://github.com/webpack/webpack-cli/commit/1a467b67d937ac564a7f32f324107e1e1cdfd812))
268
+ - create commands.js ([2c0c221](https://github.com/webpack/webpack-cli/commit/2c0c221e5f8774efa98cffb279abff164fe4898a))
269
+ - drop extraneous block ([fa3aa2b](https://github.com/webpack/webpack-cli/commit/fa3aa2b86a2d938477b1b66b95614cd54cc95c9b))
270
+ - env based config defaults ([be28c78](https://github.com/webpack/webpack-cli/commit/be28c782fb0b8f357acc6e41264d0d04c8b4236d))
271
+ - help for commands ([0feefb3](https://github.com/webpack/webpack-cli/commit/0feefb3a77fd9452ee747e6f6fcc2d6405619f67))
272
+ - help for core flags ([#1141](https://github.com/webpack/webpack-cli/issues/1141)) ([8f92cb9](https://github.com/webpack/webpack-cli/commit/8f92cb97f5877893c4f962855801e808bfe4f17b)), closes [#1168](https://github.com/webpack/webpack-cli/issues/1168)
273
+ - merge ouputCommand into outputHelp ([5ab0024](https://github.com/webpack/webpack-cli/commit/5ab0024a8397bc681524727cbc2edc6bd59d33f2))
274
+ - minor tweak ([7c273dc](https://github.com/webpack/webpack-cli/commit/7c273dc3ad786ba4b806ab55ddabc6be19f253dd))
275
+ - refactor ([0505d05](https://github.com/webpack/webpack-cli/commit/0505d052ec41942efcf0b5f42f4ceed5cd9449d8))
276
+ - refactor ([002a785](https://github.com/webpack/webpack-cli/commit/002a78576ee7f209042e7a49afbb76795e609422))
277
+ - refactor ([ad7fe98](https://github.com/webpack/webpack-cli/commit/ad7fe986b9e556d2e52a025b77755cd860a0992c))
278
+ - refactor ([cb8968d](https://github.com/webpack/webpack-cli/commit/cb8968d8a0f0d154aa50b9108be42910f3b73ea7))
279
+ - refactor ([16c368f](https://github.com/webpack/webpack-cli/commit/16c368f9a88198ff497afee4598553cb1f800d23))
280
+ - refactor ([07a2961](https://github.com/webpack/webpack-cli/commit/07a2961c1b0eedb80f49535ab52030d619761a1c))
281
+ - refactor ([c991733](https://github.com/webpack/webpack-cli/commit/c991733dba068d1c397d09ab3dcc99e9bf21de74))
282
+ - refactor ([4858fde](https://github.com/webpack/webpack-cli/commit/4858fdef6c42220b518e6fd412a34c03c8ccacbf))
283
+ - refactor ([2b1ea4c](https://github.com/webpack/webpack-cli/commit/2b1ea4c3ba85d6c43d628b4141b51fd2b70d9ce1))
284
+ - refactor ([dee2884](https://github.com/webpack/webpack-cli/commit/dee288441c7de4c117addc53876e8864e2c4a14f))
285
+ - refactor group-helper ([807bcb4](https://github.com/webpack/webpack-cli/commit/807bcb426b2fb2fbb781cae871cd0a0f234c5a55))
286
+ - refactor groups-config ([4bf86bc](https://github.com/webpack/webpack-cli/commit/4bf86bc196b3ee6334ccc3f32fdeedf5857b9491))
287
+ - refactor groups-config ([00acc50](https://github.com/webpack/webpack-cli/commit/00acc50514b1782dc3c91a62d7214b2b6e9c022f))
288
+ - refactor logic ([3efe4bb](https://github.com/webpack/webpack-cli/commit/3efe4bbb52c5db6876c33b2f68d04d5e09052ee4))
289
+ - refactor test-utils ([d4873ad](https://github.com/webpack/webpack-cli/commit/d4873ad149bb4c90ba2077db7c1311d1f9c7931b))
290
+ - Support `export default` from configuration files. ([0f23d03](https://github.com/webpack/webpack-cli/commit/0f23d03e6832a8571ed65044a50271f5fe253671))
291
+ - support array-configs ([fa9d5c2](https://github.com/webpack/webpack-cli/commit/fa9d5c22b41458a71b91e73bfe48924a61ba6e3e))
292
+ - support array-configs ([76ced4a](https://github.com/webpack/webpack-cli/commit/76ced4ab3324745a09237957e21e278cbdc7f0dc))
293
+ - support negated flags ([239a67e](https://github.com/webpack/webpack-cli/commit/239a67ea4fa32b3da180f374732d4c4a761dc4ac))
294
+ - **interpret:** use interpret ([31c856f](https://github.com/webpack/webpack-cli/commit/31c856f1c9db7a186a4ae32fa1f70396999b41cd))
295
+ - tweak ([79021e3](https://github.com/webpack/webpack-cli/commit/79021e347d616df277484d79927085a0e08fc9a4))
296
+ - update notify period ([0d83e49](https://github.com/webpack/webpack-cli/commit/0d83e493def6d5515b3f3537e73cbacd4c4a4516))
297
+ - **init:** add as req dep ([fec5b25](https://github.com/webpack/webpack-cli/commit/fec5b25453d8035712e1ec2c81a8f10bc27e76be))
298
+ - update outputCommand ([4f19ad4](https://github.com/webpack/webpack-cli/commit/4f19ad4fbf3d12cd46f6dd7faaea1d6db02ec197))
299
+ - **cli:** make serve use webpack cli compiler ([ab862d2](https://github.com/webpack/webpack-cli/commit/ab862d2ab72be3e0c73d1a35e31c81cde3d3e006))
300
+ - **defaults:** set entry obj defaults and add default flag ([4608167](https://github.com/webpack/webpack-cli/commit/4608167fd5ff7a9b201843bd050294da9eccfbdf))
301
+ - **init:** write file correct, better defaults and write babelrc file ([3814d44](https://github.com/webpack/webpack-cli/commit/3814d44d97d519f0b0eae2cc5e400b1899848e37))
302
+ - **serve:** add all flags, improve args parsing ([46ca4de](https://github.com/webpack/webpack-cli/commit/46ca4de11b16a3b29d800a150edf90b7562455ea))
303
+ - **serve:** pass socket or port if no socket ([4668ea7](https://github.com/webpack/webpack-cli/commit/4668ea78e125a698e0988ead30c82bec0f9bb8e3))
304
+ - **silent:** add new flag ([fcdc3f4](https://github.com/webpack/webpack-cli/commit/fcdc3f41f3aa55681b18fb5083279dbd91441d68))
305
+ - Update README.md ([b3dc27e](https://github.com/webpack/webpack-cli/commit/b3dc27e8b9d93221ef57ff013018a532254dc989))
306
+ - use jspluginswebpack ([da8fce2](https://github.com/webpack/webpack-cli/commit/da8fce23894315fc9921c51dfb58d77fbf35e8c9))
307
+
308
+ ### Bug Fixes
309
+
310
+ - various tests are now working ([#1168](https://github.com/webpack/webpack-cli/issues/1168)) ([287d8ee](https://github.com/webpack/webpack-cli/commit/287d8ee28afc69c8310828b0fa0919d40b6131af))
311
+ - array to object check ([2398249](https://github.com/webpack/webpack-cli/commit/2398249dcf23232b15c22d330681ca19f442e394))
312
+ - badge url placement ([8d33d15](https://github.com/webpack/webpack-cli/commit/8d33d15f7439e35696f354a9f057fa4550893648))
313
+ - changed the path resolver call ([0080ce2](https://github.com/webpack/webpack-cli/commit/0080ce297482b83fb1f7dfdc0328e1734aa1713e))
314
+ - config lookup ([762e3b9](https://github.com/webpack/webpack-cli/commit/762e3b9141503521d82a997a9f36f9d4612f0abf))
315
+ - correct jscodeshift import ([0c67103](https://github.com/webpack/webpack-cli/commit/0c67103644ce6f51b0e43a48c80f76883de24b5d))
316
+ - enable colors in ci ([7c9e0df](https://github.com/webpack/webpack-cli/commit/7c9e0df74cb88b4907e513c53218db9478cacc79))
317
+ - extend notify period ([aff8352](https://github.com/webpack/webpack-cli/commit/aff8352eaa2419a356b13e19a2ad1168001cebca))
318
+ - grammar within comment ([d482677](https://github.com/webpack/webpack-cli/commit/d4826774a628f12aeed4deb9382d390e5d800914))
319
+ - ignore failing test case ([c643626](https://github.com/webpack/webpack-cli/commit/c6436261ccaa659ecad1e4f29104d860e4f6219c))
320
+ - ignore failing tests ([444355a](https://github.com/webpack/webpack-cli/commit/444355aa22d0efc9eb0e887560d04a125061e321))
321
+ - improve local configRegister file resolution ([32cc513](https://github.com/webpack/webpack-cli/commit/32cc513eb62abf6dd7e18d8bacf6d0400cc9020e)), closes [#746](https://github.com/webpack/webpack-cli/issues/746)
322
+ - make init reolve linked packges ([#1006](https://github.com/webpack/webpack-cli/issues/1006)) ([187045a](https://github.com/webpack/webpack-cli/commit/187045a5cdfa7c32659c73b867587d0a2c1c29e1))
323
+ - minor fix ([0d9aa9a](https://github.com/webpack/webpack-cli/commit/0d9aa9ac7868f0154209eb119b6244df55859af7))
324
+ - **cli:** await external command execution, fix lint ([ce8f284](https://github.com/webpack/webpack-cli/commit/ce8f2840267c627539813f3b06956b9bf89584a3))
325
+ - **cli:** missing package, fixed function call ([4ee4d41](https://github.com/webpack/webpack-cli/commit/4ee4d41afc82f28545bc6e6482f034bc13cdd0d7))
326
+ - **create:** add default sw in create template ([#1153](https://github.com/webpack/webpack-cli/issues/1153)) ([edf65c2](https://github.com/webpack/webpack-cli/commit/edf65c2f0430c1c76d4f7004b338e46f56be35f2)), closes [#1152](https://github.com/webpack/webpack-cli/issues/1152) [#1152](https://github.com/webpack/webpack-cli/issues/1152) [#1152](https://github.com/webpack/webpack-cli/issues/1152)
327
+ - **create:** handle create package errors gracefully ([#1159](https://github.com/webpack/webpack-cli/issues/1159)) ([aa6d82b](https://github.com/webpack/webpack-cli/commit/aa6d82b649c9a1f4c54566b80597576d9bb554b4)), closes [#1151](https://github.com/webpack/webpack-cli/issues/1151) [#1151](https://github.com/webpack/webpack-cli/issues/1151) [#1151](https://github.com/webpack/webpack-cli/issues/1151) [#1151](https://github.com/webpack/webpack-cli/issues/1151)
328
+ - **deps:** add missing cz-customizable dep to allow committing ([68b1bbe](https://github.com/webpack/webpack-cli/commit/68b1bbe8f93685727ef5973b81dbe73e3fe0c3c7)), closes [#1040](https://github.com/webpack/webpack-cli/issues/1040)
329
+ - **info:** minor fix in the info function ([7a5cc51](https://github.com/webpack/webpack-cli/commit/7a5cc511ff78177c71c17e91619320933014f157))
330
+ - **init:** check defaults more precisely ([51831c7](https://github.com/webpack/webpack-cli/commit/51831c79bb701b7a21778ae7c90f7753a270c24d))
331
+ - use includes instead ([76671cb](https://github.com/webpack/webpack-cli/commit/76671cb9b6b9e753c7872a31a836bbd69d9c4ce1))
332
+ - **init:** fixed package template to include name param ([#1203](https://github.com/webpack/webpack-cli/issues/1203)) ([83c0056](https://github.com/webpack/webpack-cli/commit/83c0056999e82496ad24a1e965157491287ad895))
333
+ - minor refactor ([a30a027](https://github.com/webpack/webpack-cli/commit/a30a02716c50b1c52c223c42eabe5dd1cbe29577))
334
+ - minor tweak ([d21d6d3](https://github.com/webpack/webpack-cli/commit/d21d6d338fa7169929363d4fe60b8d7b8b39fcd1))
335
+ - minor typo ([85d1a7c](https://github.com/webpack/webpack-cli/commit/85d1a7c26499400a65b88274b466818899b36da8))
336
+ - plugin val ([b835e71](https://github.com/webpack/webpack-cli/commit/b835e711f5a7d96bf609161ba7b58bdd6acba426))
337
+ - promise configurations ([ae3ec9b](https://github.com/webpack/webpack-cli/commit/ae3ec9bef7da3c06020d3b4cab877ede19f0d631))
338
+ - refactor redundant code ([c7b77a0](https://github.com/webpack/webpack-cli/commit/c7b77a08d3fad0ba93605e69f21b939614c383e5))
339
+ - remove else block ([2b36987](https://github.com/webpack/webpack-cli/commit/2b36987ce2aa030a476a58bb80737e881926528d))
340
+ - remove extra ternary operator ([115709e](https://github.com/webpack/webpack-cli/commit/115709e4107f7c5e0ff0bfaf5183b6df7d87fdac))
341
+ - remove failing test case ([e3e46b6](https://github.com/webpack/webpack-cli/commit/e3e46b6c58f45286a2194105d1fb92deb67d9c53))
342
+ - remove for now the default value of the target ([#1171](https://github.com/webpack/webpack-cli/issues/1171)) ([2d56f79](https://github.com/webpack/webpack-cli/commit/2d56f790cfd6ed076c80afb0a6d613e56169c5c5))
343
+ - Remove redundant await ([6910877](https://github.com/webpack/webpack-cli/commit/691087774f4c453ae597e7b67343b75a41027036))
344
+ - remove unused variable ([b5510d8](https://github.com/webpack/webpack-cli/commit/b5510d882bf60a2249e0022d573b2a2fb2a06dad))
345
+ - rephrase comment ([e11c1c8](https://github.com/webpack/webpack-cli/commit/e11c1c8012cad266a41b5fc810384c9b6fe90065))
346
+ - revert ([b51df6a](https://github.com/webpack/webpack-cli/commit/b51df6aa2e3de60bf8a57e6b223fd64b48501436))
347
+ - revert ([75f56c5](https://github.com/webpack/webpack-cli/commit/75f56c5478a1177fcfcbbf189de4fc101431e055))
348
+ - revert ([f44d8a5](https://github.com/webpack/webpack-cli/commit/f44d8a57b29a77a897eccfb95df71edd9db75b32))
349
+ - spread args to mono-repo ([7499dd3](https://github.com/webpack/webpack-cli/commit/7499dd37f116a4d65bf0983e742943d03c351ee7))
350
+ - tweak ([b5add43](https://github.com/webpack/webpack-cli/commit/b5add43af0a742a925fee6200727f4358eb34749))
351
+ - tweak ([d74efde](https://github.com/webpack/webpack-cli/commit/d74efde1352790bd7e854df61884d51a0c667e3e))
352
+ - typo ([10618de](https://github.com/webpack/webpack-cli/commit/10618de2f2f91698dd5b7a9d12f74865ac4a1ecb))
353
+ - typo fix ([dc3a5e6](https://github.com/webpack/webpack-cli/commit/dc3a5e64fd94a26338f7ba1bc36fc100ddbb4f9d))
354
+ - update badge url ([0b1bbd7](https://github.com/webpack/webpack-cli/commit/0b1bbd7ac277a757fe0c8cde3773f6bda7a51467))
355
+ - update comments ([7553ae7](https://github.com/webpack/webpack-cli/commit/7553ae76b6a2f84cb5cb69f73f1eb3613020775f))
356
+ - Use ES6 object initializer shorthand ([f4cf9b1](https://github.com/webpack/webpack-cli/commit/f4cf9b198d0cf53ce1cb3251e24507be51b34f8b))
357
+ - use webpack-log ([9bfb79c](https://github.com/webpack/webpack-cli/commit/9bfb79c54020ef5e93c2417b2bee2feb7bcce31b))
358
+ - warn on unknown, plugin ([ae725c8](https://github.com/webpack/webpack-cli/commit/ae725c86a5c131470f6aee65cd6e6744264dea80))
359
+ - **serve:** add flag to ext-dep list ([1277cc9](https://github.com/webpack/webpack-cli/commit/1277cc9173d9bfa0afb312097e2a4f611491f4ae))
360
+ - warnings on lint ([b402179](https://github.com/webpack/webpack-cli/commit/b402179759f02310b60a026329d57b7c5b49a97e))
361
+ - warnings on lint ([76db13c](https://github.com/webpack/webpack-cli/commit/76db13c22006dc17819447b34c1be9906b3492fe))
362
+ - **init:** fixes config resolution on generating new configuration ([44fa20c](https://github.com/webpack/webpack-cli/commit/44fa20c5b4f791c44e2e3993f8c613d16dcc1bcd))
363
+ - **progress:** make boolean ([49bc0a4](https://github.com/webpack/webpack-cli/commit/49bc0a47c28cda87abce314bcc828a1e229be7b5))
364
+ - **serve:** add newline at helper end ([25071ce](https://github.com/webpack/webpack-cli/commit/25071ceae3bddcb8e05be8f2064dbbdc174cbe34))
365
+ - **serve:** disable for now ([fcf6e3e](https://github.com/webpack/webpack-cli/commit/fcf6e3e0016422310674c70c371a0ed2bd12b37f))
366
+ - **serve:** fix gitignore, fix lint problems ([18636c3](https://github.com/webpack/webpack-cli/commit/18636c3ef422e1dc2d3cfbe3ca368b1cef560a50))
367
+ - **serve:** handle serve args as an array ([#1174](https://github.com/webpack/webpack-cli/issues/1174)) ([8aa1b7d](https://github.com/webpack/webpack-cli/commit/8aa1b7d5cd69d8ae1bcf98aad7f03618c6609fc7))
368
+ - **serve:** relative imports ([1d9c2bc](https://github.com/webpack/webpack-cli/commit/1d9c2bc626dc97ba7e42b85e5b58f99af24a64ac))
369
+
370
+ ### Chores
371
+
372
+ - **actions:** add webpack version ([#1150](https://github.com/webpack/webpack-cli/issues/1150)) ([c1e8fdf](https://github.com/webpack/webpack-cli/commit/c1e8fdf622070ccca34bababe63c081e9e277b8f))
373
+ - **bootstrap:** refactor code ([#1037](https://github.com/webpack/webpack-cli/issues/1037)) ([0bc9081](https://github.com/webpack/webpack-cli/commit/0bc90811644e37863a8b86c674b7ca807636540a))
374
+ - **ci:** remove node 8 from the CI ([#1182](https://github.com/webpack/webpack-cli/issues/1182)) ([dae9982](https://github.com/webpack/webpack-cli/commit/dae998229c70f7775476ad9fb172d380d92896d4))
375
+ - **ci:** update webpack installation ([#1170](https://github.com/webpack/webpack-cli/issues/1170)) ([25a2c6b](https://github.com/webpack/webpack-cli/commit/25a2c6b2488e4e01f2e950b7f7373cb7b25fc8a3))
376
+ - **cli:** better group handling ([#1204](https://github.com/webpack/webpack-cli/issues/1204)) ([5e9639f](https://github.com/webpack/webpack-cli/commit/5e9639fb3349ffaddf5b604912e9775b99043d15))
377
+ - **cli:** fix helper to use includes for dashed flag stripping ([9da9db4](https://github.com/webpack/webpack-cli/commit/9da9db49863fe7db8df6408229201a015da47bb7))
378
+ - **cli:** fix var name to make more sense ([1e10979](https://github.com/webpack/webpack-cli/commit/1e10979a1ff18d7f177184df2b6780dbf166866c))
379
+ - **cli:** it restores inquirer for prompting external commands ([#1201](https://github.com/webpack/webpack-cli/issues/1201)) ([70c04ea](https://github.com/webpack/webpack-cli/commit/70c04eac1bb6f8918b135117c30b554131642db6))
380
+ - **cli:** show help when invalid flag is supplied ([#1051](https://github.com/webpack/webpack-cli/issues/1051)) ([6663e94](https://github.com/webpack/webpack-cli/commit/6663e94c20d69a9e8555bec015cab59311eddaac)), closes [#1046](https://github.com/webpack/webpack-cli/issues/1046) [#1046](https://github.com/webpack/webpack-cli/issues/1046)
381
+ - **cli:** updated package lock ([f6381d1](https://github.com/webpack/webpack-cli/commit/f6381d19f5df4b321290bd67bf6f5a6ba1c13f90))
382
+ - **compiler:** refactor emoji rendering in compiler ([012382c](https://github.com/webpack/webpack-cli/commit/012382c7521b30150c3ce7e32b9fbf1c1a6fb964))
383
+ - **deps:** bump eslint-utils from 1.4.0 to 1.4.2 ([#1068](https://github.com/webpack/webpack-cli/issues/1068)) ([1f73911](https://github.com/webpack/webpack-cli/commit/1f73911593c2387a870fdb9264bcb58a10d006e6))
384
+ - **deps:** bump handlebars from 4.1.2 to 4.7.2 in /packages/migrate ([#1180](https://github.com/webpack/webpack-cli/issues/1180)) ([5f37086](https://github.com/webpack/webpack-cli/commit/5f370868ccf1b07735b4ad0e731388fffc4e1048))
385
+ - **deps:** bump handlebars from 4.1.2 to 4.7.2 in /packages/utils ([#1181](https://github.com/webpack/webpack-cli/issues/1181)) ([f2972e5](https://github.com/webpack/webpack-cli/commit/f2972e5dcb0fc1f7753b48c5075a3588a7d5bcb9))
386
+ - **deps:** bump lodash from 4.17.11 to 4.17.15 in /packages/init ([95146fe](https://github.com/webpack/webpack-cli/commit/95146fe8c15fecdd15cb29aeec5b1e30417cc6d6))
387
+ - **deps:** bump lodash from 4.17.11 to 4.17.15 in /packages/serve ([d1ad9f3](https://github.com/webpack/webpack-cli/commit/d1ad9f371e2a400c0d1bf562ad73d136dc070251))
388
+ - **deps:** bump lodash from 4.17.11 to 4.17.15 in /packages/serve ([b3d7013](https://github.com/webpack/webpack-cli/commit/b3d7013805bfeb7679596748afc317a6376dd99b))
389
+ - **deps:** bump lodash from 4.17.11 to 4.17.15 in /packages/utils ([7fe5fd4](https://github.com/webpack/webpack-cli/commit/7fe5fd486843928e5607658c4f5293180500059f))
390
+ - **deps:** bump lodash in /packages/generate-loader ([87f9e9b](https://github.com/webpack/webpack-cli/commit/87f9e9b8da834e5cf6dfd79c97b7947556db7a29))
391
+ - **deps:** bump lodash in /packages/generate-plugin ([a8ecb31](https://github.com/webpack/webpack-cli/commit/a8ecb31387a3d090dc455cafc002d6907fd37301))
392
+ - **deps:** bump lodash in /packages/webpack-scaffold ([29de664](https://github.com/webpack/webpack-cli/commit/29de664f105d46736f06dbab534f7f559545b632))
393
+ - **deps:** update deps and remove old type ([5af7e7a](https://github.com/webpack/webpack-cli/commit/5af7e7a17105adf455b3b8907910976cf3deb5f8))
394
+ - **deps:** update sec vuln patches ([d2c6228](https://github.com/webpack/webpack-cli/commit/d2c62285add3e96894e94472b169f01557b2ef35))
395
+ - **grammer:** changes depracated to removed ([732a80a](https://github.com/webpack/webpack-cli/commit/732a80ab2f6d47fbdf18a50f9880e6681c737a54))
396
+ - **help:** refactor help for more cleaner code ([94a1ce0](https://github.com/webpack/webpack-cli/commit/94a1ce06ddd150a4ebf6ae54dfb8b4e8767e935d))
397
+ - **info:** changes base ([a58c286](https://github.com/webpack/webpack-cli/commit/a58c286ba869811b63ebb604e1a9e796a2b06f22))
398
+ - **init:** upgrade yeoman in generators/utils, slight generator error handling changes ([#1205](https://github.com/webpack/webpack-cli/issues/1205)) ([0255657](https://github.com/webpack/webpack-cli/commit/0255657cfe67fffb8583601fd2d4a334ab9a89da))
399
+ - **lib:** refactored lib utils and groups ([#1140](https://github.com/webpack/webpack-cli/issues/1140)) ([237887b](https://github.com/webpack/webpack-cli/commit/237887b4847bcfad2239dbea70b6e08f276db3a4))
400
+ - **lint:** auto linting ([8668783](https://github.com/webpack/webpack-cli/commit/8668783f259465131da0a6e7b2461c4dc0b75bd0))
401
+ - **linting:** renable linting ([1e596d3](https://github.com/webpack/webpack-cli/commit/1e596d320b54d031e6b8373ab2233e600f094428))
402
+ - **readme:** change of language ([41ee8ca](https://github.com/webpack/webpack-cli/commit/41ee8ca2d873f1ff8eb9a7aa804e90dbe4812171))
403
+ - **ref:** fix code ([d213809](https://github.com/webpack/webpack-cli/commit/d2138096b2c2b0d7a2daa9f6b36af8404dd2840a))
404
+ - **refactor:** rm logs ([e7a64d6](https://github.com/webpack/webpack-cli/commit/e7a64d68258bd08f623e67303f9aeebbe8d79c3c))
405
+ - **register:** remove register in favor for logging ([da29064](https://github.com/webpack/webpack-cli/commit/da29064084d931a2baea890de4b198cbb1674ea2))
406
+ - **serve:** allow js in serve package ([7e38b31](https://github.com/webpack/webpack-cli/commit/7e38b318576922cc5874297f771b369754e3f7b2))
407
+ - **serve:** made dev server optional peer dep ([f580b8f](https://github.com/webpack/webpack-cli/commit/f580b8f06631a52e4a7bd3e990692484d38a1188))
408
+ - **serve:** make dev server peer dep again ([6237d6c](https://github.com/webpack/webpack-cli/commit/6237d6cb3dffc3037eb055f50c22948da217c8ec))
409
+ - **serve:** move dev server back to normal dependencies ([c2bf27d](https://github.com/webpack/webpack-cli/commit/c2bf27dc5430c455685ded6f2b3a977ab9c5eb22))
410
+ - **serve:** refactor code to be more concise ([d2e3e80](https://github.com/webpack/webpack-cli/commit/d2e3e808ab63e2030acc0b76baafe68a4df66524))
411
+ - **serve:** remove allowjs from tsconfig ([3c92b0a](https://github.com/webpack/webpack-cli/commit/3c92b0abad54b92bee947fa630f9a90c393ae4f5))
412
+ - **serve:** remove dev server as an optional peer dep in favor of normal dep ([305a1dd](https://github.com/webpack/webpack-cli/commit/305a1dd7d3230a4106af3848cc53c47e251106f9))
413
+ - **serve:** remove promise return from serve package ([#1091](https://github.com/webpack/webpack-cli/issues/1091)) ([2144a1b](https://github.com/webpack/webpack-cli/commit/2144a1b9aff842589617f4a968c0084d1a4c3ed1))
414
+ - **serve:** update package lock ([1ddcf4a](https://github.com/webpack/webpack-cli/commit/1ddcf4a80765799df74ad26abdfdacd6150025aa))
415
+ - **serve:** updated dev server and fixed newline problem ([b29ec8f](https://github.com/webpack/webpack-cli/commit/b29ec8f7c2b43419563a382c9414b1e314f17041))
416
+ - **serve:** use cli flags from dev server package ([9b385f9](https://github.com/webpack/webpack-cli/commit/9b385f993e64d3c78f42ef38456b578ec7c94be4))
417
+ - **utils:** fixes typo in scaffold ([bd5c1ce](https://github.com/webpack/webpack-cli/commit/bd5c1ce08a998f55e305876fc4ecabd90acf4bf8))
418
+ - changed the split seperator ([078a1e4](https://github.com/webpack/webpack-cli/commit/078a1e4bbe8a6515ab8239859110d8a4967a1154))
419
+ - add deps ([b19b233](https://github.com/webpack/webpack-cli/commit/b19b233e30b21c65499c4e79a6df87403c5dccd3))
420
+ - add deps ([5b6cd4b](https://github.com/webpack/webpack-cli/commit/5b6cd4b17119dcfbae4a4bd8d314e35fcbb2e3af))
421
+ - add flags for commands ([f1eb2b7](https://github.com/webpack/webpack-cli/commit/f1eb2b78524ebf81e296710f62472d161c0b301c))
422
+ - add footer for consistency ([d22734c](https://github.com/webpack/webpack-cli/commit/d22734c7578cc847b5b6c3fd122d1c76d3f773db))
423
+ - add links to cli flags info ([#1178](https://github.com/webpack/webpack-cli/issues/1178)) ([dcec3ae](https://github.com/webpack/webpack-cli/commit/dcec3ae4b0115c5f80e1612213ee200c426fea0f))
424
+ - add more detailed test ([e02eac4](https://github.com/webpack/webpack-cli/commit/e02eac4f6a1ec2f7d9b0736dccbf860c996b577f))
425
+ - add strict checks ([3edee26](https://github.com/webpack/webpack-cli/commit/3edee260fdc95ae1140e467811f7623fb8d9d38e))
426
+ - add v3 as a tmp dep for dev-server ([425c590](https://github.com/webpack/webpack-cli/commit/425c590dc040835ab3f79be98824e5fefe09073a))
427
+ - Added test case for providing unknown flags along with -… ([#1197](https://github.com/webpack/webpack-cli/issues/1197)) ([f25c557](https://github.com/webpack/webpack-cli/commit/f25c5570fa6057ecaad33a9580ff391f7af9491a))
428
+ - added test for --json simple usecases ([aa5197b](https://github.com/webpack/webpack-cli/commit/aa5197b1ee1d12608f7aadb5e18f20961ae1a26b))
429
+ - added tests with different config type ([3a84813](https://github.com/webpack/webpack-cli/commit/3a84813e68f51aae95b12141596b2ab58afeb1a4))
430
+ - better output ([#1196](https://github.com/webpack/webpack-cli/issues/1196)) ([d72f9f8](https://github.com/webpack/webpack-cli/commit/d72f9f8d412fa0efbc3d5e9e556b40733afc767b))
431
+ - bump webpack v ([e1a3410](https://github.com/webpack/webpack-cli/commit/e1a341033591d51ac9d9fcf2daf20efa3982aaae))
432
+ - change arg in testutil ([11447ee](https://github.com/webpack/webpack-cli/commit/11447eeaf6ba3cf43d00c2552dd481f0a1fa5f5e))
433
+ - change arg in testutil ([0005910](https://github.com/webpack/webpack-cli/commit/0005910975289c0fa6029d8dce9647aa048d7bcc))
434
+ - changed the .bin to bin in entry test ([a4f735a](https://github.com/webpack/webpack-cli/commit/a4f735a903f2e0e5f571c26add47ba607b334f5e))
435
+ - changed the outDir to entry test ([016db0c](https://github.com/webpack/webpack-cli/commit/016db0c411641a195281696ae0238fce03a1fcbc))
436
+ - check for existing arr ([b46efe6](https://github.com/webpack/webpack-cli/commit/b46efe609ce7f3754b5c4efd7c866a2a29aad5e2))
437
+ - expression ([bd6b787](https://github.com/webpack/webpack-cli/commit/bd6b787c502bd02b9a8e0ec274a961205add0262))
438
+ - expression func ([ccbb7f2](https://github.com/webpack/webpack-cli/commit/ccbb7f2ea514c9e3e22c5ccdd95807aae60d63b6))
439
+ - expression func ([ce968e4](https://github.com/webpack/webpack-cli/commit/ce968e40555495977fe4085cc525c2220a3dd434))
440
+ - expression func ([721914b](https://github.com/webpack/webpack-cli/commit/721914ba1b4b8a3482ef67ccf2830a109c09b448))
441
+ - fix sec issues ([6f8dd13](https://github.com/webpack/webpack-cli/commit/6f8dd1389083b64536479fbaad67fd22474005b1))
442
+ - include comments ([941da90](https://github.com/webpack/webpack-cli/commit/941da90ebfcb6aa5ba07430465bf2d53a2c54c4f))
443
+ - make src more readable ([2d10684](https://github.com/webpack/webpack-cli/commit/2d10684fff0d0971019d3e3dd4d2200bd1a400dc))
444
+ - Minor code refactor adhering to ES6 semantics ([#1122](https://github.com/webpack/webpack-cli/issues/1122)) ([aed9b9e](https://github.com/webpack/webpack-cli/commit/aed9b9ebcc156d2ebf0eb4e91baea6fb1af5d916))
445
+ - minor code refactoring ([#1105](https://github.com/webpack/webpack-cli/issues/1105)) ([a43940d](https://github.com/webpack/webpack-cli/commit/a43940d29977b64d9d7c662e5d5b94a00534513a))
446
+ - minor code refactors ([517e756](https://github.com/webpack/webpack-cli/commit/517e756d6e5419de1cc80952fcbf20f5ca9a0ccb))
447
+ - Minor typographical fixes ([#1183](https://github.com/webpack/webpack-cli/issues/1183)) ([a0ac134](https://github.com/webpack/webpack-cli/commit/a0ac134ff0d0a17c10387da99f5e96443e48bb15))
448
+ - monorepo version update ([8097c5c](https://github.com/webpack/webpack-cli/commit/8097c5cf0fb6d2fa533168b4d97fbb373fa806ce))
449
+ - move away from var ([ed3e868](https://github.com/webpack/webpack-cli/commit/ed3e868bac193b7616b17ee5c3bd1722f64b7772))
450
+ - moved logger inside a module instead of having it inside the process ([#1179](https://github.com/webpack/webpack-cli/issues/1179)) ([e7cc639](https://github.com/webpack/webpack-cli/commit/e7cc63952a814de5b2b3690e31e4d2df3aa91f4b))
451
+ - only output message on error ([90868f2](https://github.com/webpack/webpack-cli/commit/90868f2c83e000ac42f93162e4b3ea2485e9da9a))
452
+ - pre-release ([4ca0de0](https://github.com/webpack/webpack-cli/commit/4ca0de0abd15a2b08297101a80ba49c2096178ce))
453
+ - pre-release ([f64e37c](https://github.com/webpack/webpack-cli/commit/f64e37c9d96218291bb2273455f3cddb6a3a5013))
454
+ - prevent weird behaviour of pre-commit hook ([#973](https://github.com/webpack/webpack-cli/issues/973)) ([ba471f8](https://github.com/webpack/webpack-cli/commit/ba471f87ba4ecc51fb532e864e5e21b88f22c5c9))
455
+ - readd deps and fix linting ([82407e5](https://github.com/webpack/webpack-cli/commit/82407e5e1fee2ce7e8dd4cfa9596b99ed0cde4fc))
456
+ - rebase ([652caf8](https://github.com/webpack/webpack-cli/commit/652caf8f86b4f95c4d5710afaf3d3aa2f0baec35))
457
+ - rebase ([38524ec](https://github.com/webpack/webpack-cli/commit/38524ec7930b58ba1b03cded85f2e7200a84f44b))
458
+ - rebase ([79137d0](https://github.com/webpack/webpack-cli/commit/79137d0800a161cb810236f384be48b5365e1a77))
459
+ - rebase ([2cd4e65](https://github.com/webpack/webpack-cli/commit/2cd4e654efec6d85e8bf65330231ae9503217b89))
460
+ - rebase ([8141e0e](https://github.com/webpack/webpack-cli/commit/8141e0e7b429ebd09b1c6e8bc61a4f065cf72dc3))
461
+ - rebase ([b5fcf78](https://github.com/webpack/webpack-cli/commit/b5fcf784829eded844c30be196eb434dd16e8f5e))
462
+ - rebase against next branch ([3812ea1](https://github.com/webpack/webpack-cli/commit/3812ea142a3116d577878ac98691c5fb904e5d7a))
463
+ - refactor webpack-cli ([8a8bc72](https://github.com/webpack/webpack-cli/commit/8a8bc72c392602284bd99e01f8ac1fa63d514594))
464
+ - remove debug flag ([d79cc45](https://github.com/webpack/webpack-cli/commit/d79cc45ccf542e2ae086ba83149d9d7be67de7ec))
465
+ - remove disable line ([88df722](https://github.com/webpack/webpack-cli/commit/88df722cf53e6af77375683c6527af5142f2ec64))
466
+ - remove old tests ([b131230](https://github.com/webpack/webpack-cli/commit/b1312304f3f9de9d7534c5968626be9255a77eec))
467
+ - Remove redundant multiple property ([ecf4a38](https://github.com/webpack/webpack-cli/commit/ecf4a380509a8165dc5e38f4eef24b99368cb7bb))
468
+ - removed the single depth folder search in gitignore ([3a3fb81](https://github.com/webpack/webpack-cli/commit/3a3fb8107feb8f8e6b0067e2f73f6c79867c3061))
469
+ - removed the snapshot testing, added custom checks ([6e40a1b](https://github.com/webpack/webpack-cli/commit/6e40a1bdcabdfac9f981532789523db2f2f4d564))
470
+ - rename flags to options ([ff532f4](https://github.com/webpack/webpack-cli/commit/ff532f4a3822f25d8be8763cd54d2d42c8094a39))
471
+ - sec patch ([2f818ef](https://github.com/webpack/webpack-cli/commit/2f818ef6ec088df7af63b2cb7cfca1671bcd61b9))
472
+ - sec patches ([020b1bf](https://github.com/webpack/webpack-cli/commit/020b1bf32df5c674e6e4cdb80ff64a3dbe19e05d))
473
+ - set fallback devtool ([080c44c](https://github.com/webpack/webpack-cli/commit/080c44c241cf6e796388369edf11e1607efab0df))
474
+ - update commands ([bf32074](https://github.com/webpack/webpack-cli/commit/bf32074472ecb0d4baf0fa16cc557f618cc83879))
475
+ - update console logs to webpack-logs ([dc4c89c](https://github.com/webpack/webpack-cli/commit/dc4c89cfc63e4e9eb8011ab7c27f98ba58c3185c))
476
+ - update dependences ([0f8a7f7](https://github.com/webpack/webpack-cli/commit/0f8a7f766789e13dd759bb9386d73bd39ae5be60))
477
+ - update dependences ([915c9f3](https://github.com/webpack/webpack-cli/commit/915c9f39be93eb46aca441e5f32d7dc23818080e)), closes [#1148](https://github.com/webpack/webpack-cli/issues/1148)
478
+ - update deps ([02d653f](https://github.com/webpack/webpack-cli/commit/02d653faba89a3114c715362547864f6b9eb291f))
479
+ - update deps ([8b75e1c](https://github.com/webpack/webpack-cli/commit/8b75e1c7565bc3b121a45a0f7078b5e0774d5cdf))
480
+ - update lockfiles ([f8ed0c6](https://github.com/webpack/webpack-cli/commit/f8ed0c62cc32d76af7fe0f32d8ebb01639c7e30c))
481
+ - **utils:** move jest to dev-deps (closes [#1190](https://github.com/webpack/webpack-cli/issues/1190)) ([#1194](https://github.com/webpack/webpack-cli/issues/1194)) ([fb6e3fe](https://github.com/webpack/webpack-cli/commit/fb6e3fe941094e8f0ee65f5ab71567729d659643))
482
+ - Update lib/bootstrap.js ([fa658b8](https://github.com/webpack/webpack-cli/commit/fa658b8214baa3fa11579dd6218de56437db0650))
483
+ - update lockfiles ([44df902](https://github.com/webpack/webpack-cli/commit/44df902637a0ef2ae226c53d449774ac1b236737))
484
+ - update lockfiles ([6b5ed74](https://github.com/webpack/webpack-cli/commit/6b5ed748bf28885814dd0709a29785bf17abd519))
485
+ - update terser-webpack-plugin to the latest version ([#1172](https://github.com/webpack/webpack-cli/issues/1172)) ([9222016](https://github.com/webpack/webpack-cli/commit/9222016ba3872b255893efe7aec2f5dd6f9de7e0))
486
+ - update test statements ([48f1cb5](https://github.com/webpack/webpack-cli/commit/48f1cb5f02b46d3289d643423c190428f98379ab))
487
+ - update to webpack v5 ([e59bcd7](https://github.com/webpack/webpack-cli/commit/e59bcd7739cc2a8d41c795788c9738e2453dbea7))
488
+ - update variable to be understandable ([9792c81](https://github.com/webpack/webpack-cli/commit/9792c8183cf8d7628d3e18b09101390a558079ca))
489
+ - use filter instead ([c71a9f0](https://github.com/webpack/webpack-cli/commit/c71a9f05eca87afb3a9a792a6aa4fc04b5ea60f1))
490
+ - use Object.keys in commands ([51af1e1](https://github.com/webpack/webpack-cli/commit/51af1e1453de30bc1a897f9e5a29c4877d2f4ed5))
491
+ - use webpack next ([2030f69](https://github.com/webpack/webpack-cli/commit/2030f69cf1221af060988ec1ec899a20f5f30ff3))
492
+ - wip ([641064a](https://github.com/webpack/webpack-cli/commit/641064a4bb40b9c845e921f538e0d886b2c32509))
493
+
494
+ ### Documentation
495
+
496
+ - remove deprecated packages description ([#979](https://github.com/webpack/webpack-cli/issues/979)) ([49e4adc](https://github.com/webpack/webpack-cli/commit/49e4adcd98dba87866d4b29216cad447e1223b0c))
497
+ - **create:** migrate init package docs ([#1155](https://github.com/webpack/webpack-cli/issues/1155)) ([a9940bd](https://github.com/webpack/webpack-cli/commit/a9940bd44f97496606b51cecc361f3d03c99c513))
498
+ - **readme:** adds deprecated warning and commands ([da13744](https://github.com/webpack/webpack-cli/commit/da13744e14fe02664ab2e7107cc52e6529e7378a))
499
+ - **readme:** adds issue resolution time shield ([6cd4cb4](https://github.com/webpack/webpack-cli/commit/6cd4cb45b866c55548714535e864b7eb2d6cefba))
500
+ - **webpack-scaffold:** remove unrelated links ([#1092](https://github.com/webpack/webpack-cli/issues/1092)) ([9f5d8b6](https://github.com/webpack/webpack-cli/commit/9f5d8b6056482376a6848ee069e2f7b4ad7184af))
501
+ - Updated information regarding migrate command and a typo fix ([#1187](https://github.com/webpack/webpack-cli/issues/1187)) ([861e9f8](https://github.com/webpack/webpack-cli/commit/861e9f8b3453ca9dfc2b8f9abda86b248cdf80a5))
@@ -0,0 +1,20 @@
1
+ Copyright JS Foundation and other contributors
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ 'Software'), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.