@flex-development/mlly 1.0.0-alpha.18 → 1.0.0-alpha.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. package/CHANGELOG.md +810 -709
  2. package/README.md +173 -12
  3. package/dist/index.d.mts +3 -4
  4. package/dist/index.mjs +1 -3
  5. package/dist/interfaces/aliases.d.mts +11 -0
  6. package/dist/interfaces/context-get-source.d.mts +52 -0
  7. package/dist/interfaces/file-system.d.mts +57 -0
  8. package/dist/interfaces/index.d.mts +11 -21
  9. package/dist/interfaces/main-field-map.d.mts +13 -0
  10. package/dist/interfaces/module-format-map.d.mts +17 -0
  11. package/dist/interfaces/options-get-source.d.mts +22 -29
  12. package/dist/interfaces/options-resolve-alias.d.mts +14 -26
  13. package/dist/interfaces/options-resolve-module.d.mts +38 -27
  14. package/dist/interfaces/protocol-map.d.mts +35 -0
  15. package/dist/interfaces/stats.d.mts +28 -0
  16. package/dist/internal/chars.mjs +11 -0
  17. package/dist/internal/check-invalid-segments.mjs +19 -0
  18. package/dist/internal/fs.browser.mjs +36 -0
  19. package/dist/internal/fs.d.mts +7 -0
  20. package/dist/internal/invalid-package-target.mjs +18 -0
  21. package/dist/internal/invalid-subpath.mjs +16 -0
  22. package/dist/internal/process.browser.mjs +7 -0
  23. package/dist/internal/process.d.mts +4 -0
  24. package/dist/lib/can-parse-url.d.mts +21 -0
  25. package/dist/lib/can-parse-url.mjs +12 -0
  26. package/dist/lib/cwd.d.mts +12 -0
  27. package/dist/lib/cwd.mjs +8 -0
  28. package/dist/lib/default-conditions.d.mts +15 -0
  29. package/dist/lib/default-conditions.mjs +5 -0
  30. package/dist/lib/default-extensions.d.mts +14 -0
  31. package/dist/lib/default-extensions.mjs +21 -0
  32. package/dist/lib/default-main-fields.d.mts +14 -0
  33. package/dist/lib/default-main-fields.mjs +5 -0
  34. package/dist/lib/extension-format-map.d.mts +16 -0
  35. package/dist/lib/extension-format-map.mjs +21 -0
  36. package/dist/lib/formats.d.mts +21 -0
  37. package/dist/lib/formats.mjs +14 -0
  38. package/dist/lib/get-source.d.mts +26 -0
  39. package/dist/lib/get-source.mjs +70 -0
  40. package/dist/lib/index.d.mts +40 -0
  41. package/dist/lib/index.mjs +53 -0
  42. package/dist/lib/is-absolute-specifier.d.mts +23 -0
  43. package/dist/lib/is-absolute-specifier.mjs +9 -0
  44. package/dist/lib/is-array-index.d.mts +17 -0
  45. package/dist/lib/is-array-index.mjs +11 -0
  46. package/dist/lib/is-bare-specifier.d.mts +23 -0
  47. package/dist/lib/is-bare-specifier.mjs +11 -0
  48. package/dist/lib/is-directory.d.mts +22 -0
  49. package/dist/lib/is-directory.mjs +13 -0
  50. package/dist/lib/is-file.d.mts +22 -0
  51. package/dist/lib/is-file.mjs +13 -0
  52. package/dist/lib/is-imports-subpath.d.mts +19 -0
  53. package/dist/lib/is-imports-subpath.mjs +8 -0
  54. package/dist/lib/is-relative-specifier.d.mts +21 -0
  55. package/dist/lib/is-relative-specifier.mjs +16 -0
  56. package/dist/lib/lookup-package-scope.d.mts +26 -0
  57. package/dist/lib/lookup-package-scope.mjs +16 -0
  58. package/dist/lib/pattern-key-compare.d.mts +31 -0
  59. package/dist/lib/pattern-key-compare.mjs +18 -0
  60. package/dist/lib/pattern-match.d.mts +19 -0
  61. package/dist/lib/pattern-match.mjs +36 -0
  62. package/dist/lib/read-package-json.d.mts +35 -0
  63. package/dist/lib/read-package-json.mjs +29 -0
  64. package/dist/lib/resolve-alias.d.mts +19 -0
  65. package/dist/lib/resolve-alias.mjs +50 -0
  66. package/dist/lib/resolve-module.d.mts +37 -0
  67. package/dist/lib/resolve-module.mjs +75 -0
  68. package/dist/lib/resolver.d.mts +280 -0
  69. package/dist/lib/resolver.mjs +462 -0
  70. package/dist/lib/root.d.mts +11 -0
  71. package/dist/lib/root.mjs +6 -0
  72. package/dist/lib/to-relative-specifier.d.mts +25 -0
  73. package/dist/lib/to-relative-specifier.mjs +26 -0
  74. package/dist/lib/to-url.d.mts +24 -0
  75. package/dist/lib/to-url.mjs +10 -0
  76. package/dist/types/awaitable.d.mts +14 -0
  77. package/dist/types/change-ext-fn.d.mts +29 -0
  78. package/dist/types/get-source-handler.d.mts +21 -0
  79. package/dist/types/get-source-handlers.d.mts +14 -0
  80. package/dist/types/index.d.mts +12 -10
  81. package/dist/types/main-field.d.mts +13 -0
  82. package/dist/types/module-format.d.mts +13 -0
  83. package/dist/types/module-id.d.mts +2 -4
  84. package/dist/types/numeric.d.mts +9 -0
  85. package/dist/types/pattern-key-compare-result.d.mts +9 -0
  86. package/dist/types/pattern-match.d.mts +10 -0
  87. package/dist/types/protocol.d.mts +6 -7
  88. package/package.json +227 -155
  89. package/dist/enums/assert-type.d.mts +0 -21
  90. package/dist/enums/assert-type.mjs +0 -4
  91. package/dist/enums/format.d.mts +0 -17
  92. package/dist/enums/format.mjs +0 -4
  93. package/dist/enums/index.d.mts +0 -10
  94. package/dist/enums/index.mjs +0 -14
  95. package/dist/enums/kind-specifier-syntax.d.mts +0 -14
  96. package/dist/enums/kind-specifier-syntax.mjs +0 -4
  97. package/dist/enums/kind-specifier.d.mts +0 -17
  98. package/dist/enums/kind-specifier.mjs +0 -4
  99. package/dist/enums/kind-statement-syntax.d.mts +0 -22
  100. package/dist/enums/kind-statement-syntax.mjs +0 -4
  101. package/dist/enums/kind-statement.d.mts +0 -15
  102. package/dist/enums/kind-statement.mjs +0 -4
  103. package/dist/index.mjs.map +0 -8
  104. package/dist/interfaces/import-assertions.d.mts +0 -20
  105. package/dist/interfaces/import-dynamic.d.mts +0 -41
  106. package/dist/interfaces/import-static.d.mts +0 -35
  107. package/dist/interfaces/options-fill-module.d.mts +0 -23
  108. package/dist/interfaces/options-find-subpath.d.mts +0 -50
  109. package/dist/interfaces/options-get-format.d.mts +0 -73
  110. package/dist/interfaces/options-parse-module-id.d.mts +0 -34
  111. package/dist/interfaces/options-parse-subpath.d.mts +0 -50
  112. package/dist/interfaces/options-resolve.d.mts +0 -15
  113. package/dist/interfaces/package-scope.d.mts +0 -25
  114. package/dist/interfaces/parsed-data-url.d.mts +0 -56
  115. package/dist/interfaces/parsed-module-id.d.mts +0 -80
  116. package/dist/interfaces/parsed-subpath.d.mts +0 -44
  117. package/dist/interfaces/statement-export.d.mts +0 -44
  118. package/dist/interfaces/statement-import.d.mts +0 -38
  119. package/dist/interfaces/statement-require.d.mts +0 -38
  120. package/dist/interfaces/statement.d.mts +0 -49
  121. package/dist/internal/dequote.d.mts +0 -14
  122. package/dist/internal/dequote.mjs +0 -7
  123. package/dist/internal/dequote.mjs.map +0 -8
  124. package/dist/internal/format-type-map.d.mts +0 -19
  125. package/dist/internal/format-type-map.mjs +0 -13
  126. package/dist/internal/format-type-map.mjs.map +0 -8
  127. package/dist/internal/get-specifier-kind.d.mts +0 -19
  128. package/dist/internal/get-specifier-kind.mjs +0 -11
  129. package/dist/internal/get-specifier-kind.mjs.map +0 -8
  130. package/dist/internal/get-subpaths.d.mts +0 -28
  131. package/dist/internal/get-subpaths.mjs +0 -8
  132. package/dist/internal/get-subpaths.mjs.map +0 -8
  133. package/dist/internal/regex-encoded-sep.d.mts +0 -15
  134. package/dist/internal/regex-encoded-sep.mjs +0 -6
  135. package/dist/internal/regex-encoded-sep.mjs.map +0 -8
  136. package/dist/internal/regex-internal-specifier.d.mts +0 -16
  137. package/dist/internal/regex-internal-specifier.mjs +0 -6
  138. package/dist/internal/regex-internal-specifier.mjs.map +0 -8
  139. package/dist/internal/regex-invalid-segment.d.mts +0 -16
  140. package/dist/internal/regex-invalid-segment.mjs +0 -9
  141. package/dist/internal/regex-invalid-segment.mjs.map +0 -8
  142. package/dist/internal/regex-package-name.d.mts +0 -15
  143. package/dist/internal/regex-package-name.mjs +0 -6
  144. package/dist/internal/regex-package-name.mjs.map +0 -8
  145. package/dist/internal/regex-package-path.d.mts +0 -17
  146. package/dist/internal/regex-package-path.mjs +0 -6
  147. package/dist/internal/regex-package-path.mjs.map +0 -8
  148. package/dist/internal/resolver.d.mts +0 -132
  149. package/dist/internal/resolver.mjs +0 -483
  150. package/dist/internal/resolver.mjs.map +0 -8
  151. package/dist/internal/validate-array-set.d.mts +0 -24
  152. package/dist/internal/validate-array-set.mjs +0 -12
  153. package/dist/internal/validate-array-set.mjs.map +0 -8
  154. package/dist/internal/validate-boolean.d.mts +0 -22
  155. package/dist/internal/validate-boolean.mjs +0 -12
  156. package/dist/internal/validate-boolean.mjs.map +0 -8
  157. package/dist/internal/validate-map.d.mts +0 -26
  158. package/dist/internal/validate-map.mjs +0 -12
  159. package/dist/internal/validate-map.mjs.map +0 -8
  160. package/dist/internal/validate-object.d.mts +0 -23
  161. package/dist/internal/validate-object.mjs +0 -12
  162. package/dist/internal/validate-object.mjs.map +0 -8
  163. package/dist/internal/validate-set.d.mts +0 -24
  164. package/dist/internal/validate-set.mjs +0 -12
  165. package/dist/internal/validate-set.mjs.map +0 -8
  166. package/dist/internal/validate-string.d.mts +0 -23
  167. package/dist/internal/validate-string.mjs +0 -12
  168. package/dist/internal/validate-string.mjs.map +0 -8
  169. package/dist/internal/validate-url-string.d.mts +0 -24
  170. package/dist/internal/validate-url-string.mjs +0 -13
  171. package/dist/internal/validate-url-string.mjs.map +0 -8
  172. package/dist/types/declaration.d.mts +0 -9
  173. package/dist/types/fn-change-ext.d.mts +0 -31
  174. package/dist/types/mime-type.d.mts +0 -13
  175. package/dist/types/module-specifier-type.d.mts +0 -11
  176. package/dist/types/syntax-kind-export.d.mts +0 -12
  177. package/dist/types/syntax-kind-import.d.mts +0 -12
  178. package/dist/types/syntax-kind-require.d.mts +0 -12
  179. package/dist/utils/compare-subpaths.d.mts +0 -25
  180. package/dist/utils/compare-subpaths.mjs +0 -19
  181. package/dist/utils/compare-subpaths.mjs.map +0 -8
  182. package/dist/utils/conditions.d.mts +0 -13
  183. package/dist/utils/conditions.mjs +0 -6
  184. package/dist/utils/conditions.mjs.map +0 -8
  185. package/dist/utils/detect-syntax.d.mts +0 -21
  186. package/dist/utils/detect-syntax.mjs +0 -11
  187. package/dist/utils/detect-syntax.mjs.map +0 -8
  188. package/dist/utils/extension-format-map.d.mts +0 -16
  189. package/dist/utils/extension-format-map.mjs +0 -22
  190. package/dist/utils/extension-format-map.mjs.map +0 -8
  191. package/dist/utils/extract-statements.d.mts +0 -21
  192. package/dist/utils/extract-statements.mjs +0 -20
  193. package/dist/utils/extract-statements.mjs.map +0 -8
  194. package/dist/utils/fill-modules.d.mts +0 -24
  195. package/dist/utils/fill-modules.mjs +0 -67
  196. package/dist/utils/fill-modules.mjs.map +0 -8
  197. package/dist/utils/find-dynamic-imports.d.mts +0 -18
  198. package/dist/utils/find-dynamic-imports.mjs +0 -36
  199. package/dist/utils/find-dynamic-imports.mjs.map +0 -8
  200. package/dist/utils/find-exports.d.mts +0 -21
  201. package/dist/utils/find-exports.mjs +0 -92
  202. package/dist/utils/find-exports.mjs.map +0 -8
  203. package/dist/utils/find-requires.d.mts +0 -18
  204. package/dist/utils/find-requires.mjs +0 -32
  205. package/dist/utils/find-requires.mjs.map +0 -8
  206. package/dist/utils/find-static-imports.d.mts +0 -18
  207. package/dist/utils/find-static-imports.mjs +0 -30
  208. package/dist/utils/find-static-imports.mjs.map +0 -8
  209. package/dist/utils/find-subpath.d.mts +0 -31
  210. package/dist/utils/find-subpath.mjs +0 -86
  211. package/dist/utils/find-subpath.mjs.map +0 -8
  212. package/dist/utils/get-format.d.mts +0 -31
  213. package/dist/utils/get-format.mjs +0 -107
  214. package/dist/utils/get-format.mjs.map +0 -8
  215. package/dist/utils/get-source.d.mts +0 -30
  216. package/dist/utils/get-source.mjs +0 -61
  217. package/dist/utils/get-source.mjs.map +0 -8
  218. package/dist/utils/has-cjs-syntax.d.mts +0 -25
  219. package/dist/utils/has-cjs-syntax.mjs +0 -11
  220. package/dist/utils/has-cjs-syntax.mjs.map +0 -8
  221. package/dist/utils/has-esm-syntax.d.mts +0 -21
  222. package/dist/utils/has-esm-syntax.mjs +0 -11
  223. package/dist/utils/has-esm-syntax.mjs.map +0 -8
  224. package/dist/utils/index.d.mts +0 -44
  225. package/dist/utils/index.mjs +0 -83
  226. package/dist/utils/index.mjs.map +0 -8
  227. package/dist/utils/is-absolute-specifier.d.mts +0 -20
  228. package/dist/utils/is-absolute-specifier.mjs +0 -26
  229. package/dist/utils/is-absolute-specifier.mjs.map +0 -8
  230. package/dist/utils/is-bare-specifier.d.mts +0 -20
  231. package/dist/utils/is-bare-specifier.mjs +0 -10
  232. package/dist/utils/is-bare-specifier.mjs.map +0 -8
  233. package/dist/utils/is-directory.d.mts +0 -13
  234. package/dist/utils/is-directory.mjs +0 -14
  235. package/dist/utils/is-directory.mjs.map +0 -8
  236. package/dist/utils/is-exports-sugar.d.mts +0 -26
  237. package/dist/utils/is-exports-sugar.mjs +0 -29
  238. package/dist/utils/is-exports-sugar.mjs.map +0 -8
  239. package/dist/utils/is-file.d.mts +0 -13
  240. package/dist/utils/is-file.mjs +0 -14
  241. package/dist/utils/is-file.mjs.map +0 -8
  242. package/dist/utils/is-relative-specifier.d.mts +0 -19
  243. package/dist/utils/is-relative-specifier.mjs +0 -9
  244. package/dist/utils/is-relative-specifier.mjs.map +0 -8
  245. package/dist/utils/lookup-package-scope.d.mts +0 -26
  246. package/dist/utils/lookup-package-scope.mjs +0 -34
  247. package/dist/utils/lookup-package-scope.mjs.map +0 -8
  248. package/dist/utils/parse-data-url.d.mts +0 -25
  249. package/dist/utils/parse-data-url.mjs +0 -25
  250. package/dist/utils/parse-data-url.mjs.map +0 -8
  251. package/dist/utils/parse-module-id.d.mts +0 -20
  252. package/dist/utils/parse-module-id.mjs +0 -123
  253. package/dist/utils/parse-module-id.mjs.map +0 -8
  254. package/dist/utils/parse-subpath.d.mts +0 -35
  255. package/dist/utils/parse-subpath.mjs +0 -149
  256. package/dist/utils/parse-subpath.mjs.map +0 -8
  257. package/dist/utils/pattern-character.d.mts +0 -11
  258. package/dist/utils/pattern-character.mjs +0 -6
  259. package/dist/utils/pattern-character.mjs.map +0 -8
  260. package/dist/utils/read-package-json.d.mts +0 -26
  261. package/dist/utils/read-package-json.mjs +0 -48
  262. package/dist/utils/read-package-json.mjs.map +0 -8
  263. package/dist/utils/resolve-alias.d.mts +0 -20
  264. package/dist/utils/resolve-alias.mjs +0 -101
  265. package/dist/utils/resolve-alias.mjs.map +0 -8
  266. package/dist/utils/resolve-aliases.d.mts +0 -19
  267. package/dist/utils/resolve-aliases.mjs +0 -26
  268. package/dist/utils/resolve-aliases.mjs.map +0 -8
  269. package/dist/utils/resolve-extensions.d.mts +0 -14
  270. package/dist/utils/resolve-extensions.mjs +0 -22
  271. package/dist/utils/resolve-extensions.mjs.map +0 -8
  272. package/dist/utils/resolve-module.d.mts +0 -39
  273. package/dist/utils/resolve-module.mjs +0 -63
  274. package/dist/utils/resolve-module.mjs.map +0 -8
  275. package/dist/utils/resolve-modules.d.mts +0 -25
  276. package/dist/utils/resolve-modules.mjs +0 -23
  277. package/dist/utils/resolve-modules.mjs.map +0 -8
  278. package/dist/utils/to-absolute-specifier.d.mts +0 -22
  279. package/dist/utils/to-absolute-specifier.mjs +0 -8
  280. package/dist/utils/to-absolute-specifier.mjs.map +0 -8
  281. package/dist/utils/to-bare-specifier.d.mts +0 -42
  282. package/dist/utils/to-bare-specifier.mjs +0 -79
  283. package/dist/utils/to-bare-specifier.mjs.map +0 -8
  284. package/dist/utils/to-data-url.d.mts +0 -30
  285. package/dist/utils/to-data-url.mjs +0 -7
  286. package/dist/utils/to-data-url.mjs.map +0 -8
  287. package/dist/utils/to-node-url.d.mts +0 -19
  288. package/dist/utils/to-node-url.mjs +0 -7
  289. package/dist/utils/to-node-url.mjs.map +0 -8
  290. package/dist/utils/to-relative-specifier.d.mts +0 -24
  291. package/dist/utils/to-relative-specifier.mjs +0 -10
  292. package/dist/utils/to-relative-specifier.mjs.map +0 -8
  293. package/dist/utils/to-url.d.mts +0 -21
  294. package/dist/utils/to-url.mjs +0 -8
  295. package/dist/utils/to-url.mjs.map +0 -8
  296. package/dist/utils/validate-assertions.d.mts +0 -23
  297. package/dist/utils/validate-assertions.mjs +0 -47
  298. package/dist/utils/validate-assertions.mjs.map +0 -8
  299. package/dist/utils/validate-exports.d.mts +0 -25
  300. package/dist/utils/validate-exports.mjs +0 -73
  301. package/dist/utils/validate-exports.mjs.map +0 -8
package/CHANGELOG.md CHANGED
@@ -1,974 +1,1075 @@
1
- ## [1.0.0-alpha.18](https://github.com/flex-development/mlly/compare/1.0.0-alpha.17...1.0.0-alpha.18) (2023-08-14)
2
-
1
+ ## [1.0.0-alpha.19](https://github.com/flex-development/mlly/compare/1.0.0-alpha.18...1.0.0-alpha.19) (2024-12-20)
3
2
 
4
3
  ### ⚠ BREAKING CHANGES
5
4
 
6
- * **ts:** use `export type *`
5
+ - api
7
6
 
8
7
  ### :package: Build
9
8
 
10
- * **deps-dev:** Bump @commitlint/cli from 17.6.7 to 17.7.0 ([#405](https://github.com/flex-development/mlly/issues/405)) ([6e3e9c7](https://github.com/flex-development/mlly/commit/6e3e9c71ecd58f20a74b782c629914ecb404f5d8))
11
- * **deps-dev:** Bump @commitlint/cli from 17.7.0 to 17.7.1 ([#409](https://github.com/flex-development/mlly/issues/409)) ([060725c](https://github.com/flex-development/mlly/commit/060725c8d5c6c8002f197e360697a22c35bc1145))
12
- * **deps-dev:** Bump cspell from 7.0.1-alpha.8 to 7.0.1-alpha.9 ([#408](https://github.com/flex-development/mlly/issues/408)) ([772778a](https://github.com/flex-development/mlly/commit/772778a3df76d005e9b765275b275d8e1e91498a))
13
- * **deps-dev:** Bump esbuild from 0.19.0 to 0.19.1 ([#410](https://github.com/flex-development/mlly/issues/410)) ([d3804d7](https://github.com/flex-development/mlly/commit/d3804d76d76afbc5a9172a1cacce22f6c8a42a8c))
14
- * **deps-dev:** Bump esbuild from 0.19.1 to 0.19.2 ([#416](https://github.com/flex-development/mlly/issues/416)) ([eaf8d51](https://github.com/flex-development/mlly/commit/eaf8d5182f47c6855f80eed73e25f0e3f0dba1e4))
15
- * **deps-dev:** Bump eslint from 8.46.0 to 8.47.0 ([#411](https://github.com/flex-development/mlly/issues/411)) ([a3374af](https://github.com/flex-development/mlly/commit/a3374af2b18028ff56cd17ef4b145169fff1e640))
16
- * **deps-dev:** Bump eslint-import-resolver-typescript from 3.5.5 to 3.6.0 ([#406](https://github.com/flex-development/mlly/issues/406)) ([c2dbf48](https://github.com/flex-development/mlly/commit/c2dbf483ec9ce4581306c7c41608dd2fa9a04631))
17
- * **deps-dev:** Bump eslint-plugin-vue from 9.16.1 to 9.17.0 ([#404](https://github.com/flex-development/mlly/issues/404)) ([f0892eb](https://github.com/flex-development/mlly/commit/f0892eb5ec7bc66311b168bf118cb4d11b0b2185))
18
- * **deps-dev:** Bump graphql from 16.7.1 to 16.8.0 ([#415](https://github.com/flex-development/mlly/issues/415)) ([6f2a71d](https://github.com/flex-development/mlly/commit/6f2a71d2aedc265ac79770a77716a073a53f3407))
19
- * **deps-dev:** Bump lint-staged from 13.2.3 to 14.0.0 ([#417](https://github.com/flex-development/mlly/issues/417)) ([a2443bd](https://github.com/flex-development/mlly/commit/a2443bd75c4386601b8c67f106a5a0656ce1730b))
20
- * **deps-dev:** Bump the flex-development group with 1 update ([#403](https://github.com/flex-development/mlly/issues/403)) ([f6e4fb7](https://github.com/flex-development/mlly/commit/f6e4fb74e86c98b784b55ef8880259fd1a1cfb7f))
21
- * **deps-dev:** Bump the typescript-eslint group with 2 updates ([#413](https://github.com/flex-development/mlly/issues/413)) ([099b5ae](https://github.com/flex-development/mlly/commit/099b5aec18c9bb92608619d4e0c8259533ac6882))
22
- * **deps:** bump @flex-development/tutils from 6.0.0-alpha.20 to 6.0.0-alpha.21 ([1992970](https://github.com/flex-development/mlly/commit/199297040a08963491aef355fbfcf7c0c0120e9b))
23
- * **deps:** Bump the flex-development group with 1 update ([#407](https://github.com/flex-development/mlly/issues/407)) ([41be3a2](https://github.com/flex-development/mlly/commit/41be3a267ea674fec6a2e2092c350a6783f0c026))
24
- * **deps:** Bump the flex-development group with 1 update ([#414](https://github.com/flex-development/mlly/issues/414)) ([2d07755](https://github.com/flex-development/mlly/commit/2d07755998172d705f92c6d1669bc1b0df8fc2fc))
25
- * **ts:** use `export type *` ([e0a1dce](https://github.com/flex-development/mlly/commit/e0a1dce59094797a7bc0ddf7b26840a43765155c))
26
-
9
+ - [[`8cecedd`](https://github.com/flex-development/mlly/commit/8cecedd5cea6c3893fcd07a473c328299b32adaa)] **deps-dev:** Bump @arethetypeswrong/cli from 0.16.4 to 0.17.0 ([#700](https://github.com/flex-development/mlly/issues/700))
10
+ - [[`0e90dda`](https://github.com/flex-development/mlly/commit/0e90ddaab0852794655b97eaf23690e5a3301e47)] **deps-dev:** Bump @arethetypeswrong/cli from 0.17.0 to 0.17.2 ([#748](https://github.com/flex-development/mlly/issues/748))
11
+ - [[`2394740`](https://github.com/flex-development/mlly/commit/2394740463cecfc05f729438a88bcfcf1e77bce7)] **deps-dev:** Bump @commitlint/cli from 19.5.0 to 19.6.0 in the commitlint group ([#711](https://github.com/flex-development/mlly/issues/711))
12
+ - [[`24d2124`](https://github.com/flex-development/mlly/commit/24d2124c02a72a220266a01e48e1ab5bd089576f)] **deps-dev:** Bump @commitlint/cli from 19.6.0 to 19.6.1 in the commitlint group ([#735](https://github.com/flex-development/mlly/issues/735))
13
+ - [[`3aa80a8`](https://github.com/flex-development/mlly/commit/3aa80a8abae7d8f03ee7bc111af19b4403ffdd26)] **deps-dev:** Bump @docsearch/react from 3.5.1 to 3.5.2 ([#425](https://github.com/flex-development/mlly/issues/425))
14
+ - [[`1005912`](https://github.com/flex-development/mlly/commit/1005912b3f33e5bc2f825a681a28c68f7a2971f3)] **deps-dev:** Bump @faker-js/faker from 9.0.3 to 9.1.0 ([#677](https://github.com/flex-development/mlly/issues/677))
15
+ - [[`5d35f56`](https://github.com/flex-development/mlly/commit/5d35f569cd4a02eee33b134d94eecdab274607e1)] **deps-dev:** Bump @faker-js/faker from 9.1.0 to 9.2.0 ([#689](https://github.com/flex-development/mlly/issues/689))
16
+ - [[`d572084`](https://github.com/flex-development/mlly/commit/d572084c13550367dc36d8b004b7685cb0a0d68d)] **deps-dev:** Bump @faker-js/faker from 9.2.0 to 9.3.0 ([#741](https://github.com/flex-development/mlly/issues/741))
17
+ - [[`072abcd`](https://github.com/flex-development/mlly/commit/072abcd5924a85d7fb69bf92774f0a3dd3279b3b)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.10.0 to 2.10.1 ([#685](https://github.com/flex-development/mlly/issues/685))
18
+ - [[`48d3762`](https://github.com/flex-development/mlly/commit/48d37628d5831a53b2f52e5bd95cb0b8a7421620)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.10.1 to 2.11.0 ([#714](https://github.com/flex-development/mlly/issues/714))
19
+ - [[`ea59428`](https://github.com/flex-development/mlly/commit/ea5942887c124c51fc9f64305e652ef3f76f0fed)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.8.0 to 2.9.0 ([#648](https://github.com/flex-development/mlly/issues/648))
20
+ - [[`f6280e3`](https://github.com/flex-development/mlly/commit/f6280e3cb5f75f90ae8ad3b1a70fab0e6103c3ca)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.9.0 to 2.10.0 ([#681](https://github.com/flex-development/mlly/issues/681))
21
+ - [[`437b57a`](https://github.com/flex-development/mlly/commit/437b57af678d8deb4cdf4c41282c9363ba1fe3db)] **deps-dev:** Bump @vue/runtime-core from 3.3.8 to 3.3.9 ([#474](https://github.com/flex-development/mlly/issues/474))
22
+ - [[`af2a8b8`](https://github.com/flex-development/mlly/commit/af2a8b8016caa276bad499dfbceeb8630025839e)] **deps-dev:** Bump chai from 5.1.1 to 5.1.2 ([#669](https://github.com/flex-development/mlly/issues/669))
23
+ - [[`d183f42`](https://github.com/flex-development/mlly/commit/d183f4223eed009bcc4dbb5a024b9e4cd751c366)] **deps-dev:** Bump cspell from 7.0.1-alpha.9 to 7.0.1 ([#432](https://github.com/flex-development/mlly/issues/432))
24
+ - [[`f292014`](https://github.com/flex-development/mlly/commit/f2920145840c9a544c3b93bcb639d9de0eea62dc)] **deps-dev:** Bump cspell from 8.14.4 to 8.15.4 ([#665](https://github.com/flex-development/mlly/issues/665))
25
+ - [[`44c51f4`](https://github.com/flex-development/mlly/commit/44c51f43349bc98b35ee51bd52e8f4ebf03cacef)] **deps-dev:** Bump cspell from 8.15.4 to 8.15.5 ([#679](https://github.com/flex-development/mlly/issues/679))
26
+ - [[`1944b27`](https://github.com/flex-development/mlly/commit/1944b27952d28d21b84e2bdfab9530723e49d7e2)] **deps-dev:** Bump cspell from 8.15.5 to 8.15.7 ([#692](https://github.com/flex-development/mlly/issues/692))
27
+ - [[`4246df6`](https://github.com/flex-development/mlly/commit/4246df6e5115fb527156ff72e40ed2956d411cc1)] **deps-dev:** Bump cspell from 8.15.7 to 8.16.0 ([#695](https://github.com/flex-development/mlly/issues/695))
28
+ - [[`7f7bdbc`](https://github.com/flex-development/mlly/commit/7f7bdbc3efc05afe31ae523869ad83fe9a423909)] **deps-dev:** Bump cspell from 8.16.0 to 8.17.1 ([#732](https://github.com/flex-development/mlly/issues/732))
29
+ - [[`6c47e2b`](https://github.com/flex-development/mlly/commit/6c47e2ba5a426a393900edc0e0fe7080c1542c8e)] **deps-dev:** Bump dprint from 0.43.0 to 0.43.1 ([#477](https://github.com/flex-development/mlly/issues/477))
30
+ - [[`2eab4ea`](https://github.com/flex-development/mlly/commit/2eab4ea9c47033542347f05d65d86e3778492573)] **deps-dev:** Bump dprint from 0.47.2 to 0.47.4 ([#667](https://github.com/flex-development/mlly/issues/667))
31
+ - [[`021c15c`](https://github.com/flex-development/mlly/commit/021c15cc5b4268c515f1b455575d3fe45b854b95)] **deps-dev:** Bump dprint from 0.47.4 to 0.47.5 ([#676](https://github.com/flex-development/mlly/issues/676))
32
+ - [[`021471e`](https://github.com/flex-development/mlly/commit/021471e0c8a8ff7875d2ff602a772f40812ef36e)] **deps-dev:** Bump dprint from 0.47.5 to 0.47.6 ([#740](https://github.com/flex-development/mlly/issues/740))
33
+ - [[`44d5191`](https://github.com/flex-development/mlly/commit/44d519186f70c6ca18f2000698737fbd266533c4)] **deps-dev:** Bump esbuild from 0.19.2 to 0.19.3 ([#458](https://github.com/flex-development/mlly/issues/458))
34
+ - [[`bff3410`](https://github.com/flex-development/mlly/commit/bff341037c27c8b70c9a66723173dedd74405ae7)] **deps-dev:** Bump esbuild from 0.19.7 to 0.19.8 ([#473](https://github.com/flex-development/mlly/issues/473))
35
+ - [[`aa11c20`](https://github.com/flex-development/mlly/commit/aa11c20fbad33433c867599cb8c5fe60ceb44f75)] **deps-dev:** Bump esbuild from 0.24.0 to 0.24.2 ([#749](https://github.com/flex-development/mlly/issues/749))
36
+ - [[`07d8788`](https://github.com/flex-development/mlly/commit/07d8788cb2b1fe79a1e475edeec38fa500b6a6cb)] **deps-dev:** Bump eslint-import-resolver-typescript from 3.6.3 to 3.7.0 ([#738](https://github.com/flex-development/mlly/issues/738))
37
+ - [[`f5bc25d`](https://github.com/flex-development/mlly/commit/f5bc25d6917a8aabf34974029b6af706893ed460)] **deps-dev:** Bump eslint-plugin-import from 2.27.5 to 2.28.1 ([#429](https://github.com/flex-development/mlly/issues/429))
38
+ - [[`acc8747`](https://github.com/flex-development/mlly/commit/acc8747e4b0830f78595f0248c9c377b62d411f1)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.3.1 to 50.3.2 ([#656](https://github.com/flex-development/mlly/issues/656))
39
+ - [[`f08273c`](https://github.com/flex-development/mlly/commit/f08273cd4ebe3350842f22b6273cfb58fdbf183b)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.3.2 to 50.4.1 ([#659](https://github.com/flex-development/mlly/issues/659))
40
+ - [[`6048760`](https://github.com/flex-development/mlly/commit/60487603dd7c90b10fd82ca8049949834e86db53)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.4.1 to 50.4.3 ([#663](https://github.com/flex-development/mlly/issues/663))
41
+ - [[`ba37d8d`](https://github.com/flex-development/mlly/commit/ba37d8dc7f2230f3f3377fe6afe3b3491aa2290b)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.4.3 to 50.5.0 ([#701](https://github.com/flex-development/mlly/issues/701))
42
+ - [[`8613fb7`](https://github.com/flex-development/mlly/commit/8613fb795146811d87a3ded431d21d8215bb9556)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.5.0 to 50.6.0 ([#723](https://github.com/flex-development/mlly/issues/723))
43
+ - [[`341e0d3`](https://github.com/flex-development/mlly/commit/341e0d39ce9345e72f6429e13a70490a3584f422)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.6.0 to 50.6.1 ([#745](https://github.com/flex-development/mlly/issues/745))
44
+ - [[`5ee6242`](https://github.com/flex-development/mlly/commit/5ee62420a8edbae234930fb9f6fe17bba0b463ce)] **deps-dev:** Bump eslint-plugin-jsonc from 2.16.0 to 2.17.0 ([#697](https://github.com/flex-development/mlly/issues/697))
45
+ - [[`31cd6da`](https://github.com/flex-development/mlly/commit/31cd6da2db1798c6bb077278e9b5c4ef8178e567)] **deps-dev:** Bump eslint-plugin-jsonc from 2.17.0 to 2.18.1 ([#699](https://github.com/flex-development/mlly/issues/699))
46
+ - [[`47555a5`](https://github.com/flex-development/mlly/commit/47555a5fda5fbcf1bb5ab04a2cf749f02372ccb5)] **deps-dev:** Bump eslint-plugin-jsonc from 2.18.1 to 2.18.2 ([#709](https://github.com/flex-development/mlly/issues/709))
47
+ - [[`02c4a6e`](https://github.com/flex-development/mlly/commit/02c4a6e1e5552de41d482e6ec6898fed1aaa138b)] **deps-dev:** Bump eslint-plugin-markdownlint from 0.4.1 to 0.5.0 ([#420](https://github.com/flex-development/mlly/issues/420))
48
+ - [[`8303cfd`](https://github.com/flex-development/mlly/commit/8303cfd78dcd00816d3bcfc57106bcd8eade93f8)] **deps-dev:** Bump eslint-plugin-n from 17.10.3 to 17.11.1 ([#653](https://github.com/flex-development/mlly/issues/653))
49
+ - [[`cdbdf1b`](https://github.com/flex-development/mlly/commit/cdbdf1b10329729b24e983a3148c453f22d389dd)] **deps-dev:** Bump eslint-plugin-n from 17.11.1 to 17.12.0 ([#680](https://github.com/flex-development/mlly/issues/680))
50
+ - [[`ba71d3c`](https://github.com/flex-development/mlly/commit/ba71d3cf046ca09401be1e36fa4166da37332c69)] **deps-dev:** Bump eslint-plugin-n from 17.12.0 to 17.13.0 ([#694](https://github.com/flex-development/mlly/issues/694))
51
+ - [[`392f055`](https://github.com/flex-development/mlly/commit/392f05539b01a8116a255864122a220cd98ef414)] **deps-dev:** Bump eslint-plugin-n from 17.13.0 to 17.13.1 ([#696](https://github.com/flex-development/mlly/issues/696))
52
+ - [[`3c9306b`](https://github.com/flex-development/mlly/commit/3c9306b2e77fc9b4bf14338d090f80025c62df2b)] **deps-dev:** Bump eslint-plugin-n from 17.13.1 to 17.13.2 ([#706](https://github.com/flex-development/mlly/issues/706))
53
+ - [[`5d522a0`](https://github.com/flex-development/mlly/commit/5d522a037509e60734b773ebd5682c44feea275d)] **deps-dev:** Bump eslint-plugin-n from 17.13.2 to 17.14.0 ([#717](https://github.com/flex-development/mlly/issues/717))
54
+ - [[`5ab3ad0`](https://github.com/flex-development/mlly/commit/5ab3ad0d33af3769f4497a7776d186b329db9fab)] **deps-dev:** Bump eslint-plugin-n from 17.14.0 to 17.15.1 ([#750](https://github.com/flex-development/mlly/issues/750))
55
+ - [[`5897ad2`](https://github.com/flex-development/mlly/commit/5897ad235aa7525c92f49efb85e0d2db3c10c71d)] **deps-dev:** Bump eslint-plugin-promise from 7.1.0 to 7.2.0 ([#720](https://github.com/flex-development/mlly/issues/720))
56
+ - [[`54ea478`](https://github.com/flex-development/mlly/commit/54ea4782b8662770c13e158004b49849ab819a34)] **deps-dev:** Bump eslint-plugin-promise from 7.2.0 to 7.2.1 ([#725](https://github.com/flex-development/mlly/issues/725))
57
+ - [[`773df0b`](https://github.com/flex-development/mlly/commit/773df0b7985e994052b10f0a43c08ad0efa25a7a)] **deps-dev:** Bump eslint-plugin-unicorn from 56.0.0 to 56.0.1 ([#712](https://github.com/flex-development/mlly/issues/712))
58
+ - [[`f17f56c`](https://github.com/flex-development/mlly/commit/f17f56c83b2031edbfd41f23514d7b283b80845c)] **deps-dev:** Bump eslint-plugin-yml from 1.14.0 to 1.15.0 ([#682](https://github.com/flex-development/mlly/issues/682))
59
+ - [[`9c1c405`](https://github.com/flex-development/mlly/commit/9c1c405be55daa2065aa4e57c5fe091e987e6c19)] **deps-dev:** Bump eslint-plugin-yml from 1.15.0 to 1.16.0 ([#742](https://github.com/flex-development/mlly/issues/742))
60
+ - [[`8463c73`](https://github.com/flex-development/mlly/commit/8463c73000b622ba8dff867629bbce02b9e8b7c4)] **deps-dev:** Bump globals from 15.10.0 to 15.11.0 ([#654](https://github.com/flex-development/mlly/issues/654))
61
+ - [[`84a61f2`](https://github.com/flex-development/mlly/commit/84a61f22a79f6331a333691e5622987ad1a5a78d)] **deps-dev:** Bump globals from 15.11.0 to 15.12.0 ([#690](https://github.com/flex-development/mlly/issues/690))
62
+ - [[`0d1fefe`](https://github.com/flex-development/mlly/commit/0d1fefebd31dc7122e47bd0c5518432eec7d17e1)] **deps-dev:** Bump globals from 15.12.0 to 15.14.0 ([#737](https://github.com/flex-development/mlly/issues/737))
63
+ - [[`ee6b9d5`](https://github.com/flex-development/mlly/commit/ee6b9d52070c072db7e87c4e543c0bd995175da5)] **deps-dev:** Bump graphql from 16.8.0 to 16.8.1 ([#459](https://github.com/flex-development/mlly/issues/459))
64
+ - [[`76f1919`](https://github.com/flex-development/mlly/commit/76f19191fa2c017550cf1a59ab2aa5cfac81c859)] **deps-dev:** Bump husky from 9.1.6 to 9.1.7 ([#710](https://github.com/flex-development/mlly/issues/710))
65
+ - [[`d8303a2`](https://github.com/flex-development/mlly/commit/d8303a23234e87870b573925d61e0131831ed748)] **deps-dev:** Bump is-ci from 3.0.1 to 4.1.0 ([#739](https://github.com/flex-development/mlly/issues/739))
66
+ - [[`df290bc`](https://github.com/flex-development/mlly/commit/df290bc98456daf0c2cb640cf9909b9756801688)] **deps-dev:** Bump lint-staged from 14.0.0 to 14.0.1 ([#435](https://github.com/flex-development/mlly/issues/435))
67
+ - [[`25f11b3`](https://github.com/flex-development/mlly/commit/25f11b3195489dea94add1da85abca156f2c5e63)] **deps-dev:** Bump prettier from 3.0.1 to 3.0.2 ([#421](https://github.com/flex-development/mlly/issues/421))
68
+ - [[`997888b`](https://github.com/flex-development/mlly/commit/997888be3866b93baa986548b36b7e31b253f643)] **deps-dev:** Bump prettier from 3.3.3 to 3.4.1 ([#722](https://github.com/flex-development/mlly/issues/722))
69
+ - [[`2f098c0`](https://github.com/flex-development/mlly/commit/2f098c01de418f0075c10d0383ec583227b923f3)] **deps-dev:** Bump prettier from 3.4.1 to 3.4.2 ([#743](https://github.com/flex-development/mlly/issues/743))
70
+ - [[`f0507df`](https://github.com/flex-development/mlly/commit/f0507df2028e3467009f0f7b48d8407854b08955)] **deps-dev:** Bump remark-validate-links from 13.0.1 to 13.0.2 in the remark group ([#684](https://github.com/flex-development/mlly/issues/684))
71
+ - [[`6fab4b2`](https://github.com/flex-development/mlly/commit/6fab4b22db9063590ead21898e5fba7c3ff3c892)] **deps-dev:** Bump the eslint group across 1 directory with 2 updates ([#730](https://github.com/flex-development/mlly/issues/730))
72
+ - [[`50435bb`](https://github.com/flex-development/mlly/commit/50435bbea1ca588b8b5ffb7b152197c6ee5c66a5)] **deps-dev:** Bump the eslint group with 2 updates ([#640](https://github.com/flex-development/mlly/issues/640))
73
+ - [[`09f9d63`](https://github.com/flex-development/mlly/commit/09f9d63a35d196e0be506965d7ea79431fe14b8e)] **deps-dev:** Bump the eslint group with 2 updates ([#664](https://github.com/flex-development/mlly/issues/664))
74
+ - [[`392d277`](https://github.com/flex-development/mlly/commit/392d2771e7ba91f039678019a04dd2b173fc7adb)] **deps-dev:** Bump the eslint group with 2 updates ([#683](https://github.com/flex-development/mlly/issues/683))
75
+ - [[`1fb39c6`](https://github.com/flex-development/mlly/commit/1fb39c621006533b680519ba4b42886d3c4f0b81)] **deps-dev:** Bump the eslint group with 2 updates ([#705](https://github.com/flex-development/mlly/issues/705))
76
+ - [[`379b520`](https://github.com/flex-development/mlly/commit/379b520baf2cfbba4ee49abae0c90f648e0b49f4)] **deps-dev:** Bump the typescript-eslint group with 2 updates ([#430](https://github.com/flex-development/mlly/issues/430))
77
+ - [[`d9a95b3`](https://github.com/flex-development/mlly/commit/d9a95b39b09ce2a33c8e7bacf5cc632dc5b51190)] **deps-dev:** Bump the typescript-eslint group with 2 updates ([#457](https://github.com/flex-development/mlly/issues/457))
78
+ - [[`2364a17`](https://github.com/flex-development/mlly/commit/2364a179eaeb07e90ed98198e54d51c27ec64123)] **deps-dev:** Bump the typescript-eslint group with 2 updates ([#472](https://github.com/flex-development/mlly/issues/472))
79
+ - [[`f99f3af`](https://github.com/flex-development/mlly/commit/f99f3af45e84af6205b94dafcf6e2c0f79554e78)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#641](https://github.com/flex-development/mlly/issues/641))
80
+ - [[`42298d2`](https://github.com/flex-development/mlly/commit/42298d27ccdc35703dfc77fe4c71b03798a5ede7)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#647](https://github.com/flex-development/mlly/issues/647))
81
+ - [[`44ccf6e`](https://github.com/flex-development/mlly/commit/44ccf6e6e8ebeb16e4db717ad7723447aac682a4)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#657](https://github.com/flex-development/mlly/issues/657))
82
+ - [[`7def4ca`](https://github.com/flex-development/mlly/commit/7def4ca5358136a26e3b0394fafc6041ba0e8fb8)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#662](https://github.com/flex-development/mlly/issues/662))
83
+ - [[`59fefdc`](https://github.com/flex-development/mlly/commit/59fefdcd07780b918e6cabfc8fcb3d13a066b399)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#666](https://github.com/flex-development/mlly/issues/666))
84
+ - [[`1a5efde`](https://github.com/flex-development/mlly/commit/1a5efde3050b6fe66772fd8853abed978dcaa328)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#674](https://github.com/flex-development/mlly/issues/674))
85
+ - [[`0afde29`](https://github.com/flex-development/mlly/commit/0afde299e22a7c58e0faaadf750c0db43f2f14d2)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#678](https://github.com/flex-development/mlly/issues/678))
86
+ - [[`cc2a5ba`](https://github.com/flex-development/mlly/commit/cc2a5bad1e2874492373465b899b81766a2bb30c)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#688](https://github.com/flex-development/mlly/issues/688))
87
+ - [[`18b8e4b`](https://github.com/flex-development/mlly/commit/18b8e4b70d5fdcb6835951a18a3f4b13070a257f)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#698](https://github.com/flex-development/mlly/issues/698))
88
+ - [[`a7bc9dc`](https://github.com/flex-development/mlly/commit/a7bc9dc274ff780f70f83ef07fd0fc47cb2073a8)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#708](https://github.com/flex-development/mlly/issues/708))
89
+ - [[`20933c9`](https://github.com/flex-development/mlly/commit/20933c9038559626d8aaa9df412bec5a4f8bcbfe)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#719](https://github.com/flex-development/mlly/issues/719))
90
+ - [[`a89c308`](https://github.com/flex-development/mlly/commit/a89c3083d3198f9785363947635371388902b1aa)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#736](https://github.com/flex-development/mlly/issues/736))
91
+ - [[`a2bca07`](https://github.com/flex-development/mlly/commit/a2bca07337dced10fb66347bb03511c9dc5c76ae)] **deps-dev:** bump the vitest group from 2.1.5 to 3.0.0-beta.2
92
+ - [[`caf95f0`](https://github.com/flex-development/mlly/commit/caf95f0cb46bec22b374d0070bda3a035ae7ad75)] **deps-dev:** Bump the vitest group with 2 updates ([#424](https://github.com/flex-development/mlly/issues/424))
93
+ - [[`465d627`](https://github.com/flex-development/mlly/commit/465d627ae324d8510cd11d101b3d1c3dd517994b)] **deps-dev:** Bump the vitest group with 2 updates ([#439](https://github.com/flex-development/mlly/issues/439))
94
+ - [[`3e5093a`](https://github.com/flex-development/mlly/commit/3e5093a848cdef7e7b7d3c418bfaf9b826787551)] **deps-dev:** bump the vitest group with 3 updates
95
+ - [[`0286c5c`](https://github.com/flex-development/mlly/commit/0286c5ca80ab245f8f131d775da7bc23ed468f85)] **deps-dev:** Bump the vitest group with 3 updates ([#658](https://github.com/flex-development/mlly/issues/658))
96
+ - [[`eae5a73`](https://github.com/flex-development/mlly/commit/eae5a7333c070b46f81f61090c42119ca6982cea)] **deps-dev:** Bump the vitest group with 3 updates ([#702](https://github.com/flex-development/mlly/issues/702))
97
+ - [[`2bea432`](https://github.com/flex-development/mlly/commit/2bea4329dab578360105a3c0b031a8ee77e95ec6)] **deps-dev:** Bump the vitest group with 3 updates ([#747](https://github.com/flex-development/mlly/issues/747))
98
+ - [[`b631473`](https://github.com/flex-development/mlly/commit/b631473418e8f8b912d9b06a94d070907c19678d)] **deps-dev:** bump typescript from 5.7.0-beta to 5.7.1-rc
99
+ - [[`31a007a`](https://github.com/flex-development/mlly/commit/31a007abcee9f8babd3871709242f0e9f94e7b8f)] **deps-dev:** bump typescript from 5.7.1-rc to 5.7.2
100
+ - [[`c24d62b`](https://github.com/flex-development/mlly/commit/c24d62b7b6f51a534a7353c6f1ac2e38eeb68d63)] **deps-dev:** Bump vercel from 31.2.3 to 31.3.1 ([#422](https://github.com/flex-development/mlly/issues/422))
101
+ - [[`92b2bb9`](https://github.com/flex-development/mlly/commit/92b2bb9f434f448871301fa60c22215e91460368)] **deps-dev:** Bump vercel from 31.3.1 to 31.4.0 ([#426](https://github.com/flex-development/mlly/issues/426))
102
+ - [[`88bfdc8`](https://github.com/flex-development/mlly/commit/88bfdc83d966805bc908543e12fd7e0167f39112)] **deps-dev:** Bump vercel from 31.4.0 to 32.0.1 ([#434](https://github.com/flex-development/mlly/issues/434))
103
+ - [[`94249a1`](https://github.com/flex-development/mlly/commit/94249a19ffeb529e16df1b154882a0d772430935)] **deps-dev:** Bump vercel from 32.0.1 to 32.1.0 ([#437](https://github.com/flex-development/mlly/issues/437))
104
+ - [[`185a50f`](https://github.com/flex-development/mlly/commit/185a50f489183d359395b05556a527f430d3f4b9)] **deps-dev:** Bump vite from 5.0.2 to 5.3.1 ([#632](https://github.com/flex-development/mlly/issues/632))
105
+ - [[`153556a`](https://github.com/flex-development/mlly/commit/153556ab9fb9eed241797776cc0d1411583bac67)] **deps-dev:** Bump vitepress from 1.0.0-rc.30 to 1.0.0-rc.31 ([#475](https://github.com/flex-development/mlly/issues/475))
106
+ - [[`80de810`](https://github.com/flex-development/mlly/commit/80de8108652ed5a8fc052f41edb787ac34021d63)] **deps-dev:** Bump vue from 3.3.8 to 3.3.9 ([#476](https://github.com/flex-development/mlly/issues/476))
107
+ - [[`4fe9805`](https://github.com/flex-development/mlly/commit/4fe9805f69b3e5d80e74639eab1a1dee49327b27)] **deps:** Bump @eslint/plugin-kit from 0.2.0 to 0.2.3 ([#704](https://github.com/flex-development/mlly/issues/704))
108
+ - [[`6216a1c`](https://github.com/flex-development/mlly/commit/6216a1c43152d2c543daa391c130976d20e86b6d)] **deps:** bump @flex-development/is-builtin from 3.1.0 to 3.2.0
109
+ - [[`ffc9f3c`](https://github.com/flex-development/mlly/commit/ffc9f3ccc02545de4ba4d4ae0464cb47351514c6)] **deps:** bump @flex-development/pathe from 3.0.0 to 4.0.0
110
+ - [[`478a886`](https://github.com/flex-development/mlly/commit/478a88604ee2f0bfec0090b1b8eda38b05c407a5)] **deps:** Bump nanoid from 3.3.7 to 3.3.8 ([#731](https://github.com/flex-development/mlly/issues/731))
111
+ - [[`f277c2a`](https://github.com/flex-development/mlly/commit/f277c2abb75c99e934c17d7c37f576def9308491)] **deps:** Bump tar from 6.1.13 to 6.2.1 ([#638](https://github.com/flex-development/mlly/issues/638))
112
+ - [[`643a1b7`](https://github.com/flex-development/mlly/commit/643a1b78c4cb098e0b12eb1d11aec5f683bc0126)] **deps:** Bump the flex-development group with 2 updates ([#449](https://github.com/flex-development/mlly/issues/449))
113
+ - [[`de05f9b`](https://github.com/flex-development/mlly/commit/de05f9b4ec0b55f3287afe5f777517d5ebb9488b)] **deps:** Bump vite from 5.4.1 to 5.4.8 ([#639](https://github.com/flex-development/mlly/issues/639))
114
+ - [[`4495eed`](https://github.com/flex-development/mlly/commit/4495eedae41d07ff40cc9c35b1c5e2ab8fecc92f)] **yarn:** bump yarn from 4.5.0 to 4.5.1
27
115
 
28
116
  ### :robot: Continuous Integration
29
117
 
30
- * [[@dependabot](https://github.com/dependabot)] add group `flex-development` ([5a4e169](https://github.com/flex-development/mlly/commit/5a4e169100278e773d78c8e2b1c3b921fb240394))
31
- * **deps:** Bump actions/setup-node from 3.7.0 to 3.8.0 ([#412](https://github.com/flex-development/mlly/issues/412)) ([3465e63](https://github.com/flex-development/mlly/commit/3465e63ba2cea348833de890a71a21ff16472897))
118
+ - [[`dca5bc0`](https://github.com/flex-development/mlly/commit/dca5bc0b763b47914706a3a7b0b81b2ba94479f2)] **deps:** Bump actions/cache from 3.3.1 to 3.3.2 ([#446](https://github.com/flex-development/mlly/issues/446))
119
+ - [[`2c4d3e2`](https://github.com/flex-development/mlly/commit/2c4d3e22c09011b091479bb3e343887459d6b6e8)] **deps:** Bump actions/cache from 4.0.2 to 4.1.0 ([#643](https://github.com/flex-development/mlly/issues/643))
120
+ - [[`902f4ba`](https://github.com/flex-development/mlly/commit/902f4ba2282652d8ff25252070f585e95513ceec)] **deps:** Bump actions/cache from 4.1.0 to 4.1.1 ([#650](https://github.com/flex-development/mlly/issues/650))
121
+ - [[`db65e89`](https://github.com/flex-development/mlly/commit/db65e890cc84e773fe460b442d2052a579129b2a)] **deps:** Bump actions/cache from 4.1.1 to 4.1.2 ([#668](https://github.com/flex-development/mlly/issues/668))
122
+ - [[`f1c63df`](https://github.com/flex-development/mlly/commit/f1c63df6fc900ae012cd1e2ad74ce3eedfe9ef18)] **deps:** Bump actions/cache from 4.1.2 to 4.2.0 ([#728](https://github.com/flex-development/mlly/issues/728))
123
+ - [[`6e81125`](https://github.com/flex-development/mlly/commit/6e81125edf4136da54fd5693557d774ccc3c5c5c)] **deps:** Bump actions/checkout from 3.5.3 to 3.6.0 ([#436](https://github.com/flex-development/mlly/issues/436))
124
+ - [[`984c741`](https://github.com/flex-development/mlly/commit/984c741cf04dce74d4844709375bb0c3afeeec90)] **deps:** Bump actions/checkout from 3.6.0 to 4.0.0 ([#442](https://github.com/flex-development/mlly/issues/442))
125
+ - [[`ba9aa11`](https://github.com/flex-development/mlly/commit/ba9aa11fcabd065948875ae666d0496f71ed1a2f)] **deps:** Bump actions/checkout from 4.0.0 to 4.1.0 ([#462](https://github.com/flex-development/mlly/issues/462))
126
+ - [[`99c6dec`](https://github.com/flex-development/mlly/commit/99c6decdbcce2edb3f15ad555a5e039665bb14b1)] **deps:** Bump actions/checkout from 4.1.0 to 4.1.1 ([#464](https://github.com/flex-development/mlly/issues/464))
127
+ - [[`25f1a7b`](https://github.com/flex-development/mlly/commit/25f1a7b831513b15f2cf9f5212ad9301396c82d5)] **deps:** Bump actions/checkout from 4.1.7 to 4.2.0 ([#644](https://github.com/flex-development/mlly/issues/644))
128
+ - [[`083022e`](https://github.com/flex-development/mlly/commit/083022e0f91041f197d873c17d820c0f88582997)] **deps:** Bump actions/checkout from 4.2.0 to 4.2.1 ([#645](https://github.com/flex-development/mlly/issues/645))
129
+ - [[`6deb8ab`](https://github.com/flex-development/mlly/commit/6deb8ab3d934e52e200170bc96f4664fdba105a2)] **deps:** Bump actions/checkout from 4.2.1 to 4.2.2 ([#670](https://github.com/flex-development/mlly/issues/670))
130
+ - [[`809831f`](https://github.com/flex-development/mlly/commit/809831f1015f4af7c5e526c7311064658dcd155d)] **deps:** Bump actions/create-github-app-token from 1.11.0 to 1.11.1 ([#746](https://github.com/flex-development/mlly/issues/746))
131
+ - [[`ab5ad98`](https://github.com/flex-development/mlly/commit/ab5ad98a9d69366b67d9c0f92c6946822b9ec0eb)] **deps:** Bump actions/create-github-app-token from 1.5.1 to 1.6.0 ([#470](https://github.com/flex-development/mlly/issues/470))
132
+ - [[`5c0b143`](https://github.com/flex-development/mlly/commit/5c0b143d90906766fa2e52787f9abf7d7bf7b6c6)] **deps:** Bump actions/github-script from 6.4.1 to 7.0.1 ([#468](https://github.com/flex-development/mlly/issues/468))
133
+ - [[`d38d0dd`](https://github.com/flex-development/mlly/commit/d38d0ddd4f679b0e0af884f4094fd116b09b86b1)] **deps:** Bump actions/setup-node from 3.8.0 to 3.8.1 ([#428](https://github.com/flex-development/mlly/issues/428))
134
+ - [[`523738c`](https://github.com/flex-development/mlly/commit/523738c1d11b0120ebcd1e77037ce153612e6f12)] **deps:** Bump actions/setup-node from 4.0.4 to 4.1.0 ([#671](https://github.com/flex-development/mlly/issues/671))
135
+ - [[`2053d14`](https://github.com/flex-development/mlly/commit/2053d14a8924c2814bcbd4fde123fad278767404)] **deps:** Bump actions/upload-artifact from 3.1.2 to 3.1.3 ([#445](https://github.com/flex-development/mlly/issues/445))
136
+ - [[`7e6d2ef`](https://github.com/flex-development/mlly/commit/7e6d2ef141f80a5264361bfd963631aa76d16bd9)] **deps:** Bump actions/upload-artifact from 4.4.0 to 4.4.1 ([#646](https://github.com/flex-development/mlly/issues/646))
137
+ - [[`acabed9`](https://github.com/flex-development/mlly/commit/acabed975122203adb73ddf610b24e6c8c4360d3)] **deps:** Bump actions/upload-artifact from 4.4.1 to 4.4.2 ([#649](https://github.com/flex-development/mlly/issues/649))
138
+ - [[`8399b58`](https://github.com/flex-development/mlly/commit/8399b58090033316c6b2688c7eb23212d62f52bf)] **deps:** Bump actions/upload-artifact from 4.4.2 to 4.4.3 ([#652](https://github.com/flex-development/mlly/issues/652))
139
+ - [[`1889361`](https://github.com/flex-development/mlly/commit/18893617e6c6dcf17c119e98c292bfda8eba823d)] **deps:** Bump actions/upload-artifact from 4.4.3 to 4.5.0 ([#733](https://github.com/flex-development/mlly/issues/733))
140
+ - [[`2322a99`](https://github.com/flex-development/mlly/commit/2322a99874ce328214e34ee835ffd6fc81215c34)] **deps:** Bump codecov/codecov-action from 4.5.0 to 4.6.0 ([#642](https://github.com/flex-development/mlly/issues/642))
141
+ - [[`2d4003d`](https://github.com/flex-development/mlly/commit/2d4003d11753a337ee4747c69223f4ecbbddf3b3)] **deps:** Bump codecov/codecov-action from 4.6.0 to 5.0.2 ([#707](https://github.com/flex-development/mlly/issues/707))
142
+ - [[`0674259`](https://github.com/flex-development/mlly/commit/06742592b68fa589945b8186b5578610e1548821)] **deps:** Bump codecov/codecov-action from 5.0.2 to 5.0.6 ([#715](https://github.com/flex-development/mlly/issues/715))
143
+ - [[`8c5551c`](https://github.com/flex-development/mlly/commit/8c5551cec349f97f8e9d853b244c9f11a0c5b3df)] **deps:** Bump codecov/codecov-action from 5.0.6 to 5.0.7 ([#716](https://github.com/flex-development/mlly/issues/716))
144
+ - [[`2ade59d`](https://github.com/flex-development/mlly/commit/2ade59d89571bf1693cd4c9b27bff96d311071d1)] **deps:** Bump codecov/codecov-action from 5.0.7 to 5.1.1 ([#729](https://github.com/flex-development/mlly/issues/729))
145
+ - [[`5b7b6ab`](https://github.com/flex-development/mlly/commit/5b7b6abf275bb4de2eb244d2cbad67a890adc96c)] **deps:** Bump codecov/codecov-action from 5.1.1 to 5.1.2 ([#734](https://github.com/flex-development/mlly/issues/734))
146
+ - [[`13925af`](https://github.com/flex-development/mlly/commit/13925afbe340d287c646fb28042f1948abc3c45f)] **deps:** Bump crazy-max/ghaction-import-gpg from 5.3.0 to 5.4.0 ([#443](https://github.com/flex-development/mlly/issues/443))
147
+ - [[`1c9dba9`](https://github.com/flex-development/mlly/commit/1c9dba9370780c756f37ce200e7e1ce958ba838b)] **deps:** Bump crazy-max/ghaction-import-gpg from 5.4.0 to 6.0.0 ([#452](https://github.com/flex-development/mlly/issues/452))
148
+ - [[`c6745b7`](https://github.com/flex-development/mlly/commit/c6745b7e1891aabf6261e598cb3340b3a9527783)] **deps:** Bump crazy-max/ghaction-import-gpg from 6.1.0 to 6.2.0 ([#673](https://github.com/flex-development/mlly/issues/673))
149
+ - [[`2290cc2`](https://github.com/flex-development/mlly/commit/2290cc2d0218b69bcd78f526f7b57d9e2240a5cb)] **deps:** Bump dessant/lock-threads from 4.0.1 to 5.0.1 ([#469](https://github.com/flex-development/mlly/issues/469))
150
+ - [[`0e0d4a6`](https://github.com/flex-development/mlly/commit/0e0d4a6c7591784120cc5bec745e268a9244fcb0)] **deps:** Bump jchen1/wait-for-green from 1.0.8 to 2.0.0 ([#672](https://github.com/flex-development/mlly/issues/672))
151
+ - [[`88c454f`](https://github.com/flex-development/mlly/commit/88c454fc125ed54aa6359525de821163f21e6483)] **workflows:** [`ci`] fix `gitguardian` job
152
+ - [[`15c6b9c`](https://github.com/flex-development/mlly/commit/15c6b9cfddf2bf87311784a8ff8ad733e9181f5a)] **workflows:** [`ci`] fix coverage failure check
32
153
 
154
+ ### :sparkles: Features
33
155
 
34
- ### :pencil: Documentation
156
+ - [[`b5bfc6d`](https://github.com/flex-development/mlly/commit/b5bfc6ddb453beccd8589f089335b9730f71ecc4)] empty subpath pattern matches
157
+ - [[`ae7b2ec`](https://github.com/flex-development/mlly/commit/ae7b2ecb5ec6e609f5a069977d4fa82d414f8e5f)] **lib:** `toUrl`
158
+ - [[`b5ab3dc`](https://github.com/flex-development/mlly/commit/b5ab3dc4cbdc990184409d1eb2aa5a6f3d881014)] **utils:** `getSource`
35
159
 
36
- * **utils:** [`resolveModule`] fix valid npm package name note ([e869100](https://github.com/flex-development/mlly/commit/e8691007ada207792915130997917d98d5aebc19))
160
+ ### :bug: Fixes
37
161
 
162
+ - [[`23ddb81`](https://github.com/flex-development/mlly/commit/23ddb81217d50ca72bc1116abc757510abb1e534)] **utils:** [`isDirectory`] convert file url strings to `URL` instances
163
+ - [[`e4e68c7`](https://github.com/flex-development/mlly/commit/e4e68c7cae0c6f1b9c003474201757e42a3d3f4a)] **utils:** [`isFile`] convert file url strings to `URL` instances
38
164
 
39
- ### :bug: Fixes
165
+ ### :house_with_garden: Housekeeping
166
+
167
+ - [[`ca57108`](https://github.com/flex-development/mlly/commit/ca57108ca7246c5b8f733e7a3a7fc85cfb7e445e)] [tsconfig] extend `@tsconfig/strictest/tsconfig`
168
+ - [[`402bed6`](https://github.com/flex-development/mlly/commit/402bed6eb6ccd3ca6f13595e1a05fe04be84c56c)] `.mts` migration
169
+ - [[`484eebf`](https://github.com/flex-development/mlly/commit/484eebf97b387337aec5d6f6d374e14f39b9ebcc)] refactor project architecture
170
+ - [[`b93a82c`](https://github.com/flex-development/mlly/commit/b93a82cad0751e98ea4a8f86162dbff58d87df66)] update project architecture
171
+
172
+ ### :mechanical_arm: Refactors
40
173
 
41
- * **utils:** [`toBareSpecifier`] specifier conversion ([4d9fdaf](https://github.com/flex-development/mlly/commit/4d9fdaff221109a6fd90fc046fdcf61296bccbd0))
174
+ - [[`711d283`](https://github.com/flex-development/mlly/commit/711d2837e427d008c8e7f560eba24ca68eb62dc1)] async api
175
+ - [[`eea308c`](https://github.com/flex-development/mlly/commit/eea308ce4d2485fd2833053f10b09f418684e04d)] api
176
+ - [[`2f77c6e`](https://github.com/flex-development/mlly/commit/2f77c6ebb4a0997251b63cada0979f0eb1c957eb)] **lib:** `toRelativeSpecifier`
177
+ - [[`b6dfec6`](https://github.com/flex-development/mlly/commit/b6dfec64279fa0f54389bf204c69b2dbe0778871)] **utils:** use native `fetch`
42
178
 
179
+ ## [1.0.0-alpha.18](https://github.com/flex-development/mlly/compare/1.0.0-alpha.17...1.0.0-alpha.18) (2023-08-14)
180
+
181
+ ### ⚠ BREAKING CHANGES
182
+
183
+ - **ts:** use `export type *`
184
+
185
+ ### :package: Build
186
+
187
+ - [[`6e3e9c7`](https://github.com/flex-development/mlly/commit/6e3e9c71ecd58f20a74b782c629914ecb404f5d8)] **deps-dev:** Bump @commitlint/cli from 17.6.7 to 17.7.0 ([#405](https://github.com/flex-development/mlly/issues/405))
188
+ - [[`060725c`](https://github.com/flex-development/mlly/commit/060725c8d5c6c8002f197e360697a22c35bc1145)] **deps-dev:** Bump @commitlint/cli from 17.7.0 to 17.7.1 ([#409](https://github.com/flex-development/mlly/issues/409))
189
+ - [[`772778a`](https://github.com/flex-development/mlly/commit/772778a3df76d005e9b765275b275d8e1e91498a)] **deps-dev:** Bump cspell from 7.0.1-alpha.8 to 7.0.1-alpha.9 ([#408](https://github.com/flex-development/mlly/issues/408))
190
+ - [[`d3804d7`](https://github.com/flex-development/mlly/commit/d3804d76d76afbc5a9172a1cacce22f6c8a42a8c)] **deps-dev:** Bump esbuild from 0.19.0 to 0.19.1 ([#410](https://github.com/flex-development/mlly/issues/410))
191
+ - [[`eaf8d51`](https://github.com/flex-development/mlly/commit/eaf8d5182f47c6855f80eed73e25f0e3f0dba1e4)] **deps-dev:** Bump esbuild from 0.19.1 to 0.19.2 ([#416](https://github.com/flex-development/mlly/issues/416))
192
+ - [[`a3374af`](https://github.com/flex-development/mlly/commit/a3374af2b18028ff56cd17ef4b145169fff1e640)] **deps-dev:** Bump eslint from 8.46.0 to 8.47.0 ([#411](https://github.com/flex-development/mlly/issues/411))
193
+ - [[`c2dbf48`](https://github.com/flex-development/mlly/commit/c2dbf483ec9ce4581306c7c41608dd2fa9a04631)] **deps-dev:** Bump eslint-import-resolver-typescript from 3.5.5 to 3.6.0 ([#406](https://github.com/flex-development/mlly/issues/406))
194
+ - [[`f0892eb`](https://github.com/flex-development/mlly/commit/f0892eb5ec7bc66311b168bf118cb4d11b0b2185)] **deps-dev:** Bump eslint-plugin-vue from 9.16.1 to 9.17.0 ([#404](https://github.com/flex-development/mlly/issues/404))
195
+ - [[`6f2a71d`](https://github.com/flex-development/mlly/commit/6f2a71d2aedc265ac79770a77716a073a53f3407)] **deps-dev:** Bump graphql from 16.7.1 to 16.8.0 ([#415](https://github.com/flex-development/mlly/issues/415))
196
+ - [[`a2443bd`](https://github.com/flex-development/mlly/commit/a2443bd75c4386601b8c67f106a5a0656ce1730b)] **deps-dev:** Bump lint-staged from 13.2.3 to 14.0.0 ([#417](https://github.com/flex-development/mlly/issues/417))
197
+ - [[`f6e4fb7`](https://github.com/flex-development/mlly/commit/f6e4fb74e86c98b784b55ef8880259fd1a1cfb7f)] **deps-dev:** Bump the flex-development group with 1 update ([#403](https://github.com/flex-development/mlly/issues/403))
198
+ - [[`099b5ae`](https://github.com/flex-development/mlly/commit/099b5aec18c9bb92608619d4e0c8259533ac6882)] **deps-dev:** Bump the typescript-eslint group with 2 updates ([#413](https://github.com/flex-development/mlly/issues/413))
199
+ - [[`1992970`](https://github.com/flex-development/mlly/commit/199297040a08963491aef355fbfcf7c0c0120e9b)] **deps:** bump @flex-development/tutils from 6.0.0-alpha.20 to 6.0.0-alpha.21
200
+ - [[`41be3a2`](https://github.com/flex-development/mlly/commit/41be3a267ea674fec6a2e2092c350a6783f0c026)] **deps:** Bump the flex-development group with 1 update ([#407](https://github.com/flex-development/mlly/issues/407))
201
+ - [[`2d07755`](https://github.com/flex-development/mlly/commit/2d07755998172d705f92c6d1669bc1b0df8fc2fc)] **deps:** Bump the flex-development group with 1 update ([#414](https://github.com/flex-development/mlly/issues/414))
202
+ - [[`e0a1dce`](https://github.com/flex-development/mlly/commit/e0a1dce59094797a7bc0ddf7b26840a43765155c)] **ts:** use `export type *`
203
+
204
+ ### :robot: Continuous Integration
205
+
206
+ - [[`5a4e169`](https://github.com/flex-development/mlly/commit/5a4e169100278e773d78c8e2b1c3b921fb240394)] [[@dependabot](https://github.com/dependabot)] add group `flex-development`
207
+ - [[`3465e63`](https://github.com/flex-development/mlly/commit/3465e63ba2cea348833de890a71a21ff16472897)] **deps:** Bump actions/setup-node from 3.7.0 to 3.8.0 ([#412](https://github.com/flex-development/mlly/issues/412))
208
+
209
+ ### :pencil: Documentation
210
+
211
+ - [[`e869100`](https://github.com/flex-development/mlly/commit/e8691007ada207792915130997917d98d5aebc19)] **utils:** [`resolveModule`] fix valid npm package name note
212
+
213
+ ### :bug: Fixes
214
+
215
+ - [[`4d9fdaf`](https://github.com/flex-development/mlly/commit/4d9fdaff221109a6fd90fc046fdcf61296bccbd0)] **utils:** [`toBareSpecifier`] specifier conversion
43
216
 
44
217
  ### :house_with_garden: Housekeeping
45
218
 
46
- * **tests:** remove `serve.json` ([7e6d3b8](https://github.com/flex-development/mlly/commit/7e6d3b8cfb0915cb0ed4dfd37f4d21c3da926545))
219
+ - [[`7e6d3b8`](https://github.com/flex-development/mlly/commit/7e6d3b8cfb0915cb0ed4dfd37f4d21c3da926545)] **tests:** remove `serve.json`
47
220
 
48
221
  ## [1.0.0-alpha.17](https://github.com/flex-development/mlly/compare/1.0.0-alpha.16...1.0.0-alpha.17) (2023-08-08)
49
222
 
50
-
51
223
  ### :package: Build
52
224
 
53
- * ensure resolved source map url is absolute ([1c2f10d](https://github.com/flex-development/mlly/commit/1c2f10d50b305a6beaab9fd526da2a008dd753fc))
54
- * **deps-dev:** Bump esbuild from 0.18.19 to 0.19.0 ([#399](https://github.com/flex-development/mlly/issues/399)) ([ad57979](https://github.com/flex-development/mlly/commit/ad579797a21b739a88e1804a0f75ab14c1db97da))
55
- * **deps-dev:** Bump the typescript-eslint group with 2 updates ([#396](https://github.com/flex-development/mlly/issues/396)) ([c65b229](https://github.com/flex-development/mlly/commit/c65b229ab16df80422fcf506732e32ebe1f88a92))
56
- * **deps-dev:** Bump vercel from 31.2.2 to 31.2.3 ([#400](https://github.com/flex-development/mlly/issues/400)) ([2c26647](https://github.com/flex-development/mlly/commit/2c26647c3a6f9be48e03e42cf78216f4ead7a0cb))
57
- * **deps-dev:** Bump vite from 4.4.8 to 4.4.9 ([#398](https://github.com/flex-development/mlly/issues/398)) ([477d65e](https://github.com/flex-development/mlly/commit/477d65e745237bf804a903de75d4aa3f19ae59f3))
58
- * **deps:** Bump @flex-development/tutils from 6.0.0-alpha.15 to 6.0.0-alpha.16 ([#397](https://github.com/flex-development/mlly/issues/397)) ([f0f36f0](https://github.com/flex-development/mlly/commit/f0f36f0a029ae5d3553fb225f5c16fe65f53b0ea))
59
- * **deps:** Bump @flex-development/tutils from 6.0.0-alpha.16 to 6.0.0-alpha.17 ([#401](https://github.com/flex-development/mlly/issues/401)) ([2e621ce](https://github.com/flex-development/mlly/commit/2e621ce4941e0454174b089ba5a92cad55d3b572))
60
- * **deps:** bump @flex-development/tutils from 6.0.0-alpha.17 to 6.0.0-alpha.18 ([66db112](https://github.com/flex-development/mlly/commit/66db1127dbdff30a056c3d76e35c37029e1451d0))
225
+ - [[`1c2f10d`](https://github.com/flex-development/mlly/commit/1c2f10d50b305a6beaab9fd526da2a008dd753fc)] ensure resolved source map url is absolute
226
+ - [[`ad57979`](https://github.com/flex-development/mlly/commit/ad579797a21b739a88e1804a0f75ab14c1db97da)] **deps-dev:** Bump esbuild from 0.18.19 to 0.19.0 ([#399](https://github.com/flex-development/mlly/issues/399))
227
+ - [[`c65b229`](https://github.com/flex-development/mlly/commit/c65b229ab16df80422fcf506732e32ebe1f88a92)] **deps-dev:** Bump the typescript-eslint group with 2 updates ([#396](https://github.com/flex-development/mlly/issues/396))
228
+ - [[`2c26647`](https://github.com/flex-development/mlly/commit/2c26647c3a6f9be48e03e42cf78216f4ead7a0cb)] **deps-dev:** Bump vercel from 31.2.2 to 31.2.3 ([#400](https://github.com/flex-development/mlly/issues/400))
229
+ - [[`477d65e`](https://github.com/flex-development/mlly/commit/477d65e745237bf804a903de75d4aa3f19ae59f3)] **deps-dev:** Bump vite from 4.4.8 to 4.4.9 ([#398](https://github.com/flex-development/mlly/issues/398))
230
+ - [[`f0f36f0`](https://github.com/flex-development/mlly/commit/f0f36f0a029ae5d3553fb225f5c16fe65f53b0ea)] **deps:** Bump @flex-development/tutils from 6.0.0-alpha.15 to 6.0.0-alpha.16 ([#397](https://github.com/flex-development/mlly/issues/397))
231
+ - [[`2e621ce`](https://github.com/flex-development/mlly/commit/2e621ce4941e0454174b089ba5a92cad55d3b572)] **deps:** Bump @flex-development/tutils from 6.0.0-alpha.16 to 6.0.0-alpha.17 ([#401](https://github.com/flex-development/mlly/issues/401))
232
+ - [[`66db112`](https://github.com/flex-development/mlly/commit/66db1127dbdff30a056c3d76e35c37029e1451d0)] **deps:** bump @flex-development/tutils from 6.0.0-alpha.17 to 6.0.0-alpha.18
61
233
 
62
234
  ## [1.0.0-alpha.16](https://github.com/flex-development/mlly/compare/1.0.0-alpha.15...1.0.0-alpha.16) (2023-08-07)
63
235
 
64
-
65
236
  ### ⚠ BREAKING CHANGES
66
237
 
67
- * **nvm:** require `>=16.20.0`
238
+ - **nvm:** require `>=16.20.0`
68
239
 
69
240
  ### :package: Build
70
241
 
71
- * **deps-dev:** Bump @commitlint/cli from 17.4.4 to 17.5.0 ([#241](https://github.com/flex-development/mlly/issues/241)) ([e0a6e00](https://github.com/flex-development/mlly/commit/e0a6e00f173c7e3f43333c871bbd81a7997a1225))
72
- * **deps-dev:** Bump @commitlint/cli from 17.5.1 to 17.6.1 ([#301](https://github.com/flex-development/mlly/issues/301)) ([acaef67](https://github.com/flex-development/mlly/commit/acaef673b2f6ec47815d2a0b4128573c8059a48e))
73
- * **deps-dev:** Bump @commitlint/cli from 17.6.1 to 17.6.5 ([#355](https://github.com/flex-development/mlly/issues/355)) ([ae6f90d](https://github.com/flex-development/mlly/commit/ae6f90dddb6b13e87fdd415c5e31c0c9d60fc269))
74
- * **deps-dev:** Bump @docsearch/react from 3.3.3 to 3.3.4 ([#305](https://github.com/flex-development/mlly/issues/305)) ([6a637f7](https://github.com/flex-development/mlly/commit/6a637f7a411f01e9308a5719785bf1453ceaa3fe))
75
- * **deps-dev:** Bump @docsearch/react from 3.3.4 to 3.5.0 ([#360](https://github.com/flex-development/mlly/issues/360)) ([938227d](https://github.com/flex-development/mlly/commit/938227d3e863ae2144ca66679e304ff87dcf3073))
76
- * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.0 to 8.0.0-alpha.1 ([#231](https://github.com/flex-development/mlly/issues/231)) ([329b3fc](https://github.com/flex-development/mlly/commit/329b3fc17f79232bec89cfc66068cab7781895fa))
77
- * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.1 to 8.0.0-alpha.2 ([#253](https://github.com/flex-development/mlly/issues/253)) ([1aebe3f](https://github.com/flex-development/mlly/commit/1aebe3fd0753ae3e930494bfd39a0e1031259167))
78
- * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.2 to 8.0.0-beta.0 ([#326](https://github.com/flex-development/mlly/issues/326)) ([10cf651](https://github.com/flex-development/mlly/commit/10cf6514c621d71322fb41d6c43c0fa8feabad15))
79
- * **deps-dev:** Bump @flex-development/decorator-regex from 1.0.0 to 2.0.0 ([#388](https://github.com/flex-development/mlly/issues/388)) ([cf41fbf](https://github.com/flex-development/mlly/commit/cf41fbf0a3006de68645608504cc977d8243bbac))
80
- * **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.10 to 1.0.0-alpha.12 ([#188](https://github.com/flex-development/mlly/issues/188)) ([4a858bc](https://github.com/flex-development/mlly/commit/4a858bc36b61d260f28ec3c58591ffaac9797c97))
81
- * **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.9 to 1.0.0-alpha.10 ([#185](https://github.com/flex-development/mlly/issues/185)) ([a864fd3](https://github.com/flex-development/mlly/commit/a864fd3576af29c61030b182df9cb23243d4d7d3))
82
- * **deps-dev:** Bump @flex-development/esm-types from 1.0.0 to 2.0.0 ([#385](https://github.com/flex-development/mlly/issues/385)) ([750b486](https://github.com/flex-development/mlly/commit/750b486bfc35811b251bc1f28d4fb09d5d0bdc90))
83
- * **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.15 to 1.0.0-alpha.16 ([#183](https://github.com/flex-development/mlly/issues/183)) ([262edf8](https://github.com/flex-development/mlly/commit/262edf89eaad7b90bbccae34ce36bc584dc36d1b))
84
- * **deps-dev:** bump @flex-development/tutils from 6.0.0-alpha.10 to 6.0.0-alpha.15 ([9bef0cf](https://github.com/flex-development/mlly/commit/9bef0cf0ca39a949c904b5d093c4dcbcde638e2d))
85
- * **deps-dev:** Bump @graphql-eslint/eslint-plugin from 3.16.1 to 3.16.2 ([#243](https://github.com/flex-development/mlly/issues/243)) ([85027dc](https://github.com/flex-development/mlly/commit/85027dce967946f6b48eff128276432d3bdc9be9))
86
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.0 to 5.54.1 ([#189](https://github.com/flex-development/mlly/issues/189)) ([fd1ddc4](https://github.com/flex-development/mlly/commit/fd1ddc4de90650261390984a5ce06d28e6c2ef54))
87
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.1 to 5.55.0 ([#208](https://github.com/flex-development/mlly/issues/208)) ([5f9ee94](https://github.com/flex-development/mlly/commit/5f9ee94483053685c3b7a94d807c42dc49c9e51f))
88
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.55.0 to 5.56.0 ([#232](https://github.com/flex-development/mlly/issues/232)) ([9123c31](https://github.com/flex-development/mlly/commit/9123c3140ffa0092f55daa7ad0e4ec714b1eee0d))
89
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.59.1 ([#294](https://github.com/flex-development/mlly/issues/294)) ([e33bee4](https://github.com/flex-development/mlly/commit/e33bee44fbe3f07f10767714f73f0555327475ab))
90
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.1 to 5.59.2 ([#313](https://github.com/flex-development/mlly/issues/313)) ([f977af8](https://github.com/flex-development/mlly/commit/f977af8f1f7620d542af1c8175527b02b08c2163))
91
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.2 to 5.59.6 ([#341](https://github.com/flex-development/mlly/issues/341)) ([dcb58b9](https://github.com/flex-development/mlly/commit/dcb58b93229bb3287f36e27ae747da7e70978121))
92
- * **deps-dev:** Bump @typescript-eslint/parser from 5.54.0 to 5.54.1 ([#190](https://github.com/flex-development/mlly/issues/190)) ([977c378](https://github.com/flex-development/mlly/commit/977c37876253716cc2ff2c9391b7e55d936261b7))
93
- * **deps-dev:** Bump @typescript-eslint/parser from 5.54.1 to 5.55.0 ([#210](https://github.com/flex-development/mlly/issues/210)) ([4654183](https://github.com/flex-development/mlly/commit/465418348548029ff7d0f1a01bbd136e08160767))
94
- * **deps-dev:** Bump @typescript-eslint/parser from 5.55.0 to 5.56.0 ([#242](https://github.com/flex-development/mlly/issues/242)) ([eb28ee1](https://github.com/flex-development/mlly/commit/eb28ee122b6c5aac74287f851932e83168c8a409))
95
- * **deps-dev:** Bump @typescript-eslint/parser from 5.57.1 to 5.59.1 ([#296](https://github.com/flex-development/mlly/issues/296)) ([c1285f7](https://github.com/flex-development/mlly/commit/c1285f72b7169c3dd0c09772e47098a260cd5b77))
96
- * **deps-dev:** Bump @typescript-eslint/parser from 5.59.1 to 5.59.2 ([#314](https://github.com/flex-development/mlly/issues/314)) ([c85ed3b](https://github.com/flex-development/mlly/commit/c85ed3b24505d236c8ccbeac47f3bccccd8a347a))
97
- * **deps-dev:** Bump @vitest/coverage-c8 from 0.29.2 to 0.29.3 ([#225](https://github.com/flex-development/mlly/issues/225)) ([70a3438](https://github.com/flex-development/mlly/commit/70a3438386afaaedf21a5cc9fd96d9e15a043fbf))
98
- * **deps-dev:** Bump @vitest/coverage-c8 from 0.29.3 to 0.29.7 ([#238](https://github.com/flex-development/mlly/issues/238)) ([860ed19](https://github.com/flex-development/mlly/commit/860ed19ecb8466639ce6ba9fee9c23c8f1247e46))
99
- * **deps-dev:** Bump @vitest/coverage-c8 from 0.30.0 to 0.30.1 ([#298](https://github.com/flex-development/mlly/issues/298)) ([4916991](https://github.com/flex-development/mlly/commit/4916991b03c5307f30391cc7a304567b1405b7e9))
100
- * **deps-dev:** Bump @vitest/coverage-c8 from 0.30.1 to 0.31.0 ([#320](https://github.com/flex-development/mlly/issues/320)) ([0f60595](https://github.com/flex-development/mlly/commit/0f6059578124f3fb0b02afc4db0df80133617c71))
101
- * **deps-dev:** Bump @vitest/ui from 0.29.2 to 0.29.3 ([#214](https://github.com/flex-development/mlly/issues/214)) ([d21cbb4](https://github.com/flex-development/mlly/commit/d21cbb4ff3d352a892b524021a577a69ab1a8467))
102
- * **deps-dev:** Bump @vitest/ui from 0.29.3 to 0.29.7 ([#237](https://github.com/flex-development/mlly/issues/237)) ([3493ab3](https://github.com/flex-development/mlly/commit/3493ab3f0cf0e054d32136b72af72de406148c87))
103
- * **deps-dev:** Bump @vitest/ui from 0.29.7 to 0.29.8 ([#260](https://github.com/flex-development/mlly/issues/260)) ([dba6d04](https://github.com/flex-development/mlly/commit/dba6d04994e0222bc39272f08571aca5ffdd039e))
104
- * **deps-dev:** Bump @vitest/ui from 0.30.0 to 0.30.1 ([#304](https://github.com/flex-development/mlly/issues/304)) ([7fc2393](https://github.com/flex-development/mlly/commit/7fc239364053b8c6541bcde451b89d18c7fdc87c))
105
- * **deps-dev:** Bump @vitest/ui from 0.30.1 to 0.31.0 ([#321](https://github.com/flex-development/mlly/issues/321)) ([6a927c8](https://github.com/flex-development/mlly/commit/6a927c89a174322e62d44fec0909dd0d47580a78))
106
- * **deps-dev:** Bump @vue/runtime-core from 3.2.47 to 3.3.4 ([#340](https://github.com/flex-development/mlly/issues/340)) ([4bfe81e](https://github.com/flex-development/mlly/commit/4bfe81eb19b463530b39eb83383437cf2f76ffc4))
107
- * **deps-dev:** Bump algoliasearch from 4.15.0 to 4.16.0 ([#248](https://github.com/flex-development/mlly/issues/248)) ([1a0b232](https://github.com/flex-development/mlly/commit/1a0b232ebe70459fe2a2ab675af7a8989b05cfbf))
108
- * **deps-dev:** Bump algoliasearch from 4.16.0 to 4.17.0 ([#274](https://github.com/flex-development/mlly/issues/274)) ([1f68805](https://github.com/flex-development/mlly/commit/1f68805569121b880c569e23573c5a8ec08b884d))
109
- * **deps-dev:** Bump conventional-changelog-writer from 5.0.1 to 6.0.0 ([#361](https://github.com/flex-development/mlly/issues/361)) ([8d5584a](https://github.com/flex-development/mlly/commit/8d5584a92ca7d9937bbbd3ef262fd4c7f663fd9f))
110
- * **deps-dev:** Bump conventional-recommended-bump from 6.1.0 to 7.0.1 ([#359](https://github.com/flex-development/mlly/issues/359)) ([9aa737c](https://github.com/flex-development/mlly/commit/9aa737c9aa4e42806639561f64670a9d8baeb1e0))
111
- * **deps-dev:** Bump cspell from 6.27.0 to 6.28.0 ([#182](https://github.com/flex-development/mlly/issues/182)) ([7fb15d6](https://github.com/flex-development/mlly/commit/7fb15d6a2f13fda08dc4e55ea5875168d8225cd9))
112
- * **deps-dev:** Bump cspell from 6.28.0 to 6.29.3 ([#212](https://github.com/flex-development/mlly/issues/212)) ([a3b9ac1](https://github.com/flex-development/mlly/commit/a3b9ac150b9fef9061325dea80db9aa2f106068a))
113
- * **deps-dev:** Bump cspell from 6.29.3 to 6.30.0 ([#220](https://github.com/flex-development/mlly/issues/220)) ([da46d04](https://github.com/flex-development/mlly/commit/da46d04942b1e1a5d51231ef635f21413b9e3b20))
114
- * **deps-dev:** Bump cspell from 6.30.0 to 6.30.2 ([#235](https://github.com/flex-development/mlly/issues/235)) ([70ff885](https://github.com/flex-development/mlly/commit/70ff8851155f6758ea304c96ddad25d693012969))
115
- * **deps-dev:** Bump cspell from 6.30.2 to 6.31.1 ([#251](https://github.com/flex-development/mlly/issues/251)) ([a891496](https://github.com/flex-development/mlly/commit/a891496e5ab92a00579438b53ccd3398f7ede008))
116
- * **deps-dev:** Bump esbuild from 0.17.10 to 0.17.11 ([#186](https://github.com/flex-development/mlly/issues/186)) ([092fb75](https://github.com/flex-development/mlly/commit/092fb7520b88609641fde9df718d56a1479e86c0))
117
- * **deps-dev:** Bump esbuild from 0.17.11 to 0.17.12 ([#224](https://github.com/flex-development/mlly/issues/224)) ([4e14757](https://github.com/flex-development/mlly/commit/4e147575e00ec8a937b5ad4704db9a2e93d54877))
118
- * **deps-dev:** Bump esbuild from 0.17.12 to 0.17.14 ([#256](https://github.com/flex-development/mlly/issues/256)) ([5deedc6](https://github.com/flex-development/mlly/commit/5deedc63e0c3050cd6f9c5705409382706027e09))
119
- * **deps-dev:** Bump esbuild from 0.17.16 to 0.17.18 ([#318](https://github.com/flex-development/mlly/issues/318)) ([9e8ab13](https://github.com/flex-development/mlly/commit/9e8ab13ce9247cb249ea0fc131cc3ecd52c20038))
120
- * **deps-dev:** Bump esbuild from 0.17.18 to 0.17.19 ([#343](https://github.com/flex-development/mlly/issues/343)) ([2b690d5](https://github.com/flex-development/mlly/commit/2b690d59ad7d67e2b787b23482beb43bf647819a))
121
- * **deps-dev:** Bump esbuild from 0.18.18 to 0.18.19 ([#394](https://github.com/flex-development/mlly/issues/394)) ([bdb3782](https://github.com/flex-development/mlly/commit/bdb3782c755a30d7e7d3d2bfc20f7ee602a9a596))
122
- * **deps-dev:** Bump eslint from 8.35.0 to 8.36.0 ([#204](https://github.com/flex-development/mlly/issues/204)) ([8659994](https://github.com/flex-development/mlly/commit/8659994a0f449645ba442bea5bcecad8e16dae52))
123
- * **deps-dev:** Bump eslint from 8.38.0 to 8.39.0 ([#303](https://github.com/flex-development/mlly/issues/303)) ([836a397](https://github.com/flex-development/mlly/commit/836a3978297bfdfbec82f90721230b1344ea5b5d))
124
- * **deps-dev:** Bump eslint-config-prettier from 8.6.0 to 8.7.0 ([#197](https://github.com/flex-development/mlly/issues/197)) ([a38348e](https://github.com/flex-development/mlly/commit/a38348e5caa27da02fdd20a59d156ce8fadf6d57))
125
- * **deps-dev:** Bump eslint-config-prettier from 8.7.0 to 8.8.0 ([#239](https://github.com/flex-development/mlly/issues/239)) ([63540bb](https://github.com/flex-development/mlly/commit/63540bb83ebf09cd0ffeab2f29e16427dafc4ebe))
126
- * **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.1 to 40.0.3 ([#222](https://github.com/flex-development/mlly/issues/222)) ([d47fac8](https://github.com/flex-development/mlly/commit/d47fac8366e9f2568ffd997546f3add960e3b67c))
127
- * **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.3 to 40.1.0 ([#236](https://github.com/flex-development/mlly/issues/236)) ([bdb6a99](https://github.com/flex-development/mlly/commit/bdb6a99aa95cd257fb814638b6264b1588ba56b7))
128
- * **deps-dev:** Bump eslint-plugin-jsonc from 2.6.0 to 2.7.0 ([#223](https://github.com/flex-development/mlly/issues/223)) ([0ae7a51](https://github.com/flex-development/mlly/commit/0ae7a513ddad0c0798e6c60923a3da365837f840))
129
- * **deps-dev:** Bump eslint-plugin-markdownlint from 0.4.0 to 0.4.1 ([#195](https://github.com/flex-development/mlly/issues/195)) ([d1a22d3](https://github.com/flex-development/mlly/commit/d1a22d393918e25e1973f0f45cf1f1e83166d472))
130
- * **deps-dev:** Bump eslint-plugin-unicorn from 45.0.2 to 46.0.0 ([#184](https://github.com/flex-development/mlly/issues/184)) ([3b6f11f](https://github.com/flex-development/mlly/commit/3b6f11f49dd334688d723d7cba04059923f5f054))
131
- * **deps-dev:** Bump eslint-plugin-vue from 9.10.0 to 9.11.0 ([#300](https://github.com/flex-development/mlly/issues/300)) ([fb28a44](https://github.com/flex-development/mlly/commit/fb28a44348795d35ec7aa9bc2bcec52ca8f3db0f))
132
- * **deps-dev:** Bump eslint-plugin-vue from 9.11.0 to 9.15.1 ([#366](https://github.com/flex-development/mlly/issues/366)) ([148978e](https://github.com/flex-development/mlly/commit/148978ec1f43f96954bfdd5043a62908019a4f30))
133
- * **deps-dev:** Bump eslint-plugin-vue from 9.9.0 to 9.10.0 ([#247](https://github.com/flex-development/mlly/issues/247)) ([490b6c1](https://github.com/flex-development/mlly/commit/490b6c1843f453622970c21049a3f8bb200d1b0f))
134
- * **deps-dev:** Bump eslint-plugin-yml from 1.5.0 to 1.6.0 ([#330](https://github.com/flex-development/mlly/issues/330)) ([09c7d6e](https://github.com/flex-development/mlly/commit/09c7d6e435618d8d8d6f06d83edf723bea02d52e))
135
- * **deps-dev:** Bump globby from 13.1.3 to 13.1.4 ([#312](https://github.com/flex-development/mlly/issues/312)) ([9b20bc7](https://github.com/flex-development/mlly/commit/9b20bc7290404517b210f9cffd2e938fd099b391))
136
- * **deps-dev:** Bump graphql-config from 4.4.1 to 4.5.0 ([#191](https://github.com/flex-development/mlly/issues/191)) ([469dd05](https://github.com/flex-development/mlly/commit/469dd0599871a96c0e9d9e70e95efc54cc7b4f76))
137
- * **deps-dev:** Bump jsonc-eslint-parser from 2.1.0 to 2.2.0 ([#202](https://github.com/flex-development/mlly/issues/202)) ([5ba2562](https://github.com/flex-development/mlly/commit/5ba25621183b02b790b204a63ea1f52e9fb300d6))
138
- * **deps-dev:** Bump lint-staged from 13.1.2 to 13.2.0 ([#203](https://github.com/flex-development/mlly/issues/203)) ([1697c1c](https://github.com/flex-development/mlly/commit/1697c1c90b63c8913cec203c1047bdb3eb7ee14c))
139
- * **deps-dev:** Bump lint-staged from 13.2.1 to 13.2.2 ([#308](https://github.com/flex-development/mlly/issues/308)) ([342bbe3](https://github.com/flex-development/mlly/commit/342bbe33bf683c5e43bc52e9a588ea5cae019e8d))
140
- * **deps-dev:** Bump node-fetch from 3.3.0 to 3.3.1 ([#207](https://github.com/flex-development/mlly/issues/207)) ([b96797e](https://github.com/flex-development/mlly/commit/b96797e7b78bc89fb604cc39081db6388aa5c09d))
141
- * **deps-dev:** Bump prettier from 2.8.4 to 2.8.5 ([#230](https://github.com/flex-development/mlly/issues/230)) ([d7eedff](https://github.com/flex-development/mlly/commit/d7eedffb69161992be0aa4cb621510642ac5be9b))
142
- * **deps-dev:** Bump prettier from 2.8.5 to 2.8.6 ([#234](https://github.com/flex-development/mlly/issues/234)) ([bbc1ea7](https://github.com/flex-development/mlly/commit/bbc1ea710da019c831e84aee93fdbc601ffafaf7))
143
- * **deps-dev:** Bump prettier from 2.8.6 to 2.8.7 ([#252](https://github.com/flex-development/mlly/issues/252)) ([e150246](https://github.com/flex-development/mlly/commit/e1502467e8bc14bf0a7bba0399ba4dd8cd39df47))
144
- * **deps-dev:** Bump prettier from 2.8.7 to 2.8.8 ([#299](https://github.com/flex-development/mlly/issues/299)) ([5ac8335](https://github.com/flex-development/mlly/commit/5ac8335d33759b5c5cc3cb96f229d166b1f583d5))
145
- * **deps-dev:** Bump semver from 7.3.8 to 7.5.0 ([#287](https://github.com/flex-development/mlly/issues/287)) ([c587e41](https://github.com/flex-development/mlly/commit/c587e41c6662c1b154ed36685f2ce361a4f38415))
146
- * **deps-dev:** Bump semver from 7.5.0 to 7.5.2 ([#365](https://github.com/flex-development/mlly/issues/365)) ([542ceb9](https://github.com/flex-development/mlly/commit/542ceb938c93ca9759c452e356b31928463ce9c4))
147
- * **deps-dev:** Bump the conventional-changelog group with 4 updates ([#384](https://github.com/flex-development/mlly/issues/384)) ([c3dd8e2](https://github.com/flex-development/mlly/commit/c3dd8e2d077fe92a9d757e6bec76fe90253807cc))
148
- * **deps-dev:** Bump vercel from 28.16.12 to 28.16.13 ([#193](https://github.com/flex-development/mlly/issues/193)) ([bd04323](https://github.com/flex-development/mlly/commit/bd043231183250092dda462076695a4a1cdda7b7))
149
- * **deps-dev:** Bump vercel from 28.16.13 to 28.16.15 ([#194](https://github.com/flex-development/mlly/issues/194)) ([ed452f3](https://github.com/flex-development/mlly/commit/ed452f3c327040ef10fa629ea5f733783755bc7b))
150
- * **deps-dev:** Bump vercel from 28.16.15 to 28.17.0 ([#218](https://github.com/flex-development/mlly/issues/218)) ([58e41d6](https://github.com/flex-development/mlly/commit/58e41d6a17679e5d8f70d1fb430ace6cffcafff7))
151
- * **deps-dev:** Bump vercel from 28.17.0 to 28.18.0 ([#244](https://github.com/flex-development/mlly/issues/244)) ([ce91665](https://github.com/flex-development/mlly/commit/ce916655c76604f3962c3d3808b6e05c0991de3d))
152
- * **deps-dev:** Bump vercel from 28.18.0 to 28.18.1 ([#246](https://github.com/flex-development/mlly/issues/246)) ([c5a37e7](https://github.com/flex-development/mlly/commit/c5a37e70cd0012f759fb6d6cbd1f9c1d348aeaac))
153
- * **deps-dev:** Bump vercel from 28.18.4 to 29.0.3 ([#315](https://github.com/flex-development/mlly/issues/315)) ([4d06c3f](https://github.com/flex-development/mlly/commit/4d06c3f6167974d8022b0a7867e9e0951664235c))
154
- * **deps-dev:** Bump vercel from 29.0.3 to 29.1.1 ([#319](https://github.com/flex-development/mlly/issues/319)) ([2718fd2](https://github.com/flex-development/mlly/commit/2718fd2596db80e20035e8f6878c839824c3b588))
155
- * **deps-dev:** Bump vite from 4.1.4 to 4.2.0 ([#217](https://github.com/flex-development/mlly/issues/217)) ([4439d01](https://github.com/flex-development/mlly/commit/4439d01a603634525103c2182ab6bb1f47b984d8))
156
- * **deps-dev:** Bump vite from 4.2.0 to 4.2.1 ([#227](https://github.com/flex-development/mlly/issues/227)) ([c116aeb](https://github.com/flex-development/mlly/commit/c116aeb2bf38cc2d25203dc76d02e0300d387b21))
157
- * **deps-dev:** Bump vite from 4.2.1 to 4.3.3 ([#311](https://github.com/flex-development/mlly/issues/311)) ([6e266eb](https://github.com/flex-development/mlly/commit/6e266eb1b9e3f6abf1df771c9d9088fc33583ff3))
158
- * **deps-dev:** Bump vite from 4.3.3 to 4.3.4 ([#317](https://github.com/flex-development/mlly/issues/317)) ([ebd2c7f](https://github.com/flex-development/mlly/commit/ebd2c7f02b7b19a6b8c0f79461b71b4c5a12c0c7))
159
- * **deps-dev:** Bump vite from 4.3.4 to 4.3.5 ([#325](https://github.com/flex-development/mlly/issues/325)) ([1a0cc02](https://github.com/flex-development/mlly/commit/1a0cc0237ea79b1f547b56ebd10ecd6037cfb9c9))
160
- * **deps-dev:** Bump vite from 4.3.5 to 4.3.9 ([#354](https://github.com/flex-development/mlly/issues/354)) ([8be7ec8](https://github.com/flex-development/mlly/commit/8be7ec860d351e333d2a6907e8215358fea64638))
161
- * **deps-dev:** Bump vite-tsconfig-paths from 4.0.5 to 4.0.7 ([#215](https://github.com/flex-development/mlly/issues/215)) ([ead5947](https://github.com/flex-development/mlly/commit/ead59472905bd46df1b3b8c97cfc823d84d6615d))
162
- * **deps-dev:** Bump vite-tsconfig-paths from 4.0.8 to 4.2.0 ([#284](https://github.com/flex-development/mlly/issues/284)) ([f36f485](https://github.com/flex-development/mlly/commit/f36f48594ccdc023add7e41beceb0f850ade1c49))
163
- * **deps-dev:** Bump vitest from 0.29.2 to 0.29.3 ([#219](https://github.com/flex-development/mlly/issues/219)) ([c69317f](https://github.com/flex-development/mlly/commit/c69317f1e2f33fdc6754e45e43bd86afac0a28fc))
164
- * **deps-dev:** Bump vitest from 0.29.3 to 0.29.7 ([#228](https://github.com/flex-development/mlly/issues/228)) ([40dc995](https://github.com/flex-development/mlly/commit/40dc9959dc1c58905073e676b1c2bfd9adb4c2bc))
165
- * **deps-dev:** Bump vitest from 0.30.0 to 0.30.1 ([#302](https://github.com/flex-development/mlly/issues/302)) ([b83101c](https://github.com/flex-development/mlly/commit/b83101c3a290efebc9051aeb8c8480c2505115e2))
166
- * **deps-dev:** Bump vitest from 0.30.1 to 0.31.1 ([#338](https://github.com/flex-development/mlly/issues/338)) ([de1ff70](https://github.com/flex-development/mlly/commit/de1ff7094af3ea41d401d8b4b3b9e64b0204b650))
167
- * **deps-dev:** Bump vue-eslint-parser from 9.1.1 to 9.2.0 ([#324](https://github.com/flex-development/mlly/issues/324)) ([a407306](https://github.com/flex-development/mlly/commit/a4073065d69264679b2493538e27bba5b05a8e3b))
168
- * **deps-dev:** Bump vue-tsc from 1.3.14 to 1.4.4 ([#297](https://github.com/flex-development/mlly/issues/297)) ([1bbd9a0](https://github.com/flex-development/mlly/commit/1bbd9a0ebb4e77d6f9c801d97dc3d0afb10830dd))
169
- * **deps-dev:** Bump vue-tsc from 1.4.4 to 1.6.1 ([#307](https://github.com/flex-development/mlly/issues/307)) ([4612362](https://github.com/flex-development/mlly/commit/4612362fde68efd9efda1d3628c707f32443772c))
170
- * **deps-dev:** Bump vue-tsc from 1.6.1 to 1.6.3 ([#316](https://github.com/flex-development/mlly/issues/316)) ([15a043b](https://github.com/flex-development/mlly/commit/15a043bf2c0c2fb2e1040066fc19e7ac9c6ae2ad))
171
- * **deps-dev:** Bump vue-tsc from 1.6.3 to 1.6.4 ([#322](https://github.com/flex-development/mlly/issues/322)) ([06e0b1b](https://github.com/flex-development/mlly/commit/06e0b1bd6c08141cdc94e530c5e24b97f035b888))
172
- * **deps-dev:** Bump yaml-eslint-parser from 1.1.0 to 1.2.0 ([#201](https://github.com/flex-development/mlly/issues/201)) ([5b2292f](https://github.com/flex-development/mlly/commit/5b2292f8eab246da927f9d33a65f155fc18c51dd))
173
- * **deps-dev:** downgrade vue-tsc from 1.8.8 to 1.7.8 ([a819ecf](https://github.com/flex-development/mlly/commit/a819ecf23b476519ec59fb81ccbd7da4206e28b2))
174
- * **deps:** bump @flex-development/errnode from 1.5.0 to 2.0.0 ([08b2b30](https://github.com/flex-development/mlly/commit/08b2b3045e01502f6678a7827f264c68ff68233f))
175
- * **deps:** Bump @flex-development/export-regex from 1.0.2 to 2.0.0 ([#392](https://github.com/flex-development/mlly/issues/392)) ([c48a8bf](https://github.com/flex-development/mlly/commit/c48a8bf48d55a740303a8e820494ba03491e3e98))
176
- * **deps:** Bump @flex-development/import-regex from 2.0.3 to 3.0.0 ([#390](https://github.com/flex-development/mlly/issues/390)) ([ba59420](https://github.com/flex-development/mlly/commit/ba594207c15843873de0d88c2cadd033483bc17c))
177
- * **deps:** Bump @flex-development/is-builtin from 2.0.0 to 3.1.0 ([#382](https://github.com/flex-development/mlly/issues/382)) ([2d567b8](https://github.com/flex-development/mlly/commit/2d567b8c4b5042f4ad3e8718d4aef77c38160862))
178
- * **deps:** Bump @flex-development/pathe from 1.0.3 to 2.0.0 ([#386](https://github.com/flex-development/mlly/issues/386)) ([cf8fd66](https://github.com/flex-development/mlly/commit/cf8fd6695b6adef6bc49ab1cc7518d17bb0175ed))
179
- * **deps:** Bump @flex-development/pkg-types from 2.0.0 to 3.0.0 ([#391](https://github.com/flex-development/mlly/issues/391)) ([2f3161c](https://github.com/flex-development/mlly/commit/2f3161c4c53324254be9cc8dce68fdf6786a7d46))
180
- * **nvm:** require `>=16.20.0` ([52c6b4a](https://github.com/flex-development/mlly/commit/52c6b4ab35e6f7eab281dbb6b2580e2e39042e83))
181
-
242
+ - [[`e0a6e00`](https://github.com/flex-development/mlly/commit/e0a6e00f173c7e3f43333c871bbd81a7997a1225)] **deps-dev:** Bump @commitlint/cli from 17.4.4 to 17.5.0 ([#241](https://github.com/flex-development/mlly/issues/241))
243
+ - [[`acaef67`](https://github.com/flex-development/mlly/commit/acaef673b2f6ec47815d2a0b4128573c8059a48e)] **deps-dev:** Bump @commitlint/cli from 17.5.1 to 17.6.1 ([#301](https://github.com/flex-development/mlly/issues/301))
244
+ - [[`ae6f90d`](https://github.com/flex-development/mlly/commit/ae6f90dddb6b13e87fdd415c5e31c0c9d60fc269)] **deps-dev:** Bump @commitlint/cli from 17.6.1 to 17.6.5 ([#355](https://github.com/flex-development/mlly/issues/355))
245
+ - [[`6a637f7`](https://github.com/flex-development/mlly/commit/6a637f7a411f01e9308a5719785bf1453ceaa3fe)] **deps-dev:** Bump @docsearch/react from 3.3.3 to 3.3.4 ([#305](https://github.com/flex-development/mlly/issues/305))
246
+ - [[`938227d`](https://github.com/flex-development/mlly/commit/938227d3e863ae2144ca66679e304ff87dcf3073)] **deps-dev:** Bump @docsearch/react from 3.3.4 to 3.5.0 ([#360](https://github.com/flex-development/mlly/issues/360))
247
+ - [[`329b3fc`](https://github.com/flex-development/mlly/commit/329b3fc17f79232bec89cfc66068cab7781895fa)] **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.0 to 8.0.0-alpha.1 ([#231](https://github.com/flex-development/mlly/issues/231))
248
+ - [[`1aebe3f`](https://github.com/flex-development/mlly/commit/1aebe3fd0753ae3e930494bfd39a0e1031259167)] **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.1 to 8.0.0-alpha.2 ([#253](https://github.com/flex-development/mlly/issues/253))
249
+ - [[`10cf651`](https://github.com/flex-development/mlly/commit/10cf6514c621d71322fb41d6c43c0fa8feabad15)] **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.2 to 8.0.0-beta.0 ([#326](https://github.com/flex-development/mlly/issues/326))
250
+ - [[`cf41fbf`](https://github.com/flex-development/mlly/commit/cf41fbf0a3006de68645608504cc977d8243bbac)] **deps-dev:** Bump @flex-development/decorator-regex from 1.0.0 to 2.0.0 ([#388](https://github.com/flex-development/mlly/issues/388))
251
+ - [[`4a858bc`](https://github.com/flex-development/mlly/commit/4a858bc36b61d260f28ec3c58591ffaac9797c97)] **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.10 to 1.0.0-alpha.12 ([#188](https://github.com/flex-development/mlly/issues/188))
252
+ - [[`a864fd3`](https://github.com/flex-development/mlly/commit/a864fd3576af29c61030b182df9cb23243d4d7d3)] **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.9 to 1.0.0-alpha.10 ([#185](https://github.com/flex-development/mlly/issues/185))
253
+ - [[`750b486`](https://github.com/flex-development/mlly/commit/750b486bfc35811b251bc1f28d4fb09d5d0bdc90)] **deps-dev:** Bump @flex-development/esm-types from 1.0.0 to 2.0.0 ([#385](https://github.com/flex-development/mlly/issues/385))
254
+ - [[`262edf8`](https://github.com/flex-development/mlly/commit/262edf89eaad7b90bbccae34ce36bc584dc36d1b)] **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.15 to 1.0.0-alpha.16 ([#183](https://github.com/flex-development/mlly/issues/183))
255
+ - [[`9bef0cf`](https://github.com/flex-development/mlly/commit/9bef0cf0ca39a949c904b5d093c4dcbcde638e2d)] **deps-dev:** bump @flex-development/tutils from 6.0.0-alpha.10 to 6.0.0-alpha.15
256
+ - [[`85027dc`](https://github.com/flex-development/mlly/commit/85027dce967946f6b48eff128276432d3bdc9be9)] **deps-dev:** Bump @graphql-eslint/eslint-plugin from 3.16.1 to 3.16.2 ([#243](https://github.com/flex-development/mlly/issues/243))
257
+ - [[`fd1ddc4`](https://github.com/flex-development/mlly/commit/fd1ddc4de90650261390984a5ce06d28e6c2ef54)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.0 to 5.54.1 ([#189](https://github.com/flex-development/mlly/issues/189))
258
+ - [[`5f9ee94`](https://github.com/flex-development/mlly/commit/5f9ee94483053685c3b7a94d807c42dc49c9e51f)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.1 to 5.55.0 ([#208](https://github.com/flex-development/mlly/issues/208))
259
+ - [[`9123c31`](https://github.com/flex-development/mlly/commit/9123c3140ffa0092f55daa7ad0e4ec714b1eee0d)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.55.0 to 5.56.0 ([#232](https://github.com/flex-development/mlly/issues/232))
260
+ - [[`e33bee4`](https://github.com/flex-development/mlly/commit/e33bee44fbe3f07f10767714f73f0555327475ab)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.59.1 ([#294](https://github.com/flex-development/mlly/issues/294))
261
+ - [[`f977af8`](https://github.com/flex-development/mlly/commit/f977af8f1f7620d542af1c8175527b02b08c2163)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.1 to 5.59.2 ([#313](https://github.com/flex-development/mlly/issues/313))
262
+ - [[`dcb58b9`](https://github.com/flex-development/mlly/commit/dcb58b93229bb3287f36e27ae747da7e70978121)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.2 to 5.59.6 ([#341](https://github.com/flex-development/mlly/issues/341))
263
+ - [[`977c378`](https://github.com/flex-development/mlly/commit/977c37876253716cc2ff2c9391b7e55d936261b7)] **deps-dev:** Bump @typescript-eslint/parser from 5.54.0 to 5.54.1 ([#190](https://github.com/flex-development/mlly/issues/190))
264
+ - [[`4654183`](https://github.com/flex-development/mlly/commit/465418348548029ff7d0f1a01bbd136e08160767)] **deps-dev:** Bump @typescript-eslint/parser from 5.54.1 to 5.55.0 ([#210](https://github.com/flex-development/mlly/issues/210))
265
+ - [[`eb28ee1`](https://github.com/flex-development/mlly/commit/eb28ee122b6c5aac74287f851932e83168c8a409)] **deps-dev:** Bump @typescript-eslint/parser from 5.55.0 to 5.56.0 ([#242](https://github.com/flex-development/mlly/issues/242))
266
+ - [[`c1285f7`](https://github.com/flex-development/mlly/commit/c1285f72b7169c3dd0c09772e47098a260cd5b77)] **deps-dev:** Bump @typescript-eslint/parser from 5.57.1 to 5.59.1 ([#296](https://github.com/flex-development/mlly/issues/296))
267
+ - [[`c85ed3b`](https://github.com/flex-development/mlly/commit/c85ed3b24505d236c8ccbeac47f3bccccd8a347a)] **deps-dev:** Bump @typescript-eslint/parser from 5.59.1 to 5.59.2 ([#314](https://github.com/flex-development/mlly/issues/314))
268
+ - [[`70a3438`](https://github.com/flex-development/mlly/commit/70a3438386afaaedf21a5cc9fd96d9e15a043fbf)] **deps-dev:** Bump @vitest/coverage-c8 from 0.29.2 to 0.29.3 ([#225](https://github.com/flex-development/mlly/issues/225))
269
+ - [[`860ed19`](https://github.com/flex-development/mlly/commit/860ed19ecb8466639ce6ba9fee9c23c8f1247e46)] **deps-dev:** Bump @vitest/coverage-c8 from 0.29.3 to 0.29.7 ([#238](https://github.com/flex-development/mlly/issues/238))
270
+ - [[`4916991`](https://github.com/flex-development/mlly/commit/4916991b03c5307f30391cc7a304567b1405b7e9)] **deps-dev:** Bump @vitest/coverage-c8 from 0.30.0 to 0.30.1 ([#298](https://github.com/flex-development/mlly/issues/298))
271
+ - [[`0f60595`](https://github.com/flex-development/mlly/commit/0f6059578124f3fb0b02afc4db0df80133617c71)] **deps-dev:** Bump @vitest/coverage-c8 from 0.30.1 to 0.31.0 ([#320](https://github.com/flex-development/mlly/issues/320))
272
+ - [[`d21cbb4`](https://github.com/flex-development/mlly/commit/d21cbb4ff3d352a892b524021a577a69ab1a8467)] **deps-dev:** Bump @vitest/ui from 0.29.2 to 0.29.3 ([#214](https://github.com/flex-development/mlly/issues/214))
273
+ - [[`3493ab3`](https://github.com/flex-development/mlly/commit/3493ab3f0cf0e054d32136b72af72de406148c87)] **deps-dev:** Bump @vitest/ui from 0.29.3 to 0.29.7 ([#237](https://github.com/flex-development/mlly/issues/237))
274
+ - [[`dba6d04`](https://github.com/flex-development/mlly/commit/dba6d04994e0222bc39272f08571aca5ffdd039e)] **deps-dev:** Bump @vitest/ui from 0.29.7 to 0.29.8 ([#260](https://github.com/flex-development/mlly/issues/260))
275
+ - [[`7fc2393`](https://github.com/flex-development/mlly/commit/7fc239364053b8c6541bcde451b89d18c7fdc87c)] **deps-dev:** Bump @vitest/ui from 0.30.0 to 0.30.1 ([#304](https://github.com/flex-development/mlly/issues/304))
276
+ - [[`6a927c8`](https://github.com/flex-development/mlly/commit/6a927c89a174322e62d44fec0909dd0d47580a78)] **deps-dev:** Bump @vitest/ui from 0.30.1 to 0.31.0 ([#321](https://github.com/flex-development/mlly/issues/321))
277
+ - [[`4bfe81e`](https://github.com/flex-development/mlly/commit/4bfe81eb19b463530b39eb83383437cf2f76ffc4)] **deps-dev:** Bump @vue/runtime-core from 3.2.47 to 3.3.4 ([#340](https://github.com/flex-development/mlly/issues/340))
278
+ - [[`1a0b232`](https://github.com/flex-development/mlly/commit/1a0b232ebe70459fe2a2ab675af7a8989b05cfbf)] **deps-dev:** Bump algoliasearch from 4.15.0 to 4.16.0 ([#248](https://github.com/flex-development/mlly/issues/248))
279
+ - [[`1f68805`](https://github.com/flex-development/mlly/commit/1f68805569121b880c569e23573c5a8ec08b884d)] **deps-dev:** Bump algoliasearch from 4.16.0 to 4.17.0 ([#274](https://github.com/flex-development/mlly/issues/274))
280
+ - [[`8d5584a`](https://github.com/flex-development/mlly/commit/8d5584a92ca7d9937bbbd3ef262fd4c7f663fd9f)] **deps-dev:** Bump conventional-changelog-writer from 5.0.1 to 6.0.0 ([#361](https://github.com/flex-development/mlly/issues/361))
281
+ - [[`9aa737c`](https://github.com/flex-development/mlly/commit/9aa737c9aa4e42806639561f64670a9d8baeb1e0)] **deps-dev:** Bump conventional-recommended-bump from 6.1.0 to 7.0.1 ([#359](https://github.com/flex-development/mlly/issues/359))
282
+ - [[`7fb15d6`](https://github.com/flex-development/mlly/commit/7fb15d6a2f13fda08dc4e55ea5875168d8225cd9)] **deps-dev:** Bump cspell from 6.27.0 to 6.28.0 ([#182](https://github.com/flex-development/mlly/issues/182))
283
+ - [[`a3b9ac1`](https://github.com/flex-development/mlly/commit/a3b9ac150b9fef9061325dea80db9aa2f106068a)] **deps-dev:** Bump cspell from 6.28.0 to 6.29.3 ([#212](https://github.com/flex-development/mlly/issues/212))
284
+ - [[`da46d04`](https://github.com/flex-development/mlly/commit/da46d04942b1e1a5d51231ef635f21413b9e3b20)] **deps-dev:** Bump cspell from 6.29.3 to 6.30.0 ([#220](https://github.com/flex-development/mlly/issues/220))
285
+ - [[`70ff885`](https://github.com/flex-development/mlly/commit/70ff8851155f6758ea304c96ddad25d693012969)] **deps-dev:** Bump cspell from 6.30.0 to 6.30.2 ([#235](https://github.com/flex-development/mlly/issues/235))
286
+ - [[`a891496`](https://github.com/flex-development/mlly/commit/a891496e5ab92a00579438b53ccd3398f7ede008)] **deps-dev:** Bump cspell from 6.30.2 to 6.31.1 ([#251](https://github.com/flex-development/mlly/issues/251))
287
+ - [[`092fb75`](https://github.com/flex-development/mlly/commit/092fb7520b88609641fde9df718d56a1479e86c0)] **deps-dev:** Bump esbuild from 0.17.10 to 0.17.11 ([#186](https://github.com/flex-development/mlly/issues/186))
288
+ - [[`4e14757`](https://github.com/flex-development/mlly/commit/4e147575e00ec8a937b5ad4704db9a2e93d54877)] **deps-dev:** Bump esbuild from 0.17.11 to 0.17.12 ([#224](https://github.com/flex-development/mlly/issues/224))
289
+ - [[`5deedc6`](https://github.com/flex-development/mlly/commit/5deedc63e0c3050cd6f9c5705409382706027e09)] **deps-dev:** Bump esbuild from 0.17.12 to 0.17.14 ([#256](https://github.com/flex-development/mlly/issues/256))
290
+ - [[`9e8ab13`](https://github.com/flex-development/mlly/commit/9e8ab13ce9247cb249ea0fc131cc3ecd52c20038)] **deps-dev:** Bump esbuild from 0.17.16 to 0.17.18 ([#318](https://github.com/flex-development/mlly/issues/318))
291
+ - [[`2b690d5`](https://github.com/flex-development/mlly/commit/2b690d59ad7d67e2b787b23482beb43bf647819a)] **deps-dev:** Bump esbuild from 0.17.18 to 0.17.19 ([#343](https://github.com/flex-development/mlly/issues/343))
292
+ - [[`bdb3782`](https://github.com/flex-development/mlly/commit/bdb3782c755a30d7e7d3d2bfc20f7ee602a9a596)] **deps-dev:** Bump esbuild from 0.18.18 to 0.18.19 ([#394](https://github.com/flex-development/mlly/issues/394))
293
+ - [[`8659994`](https://github.com/flex-development/mlly/commit/8659994a0f449645ba442bea5bcecad8e16dae52)] **deps-dev:** Bump eslint from 8.35.0 to 8.36.0 ([#204](https://github.com/flex-development/mlly/issues/204))
294
+ - [[`836a397`](https://github.com/flex-development/mlly/commit/836a3978297bfdfbec82f90721230b1344ea5b5d)] **deps-dev:** Bump eslint from 8.38.0 to 8.39.0 ([#303](https://github.com/flex-development/mlly/issues/303))
295
+ - [[`a38348e`](https://github.com/flex-development/mlly/commit/a38348e5caa27da02fdd20a59d156ce8fadf6d57)] **deps-dev:** Bump eslint-config-prettier from 8.6.0 to 8.7.0 ([#197](https://github.com/flex-development/mlly/issues/197))
296
+ - [[`63540bb`](https://github.com/flex-development/mlly/commit/63540bb83ebf09cd0ffeab2f29e16427dafc4ebe)] **deps-dev:** Bump eslint-config-prettier from 8.7.0 to 8.8.0 ([#239](https://github.com/flex-development/mlly/issues/239))
297
+ - [[`d47fac8`](https://github.com/flex-development/mlly/commit/d47fac8366e9f2568ffd997546f3add960e3b67c)] **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.1 to 40.0.3 ([#222](https://github.com/flex-development/mlly/issues/222))
298
+ - [[`bdb6a99`](https://github.com/flex-development/mlly/commit/bdb6a99aa95cd257fb814638b6264b1588ba56b7)] **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.3 to 40.1.0 ([#236](https://github.com/flex-development/mlly/issues/236))
299
+ - [[`0ae7a51`](https://github.com/flex-development/mlly/commit/0ae7a513ddad0c0798e6c60923a3da365837f840)] **deps-dev:** Bump eslint-plugin-jsonc from 2.6.0 to 2.7.0 ([#223](https://github.com/flex-development/mlly/issues/223))
300
+ - [[`d1a22d3`](https://github.com/flex-development/mlly/commit/d1a22d393918e25e1973f0f45cf1f1e83166d472)] **deps-dev:** Bump eslint-plugin-markdownlint from 0.4.0 to 0.4.1 ([#195](https://github.com/flex-development/mlly/issues/195))
301
+ - [[`3b6f11f`](https://github.com/flex-development/mlly/commit/3b6f11f49dd334688d723d7cba04059923f5f054)] **deps-dev:** Bump eslint-plugin-unicorn from 45.0.2 to 46.0.0 ([#184](https://github.com/flex-development/mlly/issues/184))
302
+ - [[`fb28a44`](https://github.com/flex-development/mlly/commit/fb28a44348795d35ec7aa9bc2bcec52ca8f3db0f)] **deps-dev:** Bump eslint-plugin-vue from 9.10.0 to 9.11.0 ([#300](https://github.com/flex-development/mlly/issues/300))
303
+ - [[`148978e`](https://github.com/flex-development/mlly/commit/148978ec1f43f96954bfdd5043a62908019a4f30)] **deps-dev:** Bump eslint-plugin-vue from 9.11.0 to 9.15.1 ([#366](https://github.com/flex-development/mlly/issues/366))
304
+ - [[`490b6c1`](https://github.com/flex-development/mlly/commit/490b6c1843f453622970c21049a3f8bb200d1b0f)] **deps-dev:** Bump eslint-plugin-vue from 9.9.0 to 9.10.0 ([#247](https://github.com/flex-development/mlly/issues/247))
305
+ - [[`09c7d6e`](https://github.com/flex-development/mlly/commit/09c7d6e435618d8d8d6f06d83edf723bea02d52e)] **deps-dev:** Bump eslint-plugin-yml from 1.5.0 to 1.6.0 ([#330](https://github.com/flex-development/mlly/issues/330))
306
+ - [[`9b20bc7`](https://github.com/flex-development/mlly/commit/9b20bc7290404517b210f9cffd2e938fd099b391)] **deps-dev:** Bump globby from 13.1.3 to 13.1.4 ([#312](https://github.com/flex-development/mlly/issues/312))
307
+ - [[`469dd05`](https://github.com/flex-development/mlly/commit/469dd0599871a96c0e9d9e70e95efc54cc7b4f76)] **deps-dev:** Bump graphql-config from 4.4.1 to 4.5.0 ([#191](https://github.com/flex-development/mlly/issues/191))
308
+ - [[`5ba2562`](https://github.com/flex-development/mlly/commit/5ba25621183b02b790b204a63ea1f52e9fb300d6)] **deps-dev:** Bump jsonc-eslint-parser from 2.1.0 to 2.2.0 ([#202](https://github.com/flex-development/mlly/issues/202))
309
+ - [[`1697c1c`](https://github.com/flex-development/mlly/commit/1697c1c90b63c8913cec203c1047bdb3eb7ee14c)] **deps-dev:** Bump lint-staged from 13.1.2 to 13.2.0 ([#203](https://github.com/flex-development/mlly/issues/203))
310
+ - [[`342bbe3`](https://github.com/flex-development/mlly/commit/342bbe33bf683c5e43bc52e9a588ea5cae019e8d)] **deps-dev:** Bump lint-staged from 13.2.1 to 13.2.2 ([#308](https://github.com/flex-development/mlly/issues/308))
311
+ - [[`b96797e`](https://github.com/flex-development/mlly/commit/b96797e7b78bc89fb604cc39081db6388aa5c09d)] **deps-dev:** Bump node-fetch from 3.3.0 to 3.3.1 ([#207](https://github.com/flex-development/mlly/issues/207))
312
+ - [[`d7eedff`](https://github.com/flex-development/mlly/commit/d7eedffb69161992be0aa4cb621510642ac5be9b)] **deps-dev:** Bump prettier from 2.8.4 to 2.8.5 ([#230](https://github.com/flex-development/mlly/issues/230))
313
+ - [[`bbc1ea7`](https://github.com/flex-development/mlly/commit/bbc1ea710da019c831e84aee93fdbc601ffafaf7)] **deps-dev:** Bump prettier from 2.8.5 to 2.8.6 ([#234](https://github.com/flex-development/mlly/issues/234))
314
+ - [[`e150246`](https://github.com/flex-development/mlly/commit/e1502467e8bc14bf0a7bba0399ba4dd8cd39df47)] **deps-dev:** Bump prettier from 2.8.6 to 2.8.7 ([#252](https://github.com/flex-development/mlly/issues/252))
315
+ - [[`5ac8335`](https://github.com/flex-development/mlly/commit/5ac8335d33759b5c5cc3cb96f229d166b1f583d5)] **deps-dev:** Bump prettier from 2.8.7 to 2.8.8 ([#299](https://github.com/flex-development/mlly/issues/299))
316
+ - [[`c587e41`](https://github.com/flex-development/mlly/commit/c587e41c6662c1b154ed36685f2ce361a4f38415)] **deps-dev:** Bump semver from 7.3.8 to 7.5.0 ([#287](https://github.com/flex-development/mlly/issues/287))
317
+ - [[`542ceb9`](https://github.com/flex-development/mlly/commit/542ceb938c93ca9759c452e356b31928463ce9c4)] **deps-dev:** Bump semver from 7.5.0 to 7.5.2 ([#365](https://github.com/flex-development/mlly/issues/365))
318
+ - [[`c3dd8e2`](https://github.com/flex-development/mlly/commit/c3dd8e2d077fe92a9d757e6bec76fe90253807cc)] **deps-dev:** Bump the conventional-changelog group with 4 updates ([#384](https://github.com/flex-development/mlly/issues/384))
319
+ - [[`bd04323`](https://github.com/flex-development/mlly/commit/bd043231183250092dda462076695a4a1cdda7b7)] **deps-dev:** Bump vercel from 28.16.12 to 28.16.13 ([#193](https://github.com/flex-development/mlly/issues/193))
320
+ - [[`ed452f3`](https://github.com/flex-development/mlly/commit/ed452f3c327040ef10fa629ea5f733783755bc7b)] **deps-dev:** Bump vercel from 28.16.13 to 28.16.15 ([#194](https://github.com/flex-development/mlly/issues/194))
321
+ - [[`58e41d6`](https://github.com/flex-development/mlly/commit/58e41d6a17679e5d8f70d1fb430ace6cffcafff7)] **deps-dev:** Bump vercel from 28.16.15 to 28.17.0 ([#218](https://github.com/flex-development/mlly/issues/218))
322
+ - [[`ce91665`](https://github.com/flex-development/mlly/commit/ce916655c76604f3962c3d3808b6e05c0991de3d)] **deps-dev:** Bump vercel from 28.17.0 to 28.18.0 ([#244](https://github.com/flex-development/mlly/issues/244))
323
+ - [[`c5a37e7`](https://github.com/flex-development/mlly/commit/c5a37e70cd0012f759fb6d6cbd1f9c1d348aeaac)] **deps-dev:** Bump vercel from 28.18.0 to 28.18.1 ([#246](https://github.com/flex-development/mlly/issues/246))
324
+ - [[`4d06c3f`](https://github.com/flex-development/mlly/commit/4d06c3f6167974d8022b0a7867e9e0951664235c)] **deps-dev:** Bump vercel from 28.18.4 to 29.0.3 ([#315](https://github.com/flex-development/mlly/issues/315))
325
+ - [[`2718fd2`](https://github.com/flex-development/mlly/commit/2718fd2596db80e20035e8f6878c839824c3b588)] **deps-dev:** Bump vercel from 29.0.3 to 29.1.1 ([#319](https://github.com/flex-development/mlly/issues/319))
326
+ - [[`4439d01`](https://github.com/flex-development/mlly/commit/4439d01a603634525103c2182ab6bb1f47b984d8)] **deps-dev:** Bump vite from 4.1.4 to 4.2.0 ([#217](https://github.com/flex-development/mlly/issues/217))
327
+ - [[`c116aeb`](https://github.com/flex-development/mlly/commit/c116aeb2bf38cc2d25203dc76d02e0300d387b21)] **deps-dev:** Bump vite from 4.2.0 to 4.2.1 ([#227](https://github.com/flex-development/mlly/issues/227))
328
+ - [[`6e266eb`](https://github.com/flex-development/mlly/commit/6e266eb1b9e3f6abf1df771c9d9088fc33583ff3)] **deps-dev:** Bump vite from 4.2.1 to 4.3.3 ([#311](https://github.com/flex-development/mlly/issues/311))
329
+ - [[`ebd2c7f`](https://github.com/flex-development/mlly/commit/ebd2c7f02b7b19a6b8c0f79461b71b4c5a12c0c7)] **deps-dev:** Bump vite from 4.3.3 to 4.3.4 ([#317](https://github.com/flex-development/mlly/issues/317))
330
+ - [[`1a0cc02`](https://github.com/flex-development/mlly/commit/1a0cc0237ea79b1f547b56ebd10ecd6037cfb9c9)] **deps-dev:** Bump vite from 4.3.4 to 4.3.5 ([#325](https://github.com/flex-development/mlly/issues/325))
331
+ - [[`8be7ec8`](https://github.com/flex-development/mlly/commit/8be7ec860d351e333d2a6907e8215358fea64638)] **deps-dev:** Bump vite from 4.3.5 to 4.3.9 ([#354](https://github.com/flex-development/mlly/issues/354))
332
+ - [[`ead5947`](https://github.com/flex-development/mlly/commit/ead59472905bd46df1b3b8c97cfc823d84d6615d)] **deps-dev:** Bump vite-tsconfig-paths from 4.0.5 to 4.0.7 ([#215](https://github.com/flex-development/mlly/issues/215))
333
+ - [[`f36f485`](https://github.com/flex-development/mlly/commit/f36f48594ccdc023add7e41beceb0f850ade1c49)] **deps-dev:** Bump vite-tsconfig-paths from 4.0.8 to 4.2.0 ([#284](https://github.com/flex-development/mlly/issues/284))
334
+ - [[`c69317f`](https://github.com/flex-development/mlly/commit/c69317f1e2f33fdc6754e45e43bd86afac0a28fc)] **deps-dev:** Bump vitest from 0.29.2 to 0.29.3 ([#219](https://github.com/flex-development/mlly/issues/219))
335
+ - [[`40dc995`](https://github.com/flex-development/mlly/commit/40dc9959dc1c58905073e676b1c2bfd9adb4c2bc)] **deps-dev:** Bump vitest from 0.29.3 to 0.29.7 ([#228](https://github.com/flex-development/mlly/issues/228))
336
+ - [[`b83101c`](https://github.com/flex-development/mlly/commit/b83101c3a290efebc9051aeb8c8480c2505115e2)] **deps-dev:** Bump vitest from 0.30.0 to 0.30.1 ([#302](https://github.com/flex-development/mlly/issues/302))
337
+ - [[`de1ff70`](https://github.com/flex-development/mlly/commit/de1ff7094af3ea41d401d8b4b3b9e64b0204b650)] **deps-dev:** Bump vitest from 0.30.1 to 0.31.1 ([#338](https://github.com/flex-development/mlly/issues/338))
338
+ - [[`a407306`](https://github.com/flex-development/mlly/commit/a4073065d69264679b2493538e27bba5b05a8e3b)] **deps-dev:** Bump vue-eslint-parser from 9.1.1 to 9.2.0 ([#324](https://github.com/flex-development/mlly/issues/324))
339
+ - [[`1bbd9a0`](https://github.com/flex-development/mlly/commit/1bbd9a0ebb4e77d6f9c801d97dc3d0afb10830dd)] **deps-dev:** Bump vue-tsc from 1.3.14 to 1.4.4 ([#297](https://github.com/flex-development/mlly/issues/297))
340
+ - [[`4612362`](https://github.com/flex-development/mlly/commit/4612362fde68efd9efda1d3628c707f32443772c)] **deps-dev:** Bump vue-tsc from 1.4.4 to 1.6.1 ([#307](https://github.com/flex-development/mlly/issues/307))
341
+ - [[`15a043b`](https://github.com/flex-development/mlly/commit/15a043bf2c0c2fb2e1040066fc19e7ac9c6ae2ad)] **deps-dev:** Bump vue-tsc from 1.6.1 to 1.6.3 ([#316](https://github.com/flex-development/mlly/issues/316))
342
+ - [[`06e0b1b`](https://github.com/flex-development/mlly/commit/06e0b1bd6c08141cdc94e530c5e24b97f035b888)] **deps-dev:** Bump vue-tsc from 1.6.3 to 1.6.4 ([#322](https://github.com/flex-development/mlly/issues/322))
343
+ - [[`5b2292f`](https://github.com/flex-development/mlly/commit/5b2292f8eab246da927f9d33a65f155fc18c51dd)] **deps-dev:** Bump yaml-eslint-parser from 1.1.0 to 1.2.0 ([#201](https://github.com/flex-development/mlly/issues/201))
344
+ - [[`a819ecf`](https://github.com/flex-development/mlly/commit/a819ecf23b476519ec59fb81ccbd7da4206e28b2)] **deps-dev:** downgrade vue-tsc from 1.8.8 to 1.7.8
345
+ - [[`08b2b30`](https://github.com/flex-development/mlly/commit/08b2b3045e01502f6678a7827f264c68ff68233f)] **deps:** bump @flex-development/errnode from 1.5.0 to 2.0.0
346
+ - [[`c48a8bf`](https://github.com/flex-development/mlly/commit/c48a8bf48d55a740303a8e820494ba03491e3e98)] **deps:** Bump @flex-development/export-regex from 1.0.2 to 2.0.0 ([#392](https://github.com/flex-development/mlly/issues/392))
347
+ - [[`ba59420`](https://github.com/flex-development/mlly/commit/ba594207c15843873de0d88c2cadd033483bc17c)] **deps:** Bump @flex-development/import-regex from 2.0.3 to 3.0.0 ([#390](https://github.com/flex-development/mlly/issues/390))
348
+ - [[`2d567b8`](https://github.com/flex-development/mlly/commit/2d567b8c4b5042f4ad3e8718d4aef77c38160862)] **deps:** Bump @flex-development/is-builtin from 2.0.0 to 3.1.0 ([#382](https://github.com/flex-development/mlly/issues/382))
349
+ - [[`cf8fd66`](https://github.com/flex-development/mlly/commit/cf8fd6695b6adef6bc49ab1cc7518d17bb0175ed)] **deps:** Bump @flex-development/pathe from 1.0.3 to 2.0.0 ([#386](https://github.com/flex-development/mlly/issues/386))
350
+ - [[`2f3161c`](https://github.com/flex-development/mlly/commit/2f3161c4c53324254be9cc8dce68fdf6786a7d46)] **deps:** Bump @flex-development/pkg-types from 2.0.0 to 3.0.0 ([#391](https://github.com/flex-development/mlly/issues/391))
351
+ - [[`52c6b4a`](https://github.com/flex-development/mlly/commit/52c6b4ab35e6f7eab281dbb6b2580e2e39042e83)] **nvm:** require `>=16.20.0`
182
352
 
183
353
  ### :robot: Continuous Integration
184
354
 
185
- * [[@dependabot](https://github.com/dependabot)] configure grouped version updates ([aa7ce00](https://github.com/flex-development/mlly/commit/aa7ce00bb85ec023de450e712bab07b1865f5644))
186
- * **deps:** Bump actions/add-to-project from 0.4.1 to 0.5.0 ([#266](https://github.com/flex-development/mlly/issues/266)) ([81827a0](https://github.com/flex-development/mlly/commit/81827a0bf87ea09044f993d2e4260cad3c45f3c2))
187
- * **deps:** Bump actions/cache from 3.2.6 to 3.3.0 ([#199](https://github.com/flex-development/mlly/issues/199)) ([7af3a0a](https://github.com/flex-development/mlly/commit/7af3a0ac3b826f87ffb2ed2cf9d402d80ee97729))
188
- * **deps:** Bump actions/cache from 3.3.0 to 3.3.1 ([#206](https://github.com/flex-development/mlly/issues/206)) ([1221632](https://github.com/flex-development/mlly/commit/12216326ceee15734efdd3f6457c4433587143d4))
189
- * **deps:** Bump actions/checkout from 3.3.0 to 3.4.0 ([#213](https://github.com/flex-development/mlly/issues/213)) ([06cad61](https://github.com/flex-development/mlly/commit/06cad61f8e4dba42f13ed86a982a5e7dd368dfaf))
190
- * **deps:** Bump actions/checkout from 3.4.0 to 3.5.0 ([#249](https://github.com/flex-development/mlly/issues/249)) ([3870f48](https://github.com/flex-development/mlly/commit/3870f48ce028e6b1934daa998764474e2437871b))
191
- * **deps:** Bump actions/checkout from 3.5.0 to 3.5.1 ([#283](https://github.com/flex-development/mlly/issues/283)) ([78e871a](https://github.com/flex-development/mlly/commit/78e871a337d11d1d6fa934ecc3687bf7dd1802d2))
192
- * **deps:** Bump actions/checkout from 3.5.1 to 3.5.2 ([#285](https://github.com/flex-development/mlly/issues/285)) ([3faa3e3](https://github.com/flex-development/mlly/commit/3faa3e3382e4d3732bce00fa8c9df39a1bac61f5))
193
- * **deps:** Bump actions/checkout from 3.5.2 to 3.5.3 ([#362](https://github.com/flex-development/mlly/issues/362)) ([c882299](https://github.com/flex-development/mlly/commit/c882299d6b2a7afd7f4272ce2c1b99012baf67e8))
194
- * **deps:** Bump actions/github-script from 6.4.0 to 6.4.1 ([#271](https://github.com/flex-development/mlly/issues/271)) ([9f4a68b](https://github.com/flex-development/mlly/commit/9f4a68b68b1d0d50360a68e09f566f55f29c6bca))
195
- * **deps:** Bump actions/setup-node from 3.6.0 to 3.7.0 ([#374](https://github.com/flex-development/mlly/issues/374)) ([45f980b](https://github.com/flex-development/mlly/commit/45f980bc536d66f998ab13868ec4603ce3ac4ab1))
196
- * **deps:** Bump codecov/codecov-action from 3.1.1 to 3.1.2 ([#281](https://github.com/flex-development/mlly/issues/281)) ([d401d4c](https://github.com/flex-development/mlly/commit/d401d4c8c496e9a99ac1cba36b5eda9a27745279))
197
- * **deps:** Bump codecov/codecov-action from 3.1.2 to 3.1.3 ([#292](https://github.com/flex-development/mlly/issues/292)) ([1f95f86](https://github.com/flex-development/mlly/commit/1f95f86540a100f3b7aa0b940bd5093778b744c9))
198
- * **deps:** Bump codecov/codecov-action from 3.1.3 to 3.1.4 ([#336](https://github.com/flex-development/mlly/issues/336)) ([5555d05](https://github.com/flex-development/mlly/commit/5555d05a74553fa7641019d9c1ddbe6bb53ae6da))
199
- * **deps:** Bump crazy-max/ghaction-import-gpg from 5.2.0 to 5.3.0 ([#328](https://github.com/flex-development/mlly/issues/328)) ([8c9cb26](https://github.com/flex-development/mlly/commit/8c9cb263e8ad4d2bad54ba3d1ff2004af2ec1460))
200
- * **deps:** Bump dependabot/fetch-metadata from 1.3.6 to 1.4.0 ([#286](https://github.com/flex-development/mlly/issues/286)) ([b503dbb](https://github.com/flex-development/mlly/commit/b503dbb239a3c4ed5311ff05dc94c85cb3188daf))
201
- * **deps:** Bump dependabot/fetch-metadata from 1.4.0 to 1.5.0 ([#344](https://github.com/flex-development/mlly/issues/344)) ([9396914](https://github.com/flex-development/mlly/commit/9396914fbbb4b02b18eb9352b6f2d8772e3720c7))
202
- * **deps:** Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 ([#346](https://github.com/flex-development/mlly/issues/346)) ([507e03c](https://github.com/flex-development/mlly/commit/507e03c6d7a9b90390857ad1ab9cf036c5c5de23))
203
- * **deps:** Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 ([#369](https://github.com/flex-development/mlly/issues/369)) ([626d9bb](https://github.com/flex-development/mlly/commit/626d9bb2631e6476a45bcd23ecd20ca66d45e900))
204
- * **deps:** Bump dessant/lock-threads from 4.0.0 to 4.0.1 ([#363](https://github.com/flex-development/mlly/issues/363)) ([2e8e845](https://github.com/flex-development/mlly/commit/2e8e845a8804f7a0cd428da8c430f0f9782deeb7))
205
- * **deps:** Bump octokit/graphql-action from 2.2.23 to 2.2.24 ([#275](https://github.com/flex-development/mlly/issues/275)) ([c5ac607](https://github.com/flex-development/mlly/commit/c5ac607a9fedddad184975877a2089d2097373c5))
206
- * **deps:** Bump octokit/graphql-action from 2.2.24 to 2.2.25 ([#378](https://github.com/flex-development/mlly/issues/378)) ([37ceae2](https://github.com/flex-development/mlly/commit/37ceae2268450168c37e0a1eba0dfba866513d65))
207
- * **workflows:** [`approve-pr`] remove `dependabot-metadata` condition ([bc1bc20](https://github.com/flex-development/mlly/commit/bc1bc2025b4d4ddb601ac10d604428f269d792d8))
208
- * **workflows:** [`ci`] add `github.run_number` check to `commitlint` job ([ed64d9c](https://github.com/flex-development/mlly/commit/ed64d9c3b2689e6bf379043254e9178e78029183))
209
- * **workflows:** [`ci`] add `lcov.info` file check to `codecov` job ([c071fd9](https://github.com/flex-development/mlly/commit/c071fd9710cbacfa2815f9dadba4c616144a6466))
210
- * **workflows:** [`ci`] add `pkg-size-report` ([586421d](https://github.com/flex-development/mlly/commit/586421d962bdb69c78895c04315ae069e9a3b883))
211
- * **workflows:** [`ci`] add `pkg-size-report` step to `build` job ([676186b](https://github.com/flex-development/mlly/commit/676186bd1426cb67ab9eefd61198a5f127cb4c79))
212
- * **workflows:** [`pkg-size-report`] add missing `yarn` step ([5277fa9](https://github.com/flex-development/mlly/commit/5277fa9912a8e44d5b3667fb7243049d2f768005))
213
- * **workflows:** [`pkg-size-report`] allow [@dependabot](https://github.com/dependabot) pull requests ([c24c816](https://github.com/flex-development/mlly/commit/c24c81671c18d8cd39b313d2010e5c8a5702bee6))
214
- * **workflows:** [`pkg-size-report`] fix `build-command` ([d2e67fa](https://github.com/flex-development/mlly/commit/d2e67faf1dbc8c7e6540191f55e6585b842b06af))
215
- * **workflows:** [`pkg-size-report`] set report mode to `head-only` ([303eb54](https://github.com/flex-development/mlly/commit/303eb54baff7745e5c93b778b7fa754e8220f6ce))
216
- * **workflows:** add `cache-cleanup` ([94dc35e](https://github.com/flex-development/mlly/commit/94dc35e5a5ec58c89f6aa95c29454505fe8efc19))
217
- * **workflows:** add `infrastructure` ([0308409](https://github.com/flex-development/mlly/commit/03084099723cb7f3b1e015f134e3ce40bb34e29b))
218
- * **workflows:** remove `pkg-size-report` ([c29f74c](https://github.com/flex-development/mlly/commit/c29f74c825e92592e29073e8e98a8b5896325f00))
219
-
355
+ - [[`aa7ce00`](https://github.com/flex-development/mlly/commit/aa7ce00bb85ec023de450e712bab07b1865f5644)] [[@dependabot](https://github.com/dependabot)] configure grouped version updates
356
+ - [[`81827a0`](https://github.com/flex-development/mlly/commit/81827a0bf87ea09044f993d2e4260cad3c45f3c2)] **deps:** Bump actions/add-to-project from 0.4.1 to 0.5.0 ([#266](https://github.com/flex-development/mlly/issues/266))
357
+ - [[`7af3a0a`](https://github.com/flex-development/mlly/commit/7af3a0ac3b826f87ffb2ed2cf9d402d80ee97729)] **deps:** Bump actions/cache from 3.2.6 to 3.3.0 ([#199](https://github.com/flex-development/mlly/issues/199))
358
+ - [[`1221632`](https://github.com/flex-development/mlly/commit/12216326ceee15734efdd3f6457c4433587143d4)] **deps:** Bump actions/cache from 3.3.0 to 3.3.1 ([#206](https://github.com/flex-development/mlly/issues/206))
359
+ - [[`06cad61`](https://github.com/flex-development/mlly/commit/06cad61f8e4dba42f13ed86a982a5e7dd368dfaf)] **deps:** Bump actions/checkout from 3.3.0 to 3.4.0 ([#213](https://github.com/flex-development/mlly/issues/213))
360
+ - [[`3870f48`](https://github.com/flex-development/mlly/commit/3870f48ce028e6b1934daa998764474e2437871b)] **deps:** Bump actions/checkout from 3.4.0 to 3.5.0 ([#249](https://github.com/flex-development/mlly/issues/249))
361
+ - [[`78e871a`](https://github.com/flex-development/mlly/commit/78e871a337d11d1d6fa934ecc3687bf7dd1802d2)] **deps:** Bump actions/checkout from 3.5.0 to 3.5.1 ([#283](https://github.com/flex-development/mlly/issues/283))
362
+ - [[`3faa3e3`](https://github.com/flex-development/mlly/commit/3faa3e3382e4d3732bce00fa8c9df39a1bac61f5)] **deps:** Bump actions/checkout from 3.5.1 to 3.5.2 ([#285](https://github.com/flex-development/mlly/issues/285))
363
+ - [[`c882299`](https://github.com/flex-development/mlly/commit/c882299d6b2a7afd7f4272ce2c1b99012baf67e8)] **deps:** Bump actions/checkout from 3.5.2 to 3.5.3 ([#362](https://github.com/flex-development/mlly/issues/362))
364
+ - [[`9f4a68b`](https://github.com/flex-development/mlly/commit/9f4a68b68b1d0d50360a68e09f566f55f29c6bca)] **deps:** Bump actions/github-script from 6.4.0 to 6.4.1 ([#271](https://github.com/flex-development/mlly/issues/271))
365
+ - [[`45f980b`](https://github.com/flex-development/mlly/commit/45f980bc536d66f998ab13868ec4603ce3ac4ab1)] **deps:** Bump actions/setup-node from 3.6.0 to 3.7.0 ([#374](https://github.com/flex-development/mlly/issues/374))
366
+ - [[`d401d4c`](https://github.com/flex-development/mlly/commit/d401d4c8c496e9a99ac1cba36b5eda9a27745279)] **deps:** Bump codecov/codecov-action from 3.1.1 to 3.1.2 ([#281](https://github.com/flex-development/mlly/issues/281))
367
+ - [[`1f95f86`](https://github.com/flex-development/mlly/commit/1f95f86540a100f3b7aa0b940bd5093778b744c9)] **deps:** Bump codecov/codecov-action from 3.1.2 to 3.1.3 ([#292](https://github.com/flex-development/mlly/issues/292))
368
+ - [[`5555d05`](https://github.com/flex-development/mlly/commit/5555d05a74553fa7641019d9c1ddbe6bb53ae6da)] **deps:** Bump codecov/codecov-action from 3.1.3 to 3.1.4 ([#336](https://github.com/flex-development/mlly/issues/336))
369
+ - [[`8c9cb26`](https://github.com/flex-development/mlly/commit/8c9cb263e8ad4d2bad54ba3d1ff2004af2ec1460)] **deps:** Bump crazy-max/ghaction-import-gpg from 5.2.0 to 5.3.0 ([#328](https://github.com/flex-development/mlly/issues/328))
370
+ - [[`b503dbb`](https://github.com/flex-development/mlly/commit/b503dbb239a3c4ed5311ff05dc94c85cb3188daf)] **deps:** Bump dependabot/fetch-metadata from 1.3.6 to 1.4.0 ([#286](https://github.com/flex-development/mlly/issues/286))
371
+ - [[`9396914`](https://github.com/flex-development/mlly/commit/9396914fbbb4b02b18eb9352b6f2d8772e3720c7)] **deps:** Bump dependabot/fetch-metadata from 1.4.0 to 1.5.0 ([#344](https://github.com/flex-development/mlly/issues/344))
372
+ - [[`507e03c`](https://github.com/flex-development/mlly/commit/507e03c6d7a9b90390857ad1ab9cf036c5c5de23)] **deps:** Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 ([#346](https://github.com/flex-development/mlly/issues/346))
373
+ - [[`626d9bb`](https://github.com/flex-development/mlly/commit/626d9bb2631e6476a45bcd23ecd20ca66d45e900)] **deps:** Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 ([#369](https://github.com/flex-development/mlly/issues/369))
374
+ - [[`2e8e845`](https://github.com/flex-development/mlly/commit/2e8e845a8804f7a0cd428da8c430f0f9782deeb7)] **deps:** Bump dessant/lock-threads from 4.0.0 to 4.0.1 ([#363](https://github.com/flex-development/mlly/issues/363))
375
+ - [[`c5ac607`](https://github.com/flex-development/mlly/commit/c5ac607a9fedddad184975877a2089d2097373c5)] **deps:** Bump octokit/graphql-action from 2.2.23 to 2.2.24 ([#275](https://github.com/flex-development/mlly/issues/275))
376
+ - [[`37ceae2`](https://github.com/flex-development/mlly/commit/37ceae2268450168c37e0a1eba0dfba866513d65)] **deps:** Bump octokit/graphql-action from 2.2.24 to 2.2.25 ([#378](https://github.com/flex-development/mlly/issues/378))
377
+ - [[`bc1bc20`](https://github.com/flex-development/mlly/commit/bc1bc2025b4d4ddb601ac10d604428f269d792d8)] **workflows:** [`approve-pr`] remove `dependabot-metadata` condition
378
+ - [[`ed64d9c`](https://github.com/flex-development/mlly/commit/ed64d9c3b2689e6bf379043254e9178e78029183)] **workflows:** [`ci`] add `github.run_number` check to `commitlint` job
379
+ - [[`c071fd9`](https://github.com/flex-development/mlly/commit/c071fd9710cbacfa2815f9dadba4c616144a6466)] **workflows:** [`ci`] add `lcov.info` file check to `codecov` job
380
+ - [[`586421d`](https://github.com/flex-development/mlly/commit/586421d962bdb69c78895c04315ae069e9a3b883)] **workflows:** [`ci`] add `pkg-size-report`
381
+ - [[`676186b`](https://github.com/flex-development/mlly/commit/676186bd1426cb67ab9eefd61198a5f127cb4c79)] **workflows:** [`ci`] add `pkg-size-report` step to `build` job
382
+ - [[`5277fa9`](https://github.com/flex-development/mlly/commit/5277fa9912a8e44d5b3667fb7243049d2f768005)] **workflows:** [`pkg-size-report`] add missing `yarn` step
383
+ - [[`c24c816`](https://github.com/flex-development/mlly/commit/c24c81671c18d8cd39b313d2010e5c8a5702bee6)] **workflows:** [`pkg-size-report`] allow [@dependabot](https://github.com/dependabot) pull requests
384
+ - [[`d2e67fa`](https://github.com/flex-development/mlly/commit/d2e67faf1dbc8c7e6540191f55e6585b842b06af)] **workflows:** [`pkg-size-report`] fix `build-command`
385
+ - [[`303eb54`](https://github.com/flex-development/mlly/commit/303eb54baff7745e5c93b778b7fa754e8220f6ce)] **workflows:** [`pkg-size-report`] set report mode to `head-only`
386
+ - [[`94dc35e`](https://github.com/flex-development/mlly/commit/94dc35e5a5ec58c89f6aa95c29454505fe8efc19)] **workflows:** add `cache-cleanup`
387
+ - [[`0308409`](https://github.com/flex-development/mlly/commit/03084099723cb7f3b1e015f134e3ce40bb34e29b)] **workflows:** add `infrastructure`
388
+ - [[`c29f74c`](https://github.com/flex-development/mlly/commit/c29f74c825e92592e29073e8e98a8b5896325f00)] **workflows:** remove `pkg-size-report`
220
389
 
221
390
  ### :pencil: Documentation
222
391
 
223
- * [site] configure vercel web analytics ([7c64268](https://github.com/flex-development/mlly/commit/7c64268eb92a0409c4c26f6214ddf20ccb6fd80d))
224
- * [site] remove duplicate algolia preconnect link ([d56e322](https://github.com/flex-development/mlly/commit/d56e322a6ca8efbff1ce71d39babd5a394d63f77))
225
- * [site] use `themeConfig.search` ([d047114](https://github.com/flex-development/mlly/commit/d0471140af56d3cd5e47c81444347cc05dbaa5f7))
226
- * [site] use vitepress sitemap generator ([aab231d](https://github.com/flex-development/mlly/commit/aab231d2742a9150b65904e5554f4a1e5230d84b))
227
- * **pkg:** set `homepage` to https://mlly.vercel.app ([380dd8e](https://github.com/flex-development/mlly/commit/380dd8e7c3a7abdc02a10606e9e3a7436d0c85a0))
228
- * **workflows:** update reference links ([70fb096](https://github.com/flex-development/mlly/commit/70fb0967de7b8d3b95af43fa4bd8db10dc5babb1))
229
-
392
+ - [[`7c64268`](https://github.com/flex-development/mlly/commit/7c64268eb92a0409c4c26f6214ddf20ccb6fd80d)] [site] configure vercel web analytics
393
+ - [[`d56e322`](https://github.com/flex-development/mlly/commit/d56e322a6ca8efbff1ce71d39babd5a394d63f77)] [site] remove duplicate algolia preconnect link
394
+ - [[`d047114`](https://github.com/flex-development/mlly/commit/d0471140af56d3cd5e47c81444347cc05dbaa5f7)] [site] use `themeConfig.search`
395
+ - [[`aab231d`](https://github.com/flex-development/mlly/commit/aab231d2742a9150b65904e5554f4a1e5230d84b)] [site] use vitepress sitemap generator
396
+ - [[`380dd8e`](https://github.com/flex-development/mlly/commit/380dd8e7c3a7abdc02a10606e9e3a7436d0c85a0)] **pkg:** set `homepage` to https://mlly.vercel.app
397
+ - [[`70fb096`](https://github.com/flex-development/mlly/commit/70fb0967de7b8d3b95af43fa4bd8db10dc5babb1)] **workflows:** update reference links
230
398
 
231
399
  ### :sparkles: Features
232
400
 
233
- * **utils:** `isDirectory`, `isFile` ([920c24f](https://github.com/flex-development/mlly/commit/920c24f876d16f25b41c459ed065efd19435131b))
234
-
401
+ - [[`920c24f`](https://github.com/flex-development/mlly/commit/920c24f876d16f25b41c459ed065efd19435131b)] **utils:** `isDirectory`, `isFile`
235
402
 
236
403
  ### :house_with_garden: Housekeeping
237
404
 
238
- * analyze types distribution ([cc34d88](https://github.com/flex-development/mlly/commit/cc34d88a38f297974591e6b611b98d0926b30174))
239
- * eslint-plugin-import@2.28.0 prep ([9054ed8](https://github.com/flex-development/mlly/commit/9054ed85a517539e8fb12df32bef6f6a63ffc54c))
240
- * sync config files ([cbbde6e](https://github.com/flex-development/mlly/commit/cbbde6e030e095938ddf84e9e070a3bcd50bc393))
241
- * update dev and test environments ([037e2c0](https://github.com/flex-development/mlly/commit/037e2c0f31df5c39ef8eeeb5e19e01eeb48726ea))
405
+ - [[`cc34d88`](https://github.com/flex-development/mlly/commit/cc34d88a38f297974591e6b611b98d0926b30174)] analyze types distribution
406
+ - [[`9054ed8`](https://github.com/flex-development/mlly/commit/9054ed85a517539e8fb12df32bef6f6a63ffc54c)] eslint-plugin-import@2.28.0 prep
407
+ - [[`cbbde6e`](https://github.com/flex-development/mlly/commit/cbbde6e030e095938ddf84e9e070a3bcd50bc393)] sync config files
408
+ - [[`037e2c0`](https://github.com/flex-development/mlly/commit/037e2c0f31df5c39ef8eeeb5e19e01eeb48726ea)] update dev and test environments
242
409
 
243
410
  ## [1.0.0-alpha.15](https://github.com/flex-development/mlly/compare/1.0.0-alpha.14...1.0.0-alpha.15) (2023-03-03)
244
411
 
245
-
246
412
  ### :package: Build
247
413
 
248
- * **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.14 to 1.0.0-alpha.15 ([#179](https://github.com/flex-development/mlly/issues/179)) ([b3ae5a9](https://github.com/flex-development/mlly/commit/b3ae5a987ace837faa9a5a9bdee4971ac4631056))
249
-
414
+ - [[`b3ae5a9`](https://github.com/flex-development/mlly/commit/b3ae5a987ace837faa9a5a9bdee4971ac4631056)] **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.14 to 1.0.0-alpha.15 ([#179](https://github.com/flex-development/mlly/issues/179))
250
415
 
251
416
  ### :robot: Continuous Integration
252
417
 
253
- * **workflows:** add `auto-merge` ([5c93310](https://github.com/flex-development/mlly/commit/5c933108f98316c1092e7c90824ddccef798c685))
254
-
418
+ - [[`5c93310`](https://github.com/flex-development/mlly/commit/5c933108f98316c1092e7c90824ddccef798c685)] **workflows:** add `auto-merge`
255
419
 
256
420
  ### :bug: Fixes
257
421
 
258
- * **utils:** [`toBareSpecifier`] remove `@types/` prefix ([29120fa](https://github.com/flex-development/mlly/commit/29120faadeb97e3c2a711ede8b8dcbc35951279a))
259
-
422
+ - [[`29120fa`](https://github.com/flex-development/mlly/commit/29120faadeb97e3c2a711ede8b8dcbc35951279a)] **utils:** [`toBareSpecifier`] remove `[@types](https://github.com/types)/` prefix
260
423
 
261
424
  ### :white_check_mark: Testing
262
425
 
263
- * **ts:** cleanup base tsconfig file ([7b665ee](https://github.com/flex-development/mlly/commit/7b665eed3d02fae2109095e047c74092b30ef55a))
426
+ - [[`7b665ee`](https://github.com/flex-development/mlly/commit/7b665eed3d02fae2109095e047c74092b30ef55a)] **ts:** cleanup base tsconfig file
264
427
 
265
428
  ## [1.0.0-alpha.14](https://github.com/flex-development/mlly/compare/1.0.0-alpha.13...1.0.0-alpha.14) (2023-03-03)
266
429
 
267
-
268
430
  ### :package: Build
269
431
 
270
- * **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.13 to 1.0.0-alpha.14 ([#164](https://github.com/flex-development/mlly/issues/164)) ([04890e0](https://github.com/flex-development/mlly/commit/04890e015c468df660f40e9cec488a35f462960b))
271
- * **deps-dev:** Bump algoliasearch from 4.14.3 to 4.15.0 ([#176](https://github.com/flex-development/mlly/issues/176)) ([ffa130c](https://github.com/flex-development/mlly/commit/ffa130c31de02f2e6d64e533076033325225971c))
272
- * **deps-dev:** Bump cspell from 6.26.3 to 6.27.0 ([#175](https://github.com/flex-development/mlly/issues/175)) ([ab25d07](https://github.com/flex-development/mlly/commit/ab25d079bda696062019cfa1f1befe9ee23e3831))
273
- * **deps-dev:** Bump vercel from 28.16.4 to 28.16.5 ([#162](https://github.com/flex-development/mlly/issues/162)) ([3caff5a](https://github.com/flex-development/mlly/commit/3caff5a9fadd7b6ef969a15c794c7c9bc0bb72f5))
274
- * **deps-dev:** Bump vercel from 28.16.5 to 28.16.7 ([#166](https://github.com/flex-development/mlly/issues/166)) ([5eda8cb](https://github.com/flex-development/mlly/commit/5eda8cb5d4be21a0df51f3db2a8a6aa86ee43dcb))
275
- * **deps-dev:** Bump vercel from 28.16.7 to 28.16.12 ([#174](https://github.com/flex-development/mlly/issues/174)) ([d4ecb51](https://github.com/flex-development/mlly/commit/d4ecb51beb699d086a183bf172c301f61148012d))
276
- * **deps:** bump @flex-development/export-regex from 1.0.0 to 1.0.2 ([cd84623](https://github.com/flex-development/mlly/commit/cd84623cc613636b06d6e9351842fd8d1d699466))
277
- * **deps:** bump @flex-development/import-regex from 2.0.1 to 2.0.3 ([69f65f9](https://github.com/flex-development/mlly/commit/69f65f975beaf093fed8fee88d1b753ee3df7d86))
278
-
432
+ - [[`04890e0`](https://github.com/flex-development/mlly/commit/04890e015c468df660f40e9cec488a35f462960b)] **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.13 to 1.0.0-alpha.14 ([#164](https://github.com/flex-development/mlly/issues/164))
433
+ - [[`ffa130c`](https://github.com/flex-development/mlly/commit/ffa130c31de02f2e6d64e533076033325225971c)] **deps-dev:** Bump algoliasearch from 4.14.3 to 4.15.0 ([#176](https://github.com/flex-development/mlly/issues/176))
434
+ - [[`ab25d07`](https://github.com/flex-development/mlly/commit/ab25d079bda696062019cfa1f1befe9ee23e3831)] **deps-dev:** Bump cspell from 6.26.3 to 6.27.0 ([#175](https://github.com/flex-development/mlly/issues/175))
435
+ - [[`3caff5a`](https://github.com/flex-development/mlly/commit/3caff5a9fadd7b6ef969a15c794c7c9bc0bb72f5)] **deps-dev:** Bump vercel from 28.16.4 to 28.16.5 ([#162](https://github.com/flex-development/mlly/issues/162))
436
+ - [[`5eda8cb`](https://github.com/flex-development/mlly/commit/5eda8cb5d4be21a0df51f3db2a8a6aa86ee43dcb)] **deps-dev:** Bump vercel from 28.16.5 to 28.16.7 ([#166](https://github.com/flex-development/mlly/issues/166))
437
+ - [[`d4ecb51`](https://github.com/flex-development/mlly/commit/d4ecb51beb699d086a183bf172c301f61148012d)] **deps-dev:** Bump vercel from 28.16.7 to 28.16.12 ([#174](https://github.com/flex-development/mlly/issues/174))
438
+ - [[`cd84623`](https://github.com/flex-development/mlly/commit/cd84623cc613636b06d6e9351842fd8d1d699466)] **deps:** bump @flex-development/export-regex from 1.0.0 to 1.0.2
439
+ - [[`69f65f9`](https://github.com/flex-development/mlly/commit/69f65f975beaf093fed8fee88d1b753ee3df7d86)] **deps:** bump @flex-development/import-regex from 2.0.1 to 2.0.3
279
440
 
280
441
  ### :robot: Continuous Integration
281
442
 
282
- * **deps:** Bump actions/add-to-project from 0.4.0 to 0.4.1 ([#167](https://github.com/flex-development/mlly/issues/167)) ([a0450f9](https://github.com/flex-development/mlly/commit/a0450f92f34c51cb7f9582676b973bcb184ba298))
283
- * **workflows:** [`ci`] add `commitlint` job ([7d0326a](https://github.com/flex-development/mlly/commit/7d0326a72044474e1adbc0980bc1098157263770))
284
- * **workflows:** [`ci`] make jobs dependant on `gitguardian` ([ff5905b](https://github.com/flex-development/mlly/commit/ff5905baba1bf379a8a9093a9ec4d66470e61005))
285
- * **workflows:** [`dependabot-auto`] ensure lockfile fix commit meets commit standards ([5faf6bd](https://github.com/flex-development/mlly/commit/5faf6bd14189cc293de4bad3f76fda1b63666918))
286
-
443
+ - [[`a0450f9`](https://github.com/flex-development/mlly/commit/a0450f92f34c51cb7f9582676b973bcb184ba298)] **deps:** Bump actions/add-to-project from 0.4.0 to 0.4.1 ([#167](https://github.com/flex-development/mlly/issues/167))
444
+ - [[`7d0326a`](https://github.com/flex-development/mlly/commit/7d0326a72044474e1adbc0980bc1098157263770)] **workflows:** [`ci`] add `commitlint` job
445
+ - [[`ff5905b`](https://github.com/flex-development/mlly/commit/ff5905baba1bf379a8a9093a9ec4d66470e61005)] **workflows:** [`ci`] make jobs dependant on `gitguardian`
446
+ - [[`5faf6bd`](https://github.com/flex-development/mlly/commit/5faf6bd14189cc293de4bad3f76fda1b63666918)] **workflows:** [`dependabot-auto`] ensure lockfile fix commit meets commit standards
287
447
 
288
448
  ### :house_with_garden: Housekeeping
289
449
 
290
- * sync config files ([5bbf830](https://github.com/flex-development/mlly/commit/5bbf83084f8c4c0d1e7c7c133dad96201b59e953))
291
-
450
+ - [[`5bbf830`](https://github.com/flex-development/mlly/commit/5bbf83084f8c4c0d1e7c7c133dad96201b59e953)] sync config files
292
451
 
293
452
  ### :mechanical_arm: Refactors
294
453
 
295
- * **utils:** [`findExports`] sort statements by `start` location ([7926a01](https://github.com/flex-development/mlly/commit/7926a010729d99d109df475068703b22e7073920))
454
+ - [[`7926a01`](https://github.com/flex-development/mlly/commit/7926a010729d99d109df475068703b22e7073920)] **utils:** [`findExports`] sort statements by `start` location
296
455
 
297
456
  ## [1.0.0-alpha.13](https://github.com/flex-development/mlly/compare/1.0.0-alpha.12...1.0.0-alpha.13) (2023-02-22)
298
457
 
299
-
300
458
  ### :package: Build
301
459
 
302
- * **deps-dev:** Bump typescript from 5.0.0-dev.20230219 to 5.0.0-dev.20230222 ([#158](https://github.com/flex-development/mlly/issues/158)) ([1ca8a5f](https://github.com/flex-development/mlly/commit/1ca8a5f6998541fe470a9b7b0372c0d39381948d))
303
-
460
+ - [[`1ca8a5f`](https://github.com/flex-development/mlly/commit/1ca8a5f6998541fe470a9b7b0372c0d39381948d)] **deps-dev:** Bump typescript from 5.0.0-dev.20230219 to 5.0.0-dev.20230222 ([#158](https://github.com/flex-development/mlly/issues/158))
304
461
 
305
462
  ### :bug: Fixes
306
463
 
307
- * **ts:** ensure typechecks pass without peer deps installed ([81b55ca](https://github.com/flex-development/mlly/commit/81b55caa8533ad174ec009535e5a030be21e6cc1))
464
+ - [[`81b55ca`](https://github.com/flex-development/mlly/commit/81b55caa8533ad174ec009535e5a030be21e6cc1)] **ts:** ensure typechecks pass without peer deps installed
308
465
 
309
466
  ## [1.0.0-alpha.12](https://github.com/flex-development/mlly/compare/1.0.0-alpha.11...1.0.0-alpha.12) (2023-02-22)
310
467
 
311
-
312
468
  ### ⚠ BREAKING CHANGES
313
469
 
314
- * **utils:** [`getSource`] enforce absolute module id
315
- * **utils:** [`getFormat`] enforce absolute module id
470
+ - **utils:** [`getSource`] enforce absolute module id
471
+ - **utils:** [`getFormat`] enforce absolute module id
316
472
 
317
473
  ### :package: Build
318
474
 
319
- * **deps-dev:** Bump @commitlint/cli from 17.4.2 to 17.4.4 ([#147](https://github.com/flex-development/mlly/issues/147)) ([d4024c8](https://github.com/flex-development/mlly/commit/d4024c81fc54aa8fba66b1b205cf25e6aefdaf2b))
320
- * **deps-dev:** Bump @commitlint/config-conventional from 17.4.2 to 17.4.4 ([#146](https://github.com/flex-development/mlly/issues/146)) ([967f90b](https://github.com/flex-development/mlly/commit/967f90bcb7f769e1b44425be050664d9e4843882))
321
- * **deps-dev:** bump @faker-js/faker from 7.6.0 to 8.0.0-alpha.0 ([3201065](https://github.com/flex-development/mlly/commit/32010657fbdae9d9eb45d5766589e251871bbc33))
322
- * **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.9 to 1.0.0-alpha.13 ([925f2e5](https://github.com/flex-development/mlly/commit/925f2e50901d1ce92b29273bafd387ba1e5e3ed0))
323
- * **deps-dev:** Bump @graphql-eslint/eslint-plugin from 3.15.0 to 3.16.0 ([#144](https://github.com/flex-development/mlly/issues/144)) ([0356608](https://github.com/flex-development/mlly/commit/03566088d500e2252a16f5aa77f3c08dcd415027))
324
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.52.0 to 5.53.0 ([#155](https://github.com/flex-development/mlly/issues/155)) ([96e941c](https://github.com/flex-development/mlly/commit/96e941ca96a8cfd6b6b97b66a39bf2502780778c))
325
- * **deps-dev:** Bump @typescript-eslint/parser from 5.52.0 to 5.53.0 ([#149](https://github.com/flex-development/mlly/issues/149)) ([55f514d](https://github.com/flex-development/mlly/commit/55f514d8a3716fe5a8d68f19e09d9148194f6e18))
326
- * **deps-dev:** bump @vitest/coverage-c8 from 0.28.4 to 0.28.5 ([93d7e1c](https://github.com/flex-development/mlly/commit/93d7e1c141d492d0ea4ad40fa152ce7e0c38763e))
327
- * **deps-dev:** bump @vitest/ui from 0.28.4 to 0.28.5 ([2e52ac4](https://github.com/flex-development/mlly/commit/2e52ac405fba671168aad1143dfbc36f12b1e092))
328
- * **deps-dev:** Bump esbuild from 0.17.7 to 0.17.8 ([#135](https://github.com/flex-development/mlly/issues/135)) ([44d2d16](https://github.com/flex-development/mlly/commit/44d2d1683bfa60bb8ea3ba8e747eec9cc468e668))
329
- * **deps-dev:** Bump esbuild from 0.17.9 to 0.17.10 ([#151](https://github.com/flex-development/mlly/issues/151)) ([ef0e31e](https://github.com/flex-development/mlly/commit/ef0e31e7b305da07649aafc3fcb62287d0a61a1a))
330
- * **deps-dev:** Bump eslint from 8.33.0 to 8.34.0 ([#129](https://github.com/flex-development/mlly/issues/129)) ([0c84f73](https://github.com/flex-development/mlly/commit/0c84f731dd1766480d555722d85144857cdaf057))
331
- * **deps-dev:** Bump eslint-plugin-yml from 1.4.0 to 1.5.0 ([#127](https://github.com/flex-development/mlly/issues/127)) ([58900c4](https://github.com/flex-development/mlly/commit/58900c40bbe2dba9ace8c74b48bf0f1ac1da22ae))
332
- * **deps-dev:** Bump lint-staged from 13.1.1 to 13.1.2 ([#131](https://github.com/flex-development/mlly/issues/131)) ([97dfd0a](https://github.com/flex-development/mlly/commit/97dfd0a138084b3ea27687ba4a2f04a781a10dc9))
333
- * **deps-dev:** bump typescript from 5.0.0-dev.20221215 to 5.0.0-dev.20230217 ([75b5d22](https://github.com/flex-development/mlly/commit/75b5d226118c4a280f3682987ac237b0843587d4))
334
- * **deps-dev:** Bump vercel from 28.15.3 to 28.16.2 ([#142](https://github.com/flex-development/mlly/issues/142)) ([e841f53](https://github.com/flex-development/mlly/commit/e841f532d46ad7cef4f4b5becf34b477699d81a0))
335
- * **deps-dev:** Bump vercel from 28.16.2 to 28.16.4 ([#159](https://github.com/flex-development/mlly/issues/159)) ([a8b80d9](https://github.com/flex-development/mlly/commit/a8b80d9b3802d53b71bd07e234ffe3008c522213))
336
- * **deps-dev:** Bump vite from 4.1.2 to 4.1.4 ([#150](https://github.com/flex-development/mlly/issues/150)) ([283debd](https://github.com/flex-development/mlly/commit/283debd0c45e30bc3d80a672b550e0460c8f040d))
337
- * **deps-dev:** bump vitest from 0.28.4 to 0.28.5 ([1aeb03c](https://github.com/flex-development/mlly/commit/1aeb03c2b28e874e2677c67f77d21769f19b1048))
338
- * **deps-dev:** Bump vue-tsc from 1.1.4 to 1.1.7 ([#157](https://github.com/flex-development/mlly/issues/157)) ([f6e7417](https://github.com/flex-development/mlly/commit/f6e7417e02ac1cadd691279176f428c3d06c4f47))
339
- * **deps-dev:** remove `@commitlint/types` ([8a93c2b](https://github.com/flex-development/mlly/commit/8a93c2b39e4aa402beed9ff8ccf6249d19b1ec1d))
340
- * **deps:** bump @flex-development/errnode from 1.4.0 to 1.5.0 ([606c796](https://github.com/flex-development/mlly/commit/606c796b5b1ad4a30b6271e146c845338b74cd4f))
341
- * **deps:** bump @flex-development/tutils from 6.0.0-alpha.9 to 6.0.0-alpha.10 ([b74a958](https://github.com/flex-development/mlly/commit/b74a95882c02b8bc1ab4ecfea3c87a321044421e))
342
- * **yarn:** bump yarn from 4.0.0-rc.34 to 4.0.0-rc.39 ([34be9cc](https://github.com/flex-development/mlly/commit/34be9cccebc974ced5ff089442d025c43d0c1737))
343
-
475
+ - [[`d4024c8`](https://github.com/flex-development/mlly/commit/d4024c81fc54aa8fba66b1b205cf25e6aefdaf2b)] **deps-dev:** Bump @commitlint/cli from 17.4.2 to 17.4.4 ([#147](https://github.com/flex-development/mlly/issues/147))
476
+ - [[`967f90b`](https://github.com/flex-development/mlly/commit/967f90bcb7f769e1b44425be050664d9e4843882)] **deps-dev:** Bump @commitlint/config-conventional from 17.4.2 to 17.4.4 ([#146](https://github.com/flex-development/mlly/issues/146))
477
+ - [[`3201065`](https://github.com/flex-development/mlly/commit/32010657fbdae9d9eb45d5766589e251871bbc33)] **deps-dev:** bump @faker-js/faker from 7.6.0 to 8.0.0-alpha.0
478
+ - [[`925f2e5`](https://github.com/flex-development/mlly/commit/925f2e50901d1ce92b29273bafd387ba1e5e3ed0)] **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.9 to 1.0.0-alpha.13
479
+ - [[`0356608`](https://github.com/flex-development/mlly/commit/03566088d500e2252a16f5aa77f3c08dcd415027)] **deps-dev:** Bump @graphql-eslint/eslint-plugin from 3.15.0 to 3.16.0 ([#144](https://github.com/flex-development/mlly/issues/144))
480
+ - [[`96e941c`](https://github.com/flex-development/mlly/commit/96e941ca96a8cfd6b6b97b66a39bf2502780778c)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.52.0 to 5.53.0 ([#155](https://github.com/flex-development/mlly/issues/155))
481
+ - [[`55f514d`](https://github.com/flex-development/mlly/commit/55f514d8a3716fe5a8d68f19e09d9148194f6e18)] **deps-dev:** Bump @typescript-eslint/parser from 5.52.0 to 5.53.0 ([#149](https://github.com/flex-development/mlly/issues/149))
482
+ - [[`93d7e1c`](https://github.com/flex-development/mlly/commit/93d7e1c141d492d0ea4ad40fa152ce7e0c38763e)] **deps-dev:** bump @vitest/coverage-c8 from 0.28.4 to 0.28.5
483
+ - [[`2e52ac4`](https://github.com/flex-development/mlly/commit/2e52ac405fba671168aad1143dfbc36f12b1e092)] **deps-dev:** bump @vitest/ui from 0.28.4 to 0.28.5
484
+ - [[`44d2d16`](https://github.com/flex-development/mlly/commit/44d2d1683bfa60bb8ea3ba8e747eec9cc468e668)] **deps-dev:** Bump esbuild from 0.17.7 to 0.17.8 ([#135](https://github.com/flex-development/mlly/issues/135))
485
+ - [[`ef0e31e`](https://github.com/flex-development/mlly/commit/ef0e31e7b305da07649aafc3fcb62287d0a61a1a)] **deps-dev:** Bump esbuild from 0.17.9 to 0.17.10 ([#151](https://github.com/flex-development/mlly/issues/151))
486
+ - [[`0c84f73`](https://github.com/flex-development/mlly/commit/0c84f731dd1766480d555722d85144857cdaf057)] **deps-dev:** Bump eslint from 8.33.0 to 8.34.0 ([#129](https://github.com/flex-development/mlly/issues/129))
487
+ - [[`58900c4`](https://github.com/flex-development/mlly/commit/58900c40bbe2dba9ace8c74b48bf0f1ac1da22ae)] **deps-dev:** Bump eslint-plugin-yml from 1.4.0 to 1.5.0 ([#127](https://github.com/flex-development/mlly/issues/127))
488
+ - [[`97dfd0a`](https://github.com/flex-development/mlly/commit/97dfd0a138084b3ea27687ba4a2f04a781a10dc9)] **deps-dev:** Bump lint-staged from 13.1.1 to 13.1.2 ([#131](https://github.com/flex-development/mlly/issues/131))
489
+ - [[`75b5d22`](https://github.com/flex-development/mlly/commit/75b5d226118c4a280f3682987ac237b0843587d4)] **deps-dev:** bump typescript from 5.0.0-dev.20221215 to 5.0.0-dev.20230217
490
+ - [[`e841f53`](https://github.com/flex-development/mlly/commit/e841f532d46ad7cef4f4b5becf34b477699d81a0)] **deps-dev:** Bump vercel from 28.15.3 to 28.16.2 ([#142](https://github.com/flex-development/mlly/issues/142))
491
+ - [[`a8b80d9`](https://github.com/flex-development/mlly/commit/a8b80d9b3802d53b71bd07e234ffe3008c522213)] **deps-dev:** Bump vercel from 28.16.2 to 28.16.4 ([#159](https://github.com/flex-development/mlly/issues/159))
492
+ - [[`283debd`](https://github.com/flex-development/mlly/commit/283debd0c45e30bc3d80a672b550e0460c8f040d)] **deps-dev:** Bump vite from 4.1.2 to 4.1.4 ([#150](https://github.com/flex-development/mlly/issues/150))
493
+ - [[`1aeb03c`](https://github.com/flex-development/mlly/commit/1aeb03c2b28e874e2677c67f77d21769f19b1048)] **deps-dev:** bump vitest from 0.28.4 to 0.28.5
494
+ - [[`f6e7417`](https://github.com/flex-development/mlly/commit/f6e7417e02ac1cadd691279176f428c3d06c4f47)] **deps-dev:** Bump vue-tsc from 1.1.4 to 1.1.7 ([#157](https://github.com/flex-development/mlly/issues/157))
495
+ - [[`8a93c2b`](https://github.com/flex-development/mlly/commit/8a93c2b39e4aa402beed9ff8ccf6249d19b1ec1d)] **deps-dev:** remove `@commitlint/types`
496
+ - [[`606c796`](https://github.com/flex-development/mlly/commit/606c796b5b1ad4a30b6271e146c845338b74cd4f)] **deps:** bump @flex-development/errnode from 1.4.0 to 1.5.0
497
+ - [[`b74a958`](https://github.com/flex-development/mlly/commit/b74a95882c02b8bc1ab4ecfea3c87a321044421e)] **deps:** bump @flex-development/tutils from 6.0.0-alpha.9 to 6.0.0-alpha.10
498
+ - [[`34be9cc`](https://github.com/flex-development/mlly/commit/34be9cccebc974ced5ff089442d025c43d0c1737)] **yarn:** bump yarn from 4.0.0-rc.34 to 4.0.0-rc.39
344
499
 
345
500
  ### :robot: Continuous Integration
346
501
 
347
- * [[@dependabot](https://github.com/dependabot)] fix private registry updates ([f42ef3e](https://github.com/flex-development/mlly/commit/f42ef3e10bc7b2ca2d9e6301e08d3092214fa0cc))
348
- * **deps:** Bump actions/cache from 3.2.5 to 3.2.6 ([#156](https://github.com/flex-development/mlly/issues/156)) ([6da77e9](https://github.com/flex-development/mlly/commit/6da77e9ff2150160711273d404af3bf50a3de6d5))
349
- * **workflows:** [`ci`] use `env.GITHUB_SHA` for codecov override commit ([f1bd699](https://github.com/flex-development/mlly/commit/f1bd69969a365e41f0c199b3d57439031d683b6b))
350
- * **workflows:** [`ci`] use `github.event.pull_request.head.sha` for codecov ([2fda03f](https://github.com/flex-development/mlly/commit/2fda03f9064f0203e93723c53e9511a156d69e7c))
351
- * **workflows:** [`dependabot-auto`] remove `enable-auto-merge` job conditional ([437f053](https://github.com/flex-development/mlly/commit/437f0535ad8d8701ce13a0001877d157639fa57e))
352
-
502
+ - [[`f42ef3e`](https://github.com/flex-development/mlly/commit/f42ef3e10bc7b2ca2d9e6301e08d3092214fa0cc)] [[@dependabot](https://github.com/dependabot)] fix private registry updates
503
+ - [[`6da77e9`](https://github.com/flex-development/mlly/commit/6da77e9ff2150160711273d404af3bf50a3de6d5)] **deps:** Bump actions/cache from 3.2.5 to 3.2.6 ([#156](https://github.com/flex-development/mlly/issues/156))
504
+ - [[`f1bd699`](https://github.com/flex-development/mlly/commit/f1bd69969a365e41f0c199b3d57439031d683b6b)] **workflows:** [`ci`] use `env.GITHUB_SHA` for codecov override commit
505
+ - [[`2fda03f`](https://github.com/flex-development/mlly/commit/2fda03f9064f0203e93723c53e9511a156d69e7c)] **workflows:** [`ci`] use `github.event.pull_request.head.sha` for codecov
506
+ - [[`437f053`](https://github.com/flex-development/mlly/commit/437f0535ad8d8701ce13a0001877d157639fa57e)] **workflows:** [`dependabot-auto`] remove `enable-auto-merge` job conditional
353
507
 
354
508
  ### :pencil: Documentation
355
509
 
356
- * organize badges ([58b6377](https://github.com/flex-development/mlly/commit/58b6377612b9c9454c98478de8912df67fc04d86))
357
-
510
+ - [[`58b6377`](https://github.com/flex-development/mlly/commit/58b6377612b9c9454c98478de8912df67fc04d86)] organize badges
358
511
 
359
512
  ### :sparkles: Features
360
513
 
361
- * `ParsedSubpath#target` ([a956cb1](https://github.com/flex-development/mlly/commit/a956cb10b27f63f683a64b5028bef87170862e44))
362
- * **internal:** `invalidSegmentRegex` ([b8dd2d0](https://github.com/flex-development/mlly/commit/b8dd2d03776959e374dc242b3d7189e20742f6fa))
363
- * **internal:** `validateArraySet` ([045c4c6](https://github.com/flex-development/mlly/commit/045c4c614ebf8eb213f6801f24f6759de527c796))
364
- * **internal:** `validateMap` ([82c63b4](https://github.com/flex-development/mlly/commit/82c63b467615c0e799c4bb9d4bd1d35c5ac2ca1e))
365
- * **utils:** [`findSubpath`] support `/index`-less targets ([8f68ae8](https://github.com/flex-development/mlly/commit/8f68ae8b300bbe507eb6a401d21d9a30cf010115))
366
-
514
+ - [[`a956cb1`](https://github.com/flex-development/mlly/commit/a956cb10b27f63f683a64b5028bef87170862e44)] `ParsedSubpath#target`
515
+ - [[`b8dd2d0`](https://github.com/flex-development/mlly/commit/b8dd2d03776959e374dc242b3d7189e20742f6fa)] **internal:** `invalidSegmentRegex`
516
+ - [[`045c4c6`](https://github.com/flex-development/mlly/commit/045c4c614ebf8eb213f6801f24f6759de527c796)] **internal:** `validateArraySet`
517
+ - [[`82c63b4`](https://github.com/flex-development/mlly/commit/82c63b467615c0e799c4bb9d4bd1d35c5ac2ca1e)] **internal:** `validateMap`
518
+ - [[`8f68ae8`](https://github.com/flex-development/mlly/commit/8f68ae8b300bbe507eb6a401d21d9a30cf010115)] **utils:** [`findSubpath`] support `/index`-less targets
367
519
 
368
520
  ### :bug: Fixes
369
521
 
370
- * **internal:** [`Resolver#resolvePackageTarget`] `package.json` url for numeric property key error ([cde6441](https://github.com/flex-development/mlly/commit/cde64411035c40e927e778158e27f673257821e8))
371
- * **ts:** ensure typechecks pass without peer deps installed ([779cddf](https://github.com/flex-development/mlly/commit/779cddf91f6d4e0e04ecebab0e0c6942aeaa9286))
372
- * **utils:** [`findRequires`] array item extraction ([e719d34](https://github.com/flex-development/mlly/commit/e719d34b36cf7c68ed240eee2e0a6f55194e349a))
373
- * **utils:** [`findRequires`] object value extraction ([cffba6b](https://github.com/flex-development/mlly/commit/cffba6b113cb85430d54a131a742c03bedb62d5b))
374
- * **utils:** [`findRequires`] parameter extraction ([9af669b](https://github.com/flex-development/mlly/commit/9af669b02a1153381d3382d74ff79fbc8e41525d))
375
- * **utils:** [`resolveModule`] `[@types](https://github.com/types)` resolution ([beeadeb](https://github.com/flex-development/mlly/commit/beeadebbc959bc16ef7eded8a14a450616297640))
376
-
522
+ - [[`cde6441`](https://github.com/flex-development/mlly/commit/cde64411035c40e927e778158e27f673257821e8)] **internal:** [`Resolver#resolvePackageTarget`] `package.json` url for numeric property key error
523
+ - [[`779cddf`](https://github.com/flex-development/mlly/commit/779cddf91f6d4e0e04ecebab0e0c6942aeaa9286)] **ts:** ensure typechecks pass without peer deps installed
524
+ - [[`e719d34`](https://github.com/flex-development/mlly/commit/e719d34b36cf7c68ed240eee2e0a6f55194e349a)] **utils:** [`findRequires`] array item extraction
525
+ - [[`cffba6b`](https://github.com/flex-development/mlly/commit/cffba6b113cb85430d54a131a742c03bedb62d5b)] **utils:** [`findRequires`] object value extraction
526
+ - [[`9af669b`](https://github.com/flex-development/mlly/commit/9af669b02a1153381d3382d74ff79fbc8e41525d)] **utils:** [`findRequires`] parameter extraction
527
+ - [[`beeadeb`](https://github.com/flex-development/mlly/commit/beeadebbc959bc16ef7eded8a14a450616297640)] **utils:** [`resolveModule`] `[@types](https://github.com/types)` resolution
377
528
 
378
529
  ### :house_with_garden: Housekeeping
379
530
 
380
- * move changelog config to `config` directory ([395e355](https://github.com/flex-development/mlly/commit/395e355d17c7b977020612443e93dd49b44c4b1f))
381
- * sync updated config files ([8d8ccef](https://github.com/flex-development/mlly/commit/8d8ccefd878b68773bdbaaece9cd738e131208b5))
382
- * update config files ([f85bf43](https://github.com/flex-development/mlly/commit/f85bf43db9eb8c26d36c77e8804d8f1c8d023736))
383
- * **github:** merge `pre-push` workflow into `commit-msg` workflow ([e12e977](https://github.com/flex-development/mlly/commit/e12e97726152df1249b6cf3637949d573105c166))
531
+ - [[`395e355`](https://github.com/flex-development/mlly/commit/395e355d17c7b977020612443e93dd49b44c4b1f)] move changelog config to `config` directory
532
+ - [[`8d8ccef`](https://github.com/flex-development/mlly/commit/8d8ccefd878b68773bdbaaece9cd738e131208b5)] sync updated config files
533
+ - [[`f85bf43`](https://github.com/flex-development/mlly/commit/f85bf43db9eb8c26d36c77e8804d8f1c8d023736)] update config files
534
+ - [[`e12e977`](https://github.com/flex-development/mlly/commit/e12e97726152df1249b6cf3637949d573105c166)] **github:** merge `pre-push` workflow into `commit-msg` workflow
384
535
 
536
+ ### :mechanical_arm: Refactors
385
537
 
386
- ### :zap: Refactors
387
-
388
- * **utils:** schema validation ([a7c2682](https://github.com/flex-development/mlly/commit/a7c26827b747027d2b82be0361a42e46c17277c1))
389
- * **utils:** [`getFormat`] enforce absolute module id ([41e0901](https://github.com/flex-development/mlly/commit/41e09016cb3cfdff9a9afa900802969a6e52fb3a))
390
- * **utils:** [`getSource`] enforce absolute module id ([b9180cc](https://github.com/flex-development/mlly/commit/b9180cc0ac378d0eedc1724eb7115e7bab63ed08))
391
-
538
+ - [[`a7c2682`](https://github.com/flex-development/mlly/commit/a7c26827b747027d2b82be0361a42e46c17277c1)] **utils:** schema validation
539
+ - [[`41e0901`](https://github.com/flex-development/mlly/commit/41e09016cb3cfdff9a9afa900802969a6e52fb3a)] **utils:** [`getFormat`] enforce absolute module id
540
+ - [[`b9180cc`](https://github.com/flex-development/mlly/commit/b9180cc0ac378d0eedc1724eb7115e7bab63ed08)] **utils:** [`getSource`] enforce absolute module id
392
541
 
393
542
  ### :white_check_mark: Testing
394
543
 
395
- * stablize package `exports` / `imports` tests ([187384b](https://github.com/flex-development/mlly/commit/187384b197fd91a723c9feccc9baa3c206c28008))
396
- * **utils:** [`toBareSpecifier`] stabilize tests ([3621201](https://github.com/flex-development/mlly/commit/3621201258c3f10c407546741c347afb427d523d))
544
+ - [[`187384b`](https://github.com/flex-development/mlly/commit/187384b197fd91a723c9feccc9baa3c206c28008)] stablize package `exports` / `imports` tests
545
+ - [[`3621201`](https://github.com/flex-development/mlly/commit/3621201258c3f10c407546741c347afb427d523d)] **utils:** [`toBareSpecifier`] stabilize tests
397
546
 
398
547
  ## [1.0.0-alpha.11](https://github.com/flex-development/mlly/compare/1.0.0-alpha.10...1.0.0-alpha.11) (2023-02-11)
399
548
 
400
-
401
549
  ### :package: Build
402
550
 
403
- * **deps-dev:** Bump @vitest/coverage-c8 from 0.28.3 to 0.28.4 ([#122](https://github.com/flex-development/mlly/issues/122)) ([667754f](https://github.com/flex-development/mlly/commit/667754fce9774037dbc2ec60532b5b83f2c36aa9))
404
- * **deps-dev:** Bump esbuild from 0.17.6 to 0.17.7 ([#124](https://github.com/flex-development/mlly/issues/124)) ([719a8b6](https://github.com/flex-development/mlly/commit/719a8b6bd1595852a2fd1c4e541180532a6004dd))
405
- * **deps-dev:** Bump vercel from 28.15.2 to 28.15.3 ([#123](https://github.com/flex-development/mlly/issues/123)) ([82d85d1](https://github.com/flex-development/mlly/commit/82d85d1a1ec46207d113923af3e4dd1c3591b65d))
406
-
551
+ - [[`667754f`](https://github.com/flex-development/mlly/commit/667754fce9774037dbc2ec60532b5b83f2c36aa9)] **deps-dev:** Bump @vitest/coverage-c8 from 0.28.3 to 0.28.4 ([#122](https://github.com/flex-development/mlly/issues/122))
552
+ - [[`719a8b6`](https://github.com/flex-development/mlly/commit/719a8b6bd1595852a2fd1c4e541180532a6004dd)] **deps-dev:** Bump esbuild from 0.17.6 to 0.17.7 ([#124](https://github.com/flex-development/mlly/issues/124))
553
+ - [[`82d85d1`](https://github.com/flex-development/mlly/commit/82d85d1a1ec46207d113923af3e4dd1c3591b65d)] **deps-dev:** Bump vercel from 28.15.2 to 28.15.3 ([#123](https://github.com/flex-development/mlly/issues/123))
407
554
 
408
555
  ### :robot: Continuous Integration
409
556
 
410
- * **deps:** Bump actions/cache from 3.2.4 to 3.2.5 ([#126](https://github.com/flex-development/mlly/issues/126)) ([f9e1371](https://github.com/flex-development/mlly/commit/f9e1371aa88af80f38cc50cd3f6d757c896f8e6e))
411
-
557
+ - [[`f9e1371`](https://github.com/flex-development/mlly/commit/f9e1371aa88af80f38cc50cd3f6d757c896f8e6e)] **deps:** Bump actions/cache from 3.2.4 to 3.2.5 ([#126](https://github.com/flex-development/mlly/issues/126))
412
558
 
413
559
  ### :bug: Fixes
414
560
 
415
- * **utils:** [`fillModules`] `dot.case` specifier support ([2be2adb](https://github.com/flex-development/mlly/commit/2be2adbfb1bde578898cd4fa4707e29c90b43254))
561
+ - [[`2be2adb`](https://github.com/flex-development/mlly/commit/2be2adbfb1bde578898cd4fa4707e29c90b43254)] **utils:** [`fillModules`] `dot.case` specifier support
416
562
 
417
563
  ## [1.0.0-alpha.10](https://github.com/flex-development/mlly/compare/1.0.0-alpha.9...1.0.0-alpha.10) (2023-02-09)
418
564
 
419
-
420
565
  ### :package: Build
421
566
 
422
- * **deps-dev:** Bump @docsearch/react from 3.3.2 to 3.3.3 ([#111](https://github.com/flex-development/mlly/issues/111)) ([c7b1286](https://github.com/flex-development/mlly/commit/c7b1286aab74d5cf0e48996eda8efb2cc66450b5))
423
- * **deps-dev:** Bump @types/node from 18.11.18 to 18.13.0 ([#116](https://github.com/flex-development/mlly/issues/116)) ([41a5620](https://github.com/flex-development/mlly/commit/41a56209cb282a0338112efd46194f969453fa5d))
424
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.50.0 to 5.51.0 ([#107](https://github.com/flex-development/mlly/issues/107)) ([f3d88bc](https://github.com/flex-development/mlly/commit/f3d88bc6eeba9cba650705f40836cb39f19e6155))
425
- * **deps-dev:** Bump @typescript-eslint/parser from 5.50.0 to 5.51.0 ([#112](https://github.com/flex-development/mlly/issues/112)) ([177d989](https://github.com/flex-development/mlly/commit/177d98937accfc4dad648f672e55849ea0b49968))
426
- * **deps-dev:** Bump @vitest/ui from 0.28.3 to 0.28.4 ([#100](https://github.com/flex-development/mlly/issues/100)) ([48cb9b6](https://github.com/flex-development/mlly/commit/48cb9b62930e0f2b6d0080696781539d55585abb))
427
- * **deps-dev:** Bump cspell from 6.20.1 to 6.21.0 ([#103](https://github.com/flex-development/mlly/issues/103)) ([2048d88](https://github.com/flex-development/mlly/commit/2048d883332910b2bdd8639d80b16d50eed6a560))
428
- * **deps-dev:** Bump cspell from 6.21.0 to 6.22.0 ([#109](https://github.com/flex-development/mlly/issues/109)) ([81ea472](https://github.com/flex-development/mlly/commit/81ea472ddc49d149284755d53843a15abf87991a))
429
- * **deps-dev:** Bump esbuild from 0.17.5 to 0.17.6 ([#106](https://github.com/flex-development/mlly/issues/106)) ([2dda0cc](https://github.com/flex-development/mlly/commit/2dda0cc6667f812f3a88d8a9cfd499fc2e35baff))
430
- * **deps-dev:** Bump eslint-plugin-jsdoc from 39.7.5 to 39.8.0 ([#102](https://github.com/flex-development/mlly/issues/102)) ([d2666ec](https://github.com/flex-development/mlly/commit/d2666ec36a1aab43beb74322944c70ee121e1bf6))
431
- * **deps-dev:** Bump lint-staged from 13.1.0 to 13.1.1 ([#115](https://github.com/flex-development/mlly/issues/115)) ([a63fa71](https://github.com/flex-development/mlly/commit/a63fa71f6cc5c756d3e515bb65cdbf759719767e))
432
- * **deps-dev:** Bump prettier from 2.8.3 to 2.8.4 ([#119](https://github.com/flex-development/mlly/issues/119)) ([98263e6](https://github.com/flex-development/mlly/commit/98263e6b9be03a36a0697fd391f0647bb94764bf))
433
- * **deps-dev:** Bump pretty-format from 29.4.1 to 29.4.2 ([#113](https://github.com/flex-development/mlly/issues/113)) ([4ec7d50](https://github.com/flex-development/mlly/commit/4ec7d5051a45e1b8c89a94db08a4d521ccbe5e30))
434
- * **deps-dev:** Bump vercel from 28.15.0 to 28.15.1 ([#110](https://github.com/flex-development/mlly/issues/110)) ([56acc58](https://github.com/flex-development/mlly/commit/56acc58f04adc13afd9b73cd3c8afd134e9f25c4))
435
- * **deps-dev:** Bump vercel from 28.15.1 to 28.15.2 ([#117](https://github.com/flex-development/mlly/issues/117)) ([560b8d5](https://github.com/flex-development/mlly/commit/560b8d50f102059b0d684a80e8834cb2f69b114c))
436
- * **deps-dev:** Bump vfile from 5.3.6 to 5.3.7 ([#118](https://github.com/flex-development/mlly/issues/118)) ([82af6a7](https://github.com/flex-development/mlly/commit/82af6a742c70e7b78dfdda2f014ba8b393aeba81))
437
- * **deps-dev:** Bump vitest from 0.28.3 to 0.28.4 ([#99](https://github.com/flex-development/mlly/issues/99)) ([a4a4dab](https://github.com/flex-development/mlly/commit/a4a4dab13f5f929c0e86699d5feda560a215df19))
438
- * **pkg:** include `src` files in distribution ([ada4cfb](https://github.com/flex-development/mlly/commit/ada4cfbc4ef52fec3038dbd9c98ead0f37afa565))
439
-
567
+ - [[`c7b1286`](https://github.com/flex-development/mlly/commit/c7b1286aab74d5cf0e48996eda8efb2cc66450b5)] **deps-dev:** Bump @docsearch/react from 3.3.2 to 3.3.3 ([#111](https://github.com/flex-development/mlly/issues/111))
568
+ - [[`41a5620`](https://github.com/flex-development/mlly/commit/41a56209cb282a0338112efd46194f969453fa5d)] **deps-dev:** Bump @types/node from 18.11.18 to 18.13.0 ([#116](https://github.com/flex-development/mlly/issues/116))
569
+ - [[`f3d88bc`](https://github.com/flex-development/mlly/commit/f3d88bc6eeba9cba650705f40836cb39f19e6155)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.50.0 to 5.51.0 ([#107](https://github.com/flex-development/mlly/issues/107))
570
+ - [[`177d989`](https://github.com/flex-development/mlly/commit/177d98937accfc4dad648f672e55849ea0b49968)] **deps-dev:** Bump @typescript-eslint/parser from 5.50.0 to 5.51.0 ([#112](https://github.com/flex-development/mlly/issues/112))
571
+ - [[`48cb9b6`](https://github.com/flex-development/mlly/commit/48cb9b62930e0f2b6d0080696781539d55585abb)] **deps-dev:** Bump @vitest/ui from 0.28.3 to 0.28.4 ([#100](https://github.com/flex-development/mlly/issues/100))
572
+ - [[`2048d88`](https://github.com/flex-development/mlly/commit/2048d883332910b2bdd8639d80b16d50eed6a560)] **deps-dev:** Bump cspell from 6.20.1 to 6.21.0 ([#103](https://github.com/flex-development/mlly/issues/103))
573
+ - [[`81ea472`](https://github.com/flex-development/mlly/commit/81ea472ddc49d149284755d53843a15abf87991a)] **deps-dev:** Bump cspell from 6.21.0 to 6.22.0 ([#109](https://github.com/flex-development/mlly/issues/109))
574
+ - [[`2dda0cc`](https://github.com/flex-development/mlly/commit/2dda0cc6667f812f3a88d8a9cfd499fc2e35baff)] **deps-dev:** Bump esbuild from 0.17.5 to 0.17.6 ([#106](https://github.com/flex-development/mlly/issues/106))
575
+ - [[`d2666ec`](https://github.com/flex-development/mlly/commit/d2666ec36a1aab43beb74322944c70ee121e1bf6)] **deps-dev:** Bump eslint-plugin-jsdoc from 39.7.5 to 39.8.0 ([#102](https://github.com/flex-development/mlly/issues/102))
576
+ - [[`a63fa71`](https://github.com/flex-development/mlly/commit/a63fa71f6cc5c756d3e515bb65cdbf759719767e)] **deps-dev:** Bump lint-staged from 13.1.0 to 13.1.1 ([#115](https://github.com/flex-development/mlly/issues/115))
577
+ - [[`98263e6`](https://github.com/flex-development/mlly/commit/98263e6b9be03a36a0697fd391f0647bb94764bf)] **deps-dev:** Bump prettier from 2.8.3 to 2.8.4 ([#119](https://github.com/flex-development/mlly/issues/119))
578
+ - [[`4ec7d50`](https://github.com/flex-development/mlly/commit/4ec7d5051a45e1b8c89a94db08a4d521ccbe5e30)] **deps-dev:** Bump pretty-format from 29.4.1 to 29.4.2 ([#113](https://github.com/flex-development/mlly/issues/113))
579
+ - [[`56acc58`](https://github.com/flex-development/mlly/commit/56acc58f04adc13afd9b73cd3c8afd134e9f25c4)] **deps-dev:** Bump vercel from 28.15.0 to 28.15.1 ([#110](https://github.com/flex-development/mlly/issues/110))
580
+ - [[`560b8d5`](https://github.com/flex-development/mlly/commit/560b8d50f102059b0d684a80e8834cb2f69b114c)] **deps-dev:** Bump vercel from 28.15.1 to 28.15.2 ([#117](https://github.com/flex-development/mlly/issues/117))
581
+ - [[`82af6a7`](https://github.com/flex-development/mlly/commit/82af6a742c70e7b78dfdda2f014ba8b393aeba81)] **deps-dev:** Bump vfile from 5.3.6 to 5.3.7 ([#118](https://github.com/flex-development/mlly/issues/118))
582
+ - [[`a4a4dab`](https://github.com/flex-development/mlly/commit/a4a4dab13f5f929c0e86699d5feda560a215df19)] **deps-dev:** Bump vitest from 0.28.3 to 0.28.4 ([#99](https://github.com/flex-development/mlly/issues/99))
583
+ - [[`ada4cfb`](https://github.com/flex-development/mlly/commit/ada4cfbc4ef52fec3038dbd9c98ead0f37afa565)] **pkg:** include `src` files in distribution
440
584
 
441
585
  ### :robot: Continuous Integration
442
586
 
443
- * **deps:** bump GitGuardian/ggshield-action from 1.1.0 to master ([e4d44f1](https://github.com/flex-development/mlly/commit/e4d44f1b4d728f2511b1a68936045a4fc700ddca))
444
-
587
+ - [[`e4d44f1`](https://github.com/flex-development/mlly/commit/e4d44f1b4d728f2511b1a68936045a4fc700ddca)] **deps:** bump GitGuardian/ggshield-action from 1.1.0 to master
445
588
 
446
589
  ### :pencil: Documentation
447
590
 
448
- * **loader:** fix jsdoc annotations ([49b83b8](https://github.com/flex-development/mlly/commit/49b83b8922738abdbcd3bff3e4500de0b996eb9d))
449
- * **loader:** update descriptions and reference links ([9e82d4e](https://github.com/flex-development/mlly/commit/9e82d4e76afeb29ac9b9187628296698a26b361d))
450
-
591
+ - [[`49b83b8`](https://github.com/flex-development/mlly/commit/49b83b8922738abdbcd3bff3e4500de0b996eb9d)] **loader:** fix jsdoc annotations
592
+ - [[`9e82d4e`](https://github.com/flex-development/mlly/commit/9e82d4e76afeb29ac9b9187628296698a26b361d)] **loader:** update descriptions and reference links
451
593
 
452
594
  ### :bug: Fixes
453
595
 
454
- * **utils:** [`fillModules`] specifier replacement ([a9221ff](https://github.com/flex-development/mlly/commit/a9221ffb22bbcac90b22180a9c9b9147464029b8))
455
- * **utils:** [`toBareSpecifier`] package directory regex ([e60a9f8](https://github.com/flex-development/mlly/commit/e60a9f82ab0cbe5e1c40be01cc7b47719823b7af))
596
+ - [[`a9221ff`](https://github.com/flex-development/mlly/commit/a9221ffb22bbcac90b22180a9c9b9147464029b8)] **utils:** [`fillModules`] specifier replacement
597
+ - [[`e60a9f8`](https://github.com/flex-development/mlly/commit/e60a9f82ab0cbe5e1c40be01cc7b47719823b7af)] **utils:** [`toBareSpecifier`] package directory regex
456
598
 
457
599
  ## [1.0.0-alpha.9](https://github.com/flex-development/mlly/compare/1.0.0-alpha.8...1.0.0-alpha.9) (2023-02-02)
458
600
 
459
-
460
601
  ### :package: Build
461
602
 
462
- * **deps-dev:** Bump @sindresorhus/slugify from 2.1.1 to 2.2.0 ([#82](https://github.com/flex-development/mlly/issues/82)) ([e831388](https://github.com/flex-development/mlly/commit/e831388143982244eaeba3b548d74c899182f69d))
463
- * **deps-dev:** Bump @types/eslint from 8.4.10 to 8.21.0 ([#93](https://github.com/flex-development/mlly/issues/93)) ([ae0b99a](https://github.com/flex-development/mlly/commit/ae0b99ac582fc3f06df23a1deab5c40bd2393c9d))
464
- * **deps-dev:** bump @types/node from 16.18.11 to 18.11.18 ([64c4452](https://github.com/flex-development/mlly/commit/64c44523dd60f804d0e60f7f6cf4668084891575))
465
- * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.49.0 to 5.50.0 ([#84](https://github.com/flex-development/mlly/issues/84)) ([88ee8f8](https://github.com/flex-development/mlly/commit/88ee8f8a232110de7f1abaee7726b435a14065d3))
466
- * **deps-dev:** Bump @typescript-eslint/parser from 5.49.0 to 5.50.0 ([#85](https://github.com/flex-development/mlly/issues/85)) ([dec5dcc](https://github.com/flex-development/mlly/commit/dec5dccb76b4fa16e027ffc4388cea2e753d0939))
467
- * **deps-dev:** Bump @vue/runtime-core from 3.2.45 to 3.2.47 ([#97](https://github.com/flex-development/mlly/issues/97)) ([20491e2](https://github.com/flex-development/mlly/commit/20491e2d470e427d0377c8e0f8b158ea1d83bd7e))
468
- * **deps-dev:** Bump cspell from 6.19.2 to 6.20.1 ([#90](https://github.com/flex-development/mlly/issues/90)) ([247e9d1](https://github.com/flex-development/mlly/commit/247e9d1eac59770e1c0f1f920faf86123a9eeb37))
469
- * **deps-dev:** Bump eslint-plugin-jsdoc from 39.7.4 to 39.7.5 ([#87](https://github.com/flex-development/mlly/issues/87)) ([0821270](https://github.com/flex-development/mlly/commit/082127092ff643d70929e6ea29167f71f990e628))
470
- * **deps-dev:** Bump graphql-config from 4.4.0 to 4.4.1 ([#91](https://github.com/flex-development/mlly/issues/91)) ([c0c8368](https://github.com/flex-development/mlly/commit/c0c8368582dcfa1f0a208f10eacd27e9d318e034))
471
- * **deps-dev:** Bump vercel from 28.14.0 to 28.15.0 ([#92](https://github.com/flex-development/mlly/issues/92)) ([82c9698](https://github.com/flex-development/mlly/commit/82c9698bf5fa72a87958a3763d827764f4ca2bf0))
472
- * **deps-dev:** Bump vue from 3.2.45 to 3.2.47 ([#96](https://github.com/flex-development/mlly/issues/96)) ([88a26c9](https://github.com/flex-development/mlly/commit/88a26c90637412900751d26e0a83cee13e15ba95))
473
-
603
+ - [[`e831388`](https://github.com/flex-development/mlly/commit/e831388143982244eaeba3b548d74c899182f69d)] **deps-dev:** Bump @sindresorhus/slugify from 2.1.1 to 2.2.0 ([#82](https://github.com/flex-development/mlly/issues/82))
604
+ - [[`ae0b99a`](https://github.com/flex-development/mlly/commit/ae0b99ac582fc3f06df23a1deab5c40bd2393c9d)] **deps-dev:** Bump @types/eslint from 8.4.10 to 8.21.0 ([#93](https://github.com/flex-development/mlly/issues/93))
605
+ - [[`64c4452`](https://github.com/flex-development/mlly/commit/64c44523dd60f804d0e60f7f6cf4668084891575)] **deps-dev:** bump @types/node from 16.18.11 to 18.11.18
606
+ - [[`88ee8f8`](https://github.com/flex-development/mlly/commit/88ee8f8a232110de7f1abaee7726b435a14065d3)] **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.49.0 to 5.50.0 ([#84](https://github.com/flex-development/mlly/issues/84))
607
+ - [[`dec5dcc`](https://github.com/flex-development/mlly/commit/dec5dccb76b4fa16e027ffc4388cea2e753d0939)] **deps-dev:** Bump @typescript-eslint/parser from 5.49.0 to 5.50.0 ([#85](https://github.com/flex-development/mlly/issues/85))
608
+ - [[`20491e2`](https://github.com/flex-development/mlly/commit/20491e2d470e427d0377c8e0f8b158ea1d83bd7e)] **deps-dev:** Bump @vue/runtime-core from 3.2.45 to 3.2.47 ([#97](https://github.com/flex-development/mlly/issues/97))
609
+ - [[`247e9d1`](https://github.com/flex-development/mlly/commit/247e9d1eac59770e1c0f1f920faf86123a9eeb37)] **deps-dev:** Bump cspell from 6.19.2 to 6.20.1 ([#90](https://github.com/flex-development/mlly/issues/90))
610
+ - [[`0821270`](https://github.com/flex-development/mlly/commit/082127092ff643d70929e6ea29167f71f990e628)] **deps-dev:** Bump eslint-plugin-jsdoc from 39.7.4 to 39.7.5 ([#87](https://github.com/flex-development/mlly/issues/87))
611
+ - [[`c0c8368`](https://github.com/flex-development/mlly/commit/c0c8368582dcfa1f0a208f10eacd27e9d318e034)] **deps-dev:** Bump graphql-config from 4.4.0 to 4.4.1 ([#91](https://github.com/flex-development/mlly/issues/91))
612
+ - [[`82c9698`](https://github.com/flex-development/mlly/commit/82c9698bf5fa72a87958a3763d827764f4ca2bf0)] **deps-dev:** Bump vercel from 28.14.0 to 28.15.0 ([#92](https://github.com/flex-development/mlly/issues/92))
613
+ - [[`88a26c9`](https://github.com/flex-development/mlly/commit/88a26c90637412900751d26e0a83cee13e15ba95)] **deps-dev:** Bump vue from 3.2.45 to 3.2.47 ([#96](https://github.com/flex-development/mlly/issues/96))
474
614
 
475
615
  ### :robot: Continuous Integration
476
616
 
477
- * **deps:** Bump actions/cache from 3.2.3 to 3.2.4 ([#81](https://github.com/flex-development/mlly/issues/81)) ([422fb8c](https://github.com/flex-development/mlly/commit/422fb8cc64cd4a9738bad3d001885aa50cf4f9eb))
478
- * **workflows:** [`ci`] add `gitguardian` job ([d74b1f7](https://github.com/flex-development/mlly/commit/d74b1f7851c46e763a6e70a790f7b0f6ec5425d8))
479
-
617
+ - [[`422fb8c`](https://github.com/flex-development/mlly/commit/422fb8cc64cd4a9738bad3d001885aa50cf4f9eb)] **deps:** Bump actions/cache from 3.2.3 to 3.2.4 ([#81](https://github.com/flex-development/mlly/issues/81))
618
+ - [[`d74b1f7`](https://github.com/flex-development/mlly/commit/d74b1f7851c46e763a6e70a790f7b0f6ec5425d8)] **workflows:** [`ci`] add `gitguardian` job
480
619
 
481
620
  ### :bug: Fixes
482
621
 
483
- * **resolve:** unhoisted package resolution ([26523ef](https://github.com/flex-development/mlly/commit/26523ef7e8a2398978badc6f4fffccfeec806575))
484
-
622
+ - [[`26523ef`](https://github.com/flex-development/mlly/commit/26523ef7e8a2398978badc6f4fffccfeec806575)] **resolve:** unhoisted package resolution
485
623
 
486
624
  ### :house_with_garden: Housekeeping
487
625
 
488
- * [eslint] update rules for test files ([143a34a](https://github.com/flex-development/mlly/commit/143a34ad2141ddec495bd45bc92501be7642a949))
489
- * **github:** cleanup reference link in `.github/funding.yml` ([5c75139](https://github.com/flex-development/mlly/commit/5c7513977985c0e4422e895d65512f37af451f64))
490
- * **github:** remove `git@bitbucket.org` alias from sample `.gitconfig` ([155f6d8](https://github.com/flex-development/mlly/commit/155f6d87f5f623121b40398e87913d89ce4266f9))
491
- * **github:** update `.env` rule in `.gitignore` ([e54635a](https://github.com/flex-development/mlly/commit/e54635afdbaf846364d28cca86162bcc3c17e7a0))
626
+ - [[`143a34a`](https://github.com/flex-development/mlly/commit/143a34ad2141ddec495bd45bc92501be7642a949)] [eslint] update rules for test files
627
+ - [[`5c75139`](https://github.com/flex-development/mlly/commit/5c7513977985c0e4422e895d65512f37af451f64)] **github:** cleanup reference link in `.github/funding.yml`
628
+ - [[`155f6d8`](https://github.com/flex-development/mlly/commit/155f6d87f5f623121b40398e87913d89ce4266f9)] **github:** remove `git@bitbucket.org` alias from sample `.gitconfig`
629
+ - [[`e54635a`](https://github.com/flex-development/mlly/commit/e54635afdbaf846364d28cca86162bcc3c17e7a0)] **github:** update `.env` rule in `.gitignore`
492
630
 
493
631
  ## [1.0.0-alpha.8](https://github.com/flex-development/mlly/compare/1.0.0-alpha.7...1.0.0-alpha.8) (2023-01-29)
494
632
 
495
-
496
633
  ### :package: Build
497
634
 
498
- * **deps-dev:** bump eslint from 8.32.0 to 8.33.0 ([9464965](https://github.com/flex-development/mlly/commit/9464965223415264301b2370e56f103f7202399a)), closes [#79](https://github.com/flex-development/mlly/issues/79)
499
- * **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 ([#76](https://github.com/flex-development/mlly/issues/76)) ([fd89590](https://github.com/flex-development/mlly/commit/fd89590a90d2d133a84efbeb8153e80aee0f44ce))
500
- * **deps-dev:** cleanup changelog deps ([e899dd5](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8))
501
- * **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0 ([c39f63c](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd))
502
- * **nvm:** bump node from 16 to 19 ([4442dbb](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308))
503
- * **ts:** update file exclusion list ([f0a512f](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc))
504
-
635
+ - [[`9464965`](https://github.com/flex-development/mlly/commit/9464965223415264301b2370e56f103f7202399a)] **deps-dev:** bump eslint from 8.32.0 to 8.33.0
636
+ - [[`fd89590`](https://github.com/flex-development/mlly/commit/fd89590a90d2d133a84efbeb8153e80aee0f44ce)] **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 ([#76](https://github.com/flex-development/mlly/issues/76))
637
+ - [[`e899dd5`](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8)] **deps-dev:** cleanup changelog deps
638
+ - [[`c39f63c`](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd)] **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0
639
+ - [[`4442dbb`](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308)] **nvm:** bump node from 16 to 19
640
+ - [[`f0a512f`](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc)] **ts:** update file exclusion list
505
641
 
506
642
  ### :robot: Continuous Integration
507
643
 
508
- * **deps:** Bump actions/github-script from 6.3.3 to 6.4.0 ([#77](https://github.com/flex-development/mlly/issues/77)) ([9873dc9](https://github.com/flex-development/mlly/commit/9873dc992caecc55f325191be461041fba8fd199))
509
- * **workflows:** [`ci`] refactor `metadata` job conditional ([c909436](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c))
510
-
644
+ - [[`9873dc9`](https://github.com/flex-development/mlly/commit/9873dc992caecc55f325191be461041fba8fd199)] **deps:** Bump actions/github-script from 6.3.3 to 6.4.0 ([#77](https://github.com/flex-development/mlly/issues/77))
645
+ - [[`c909436`](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c)] **workflows:** [`ci`] refactor `metadata` job conditional
511
646
 
512
647
  ### :house_with_garden: Housekeeping
513
648
 
514
- * **github:** add commit scope `loader` ([8b57984](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46))
515
- * **github:** add commit scope `nvm` ([905e7d1](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf))
516
- * **github:** add commit scope `spelling` ([7a111d0](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359))
517
- * **spelling:** add "infile" to dictionary ([3ade2df](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20))
518
- * **tests:** [mocks] remove `@flex-development/pathe` ([ccd9bbe](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888))
519
- * **vscode:** add todo tree settings to `settings.json` ([41a9097](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827))
520
- * **vscode:** remove stale `volar` settings ([6998a8c](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1))
521
- * **yarn:** disable transparent workspaces ([8e519fd](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b))
649
+ - [[`8b57984`](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46)] **github:** add commit scope `loader`
650
+ - [[`905e7d1`](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf)] **github:** add commit scope `nvm`
651
+ - [[`7a111d0`](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359)] **github:** add commit scope `spelling`
652
+ - [[`3ade2df`](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20)] **spelling:** add "infile" to dictionary
653
+ - [[`ccd9bbe`](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888)] **tests:** [mocks] remove `@flex-development/pathe`
654
+ - [[`41a9097`](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827)] **vscode:** add todo tree settings to `settings.json`
655
+ - [[`6998a8c`](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1)] **vscode:** remove stale `volar` settings
656
+ - [[`8e519fd`](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b)] **yarn:** disable transparent workspaces
522
657
 
523
658
  ## [1.0.0-alpha.7](https://github.com/flex-development/mlly/compare/1.0.0-alpha.6...1.0.0-alpha.7) (2023-01-27)
524
659
 
525
-
526
660
  ### ⚠ BREAKING CHANGES
527
661
 
528
- * **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
529
- * **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
530
- * **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
531
- * **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
532
- * **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
533
- * **types:** `MIMEType` -> `MimeType`
534
- * **exports:** remove subpath `"./lib/*"`
662
+ - **types:** `MIMEType` -> `MimeType`
663
+ - **exports:** remove subpath `"./lib/*"`
535
664
 
536
665
  ### :package: Build
537
666
 
538
- * output `.d.mts` and `.mjs` files separately ([8e05a0d](https://github.com/flex-development/mlly/commit/8e05a0d70ba6bc972947a04bcceb3dd7304bd768))
539
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([9f70d1a](https://github.com/flex-development/mlly/commit/9f70d1aa397ec52738584c08d209472340d8f628))
540
- * **deps-dev:** Bump esbuild from 0.17.4 to 0.17.5 ([#73](https://github.com/flex-development/mlly/issues/73)) ([e7add8d](https://github.com/flex-development/mlly/commit/e7add8d458d2ba4b04959c6c769d0bdb8e5635bf))
541
- * **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.8 to 39.6.9 ([#72](https://github.com/flex-development/mlly/issues/72)) ([63d710f](https://github.com/flex-development/mlly/commit/63d710fd2ced0c1003724ab19bc1a08de5137f98))
542
- * **deps-dev:** bump typescript from 4.9.4 to 5.0.0-dev.20230102 ([f8b753b](https://github.com/flex-development/mlly/commit/f8b753b086be2bbb3506e21e7ecd86d5c94fdc85))
543
- * **deps-dev:** Bump vercel from 28.13.2 to 28.14.0 ([#71](https://github.com/flex-development/mlly/issues/71)) ([d31fa67](https://github.com/flex-development/mlly/commit/d31fa67cc0df03b42087a698ac2b14c5f05ba682))
544
- * **deps-dev:** remove vitest patch ([5ccce0b](https://github.com/flex-development/mlly/commit/5ccce0bc4f06871594ede77238db38c11917b0fd))
545
- * **deps-peer:** add `@types/node>=14.17.0` ([67899e3](https://github.com/flex-development/mlly/commit/67899e3a632bd048f5ec90ce2732bf87b57f873b))
546
- * **deps:** bump @flex-development/errnode from 1.2.0 to 1.3.0 ([c95b3c8](https://github.com/flex-development/mlly/commit/c95b3c8a8343474840eab1afefb1c0e57a2a3d90))
547
- * **deps:** bump @flex-development/import-regex from 2.0.0 to 2.0.1 ([e868cae](https://github.com/flex-development/mlly/commit/e868cae9130d68105b35d45e7c750bbf26f824ed))
548
- * **deps:** bump @flex-development/pathe from 1.0.1 to 1.0.2 ([8954b4a](https://github.com/flex-development/mlly/commit/8954b4aed63e0523964faf1b85b9d9ac07c338bd))
549
- * **deps:** bump @flex-development/pathe from 1.0.2 to 1.0.3 ([3910fcf](https://github.com/flex-development/mlly/commit/3910fcfb8e778cd5dd0af5a3b355a93378d5e2b8))
550
- * **deps:** bump @flex-development/tutils from 6.0.0-alpha.7 to 6.0.0-alpha.9 ([3692fbd](https://github.com/flex-development/mlly/commit/3692fbd760e701245b99da401fcb9fd4fda8e7f6))
551
- * **exports:** remove subpath `"./lib/*"` ([d748039](https://github.com/flex-development/mlly/commit/d74803951eaf1b71d1d3ff3680b52adf63861b8f))
552
-
667
+ - [[`8e05a0d`](https://github.com/flex-development/mlly/commit/8e05a0d70ba6bc972947a04bcceb3dd7304bd768)] output `.d.mts` and `.mjs` files separately
668
+ - [[`9f70d1a`](https://github.com/flex-development/mlly/commit/9f70d1aa397ec52738584c08d209472340d8f628)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
669
+ - [[`e7add8d`](https://github.com/flex-development/mlly/commit/e7add8d458d2ba4b04959c6c769d0bdb8e5635bf)] **deps-dev:** Bump esbuild from 0.17.4 to 0.17.5 ([#73](https://github.com/flex-development/mlly/issues/73))
670
+ - [[`63d710f`](https://github.com/flex-development/mlly/commit/63d710fd2ced0c1003724ab19bc1a08de5137f98)] **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.8 to 39.6.9 ([#72](https://github.com/flex-development/mlly/issues/72))
671
+ - [[`f8b753b`](https://github.com/flex-development/mlly/commit/f8b753b086be2bbb3506e21e7ecd86d5c94fdc85)] **deps-dev:** bump typescript from 4.9.4 to 5.0.0-dev.20230102
672
+ - [[`d31fa67`](https://github.com/flex-development/mlly/commit/d31fa67cc0df03b42087a698ac2b14c5f05ba682)] **deps-dev:** Bump vercel from 28.13.2 to 28.14.0 ([#71](https://github.com/flex-development/mlly/issues/71))
673
+ - [[`5ccce0b`](https://github.com/flex-development/mlly/commit/5ccce0bc4f06871594ede77238db38c11917b0fd)] **deps-dev:** remove vitest patch
674
+ - [[`67899e3`](https://github.com/flex-development/mlly/commit/67899e3a632bd048f5ec90ce2732bf87b57f873b)] **deps-peer:** add `@types/node>=14.17.0`
675
+ - [[`c95b3c8`](https://github.com/flex-development/mlly/commit/c95b3c8a8343474840eab1afefb1c0e57a2a3d90)] **deps:** bump @flex-development/errnode from 1.2.0 to 1.3.0
676
+ - [[`e868cae`](https://github.com/flex-development/mlly/commit/e868cae9130d68105b35d45e7c750bbf26f824ed)] **deps:** bump @flex-development/import-regex from 2.0.0 to 2.0.1
677
+ - [[`8954b4a`](https://github.com/flex-development/mlly/commit/8954b4aed63e0523964faf1b85b9d9ac07c338bd)] **deps:** bump @flex-development/pathe from 1.0.1 to 1.0.2
678
+ - [[`3910fcf`](https://github.com/flex-development/mlly/commit/3910fcfb8e778cd5dd0af5a3b355a93378d5e2b8)] **deps:** bump @flex-development/pathe from 1.0.2 to 1.0.3
679
+ - [[`3692fbd`](https://github.com/flex-development/mlly/commit/3692fbd760e701245b99da401fcb9fd4fda8e7f6)] **deps:** bump @flex-development/tutils from 6.0.0-alpha.7 to 6.0.0-alpha.9
680
+ - [[`d748039`](https://github.com/flex-development/mlly/commit/d74803951eaf1b71d1d3ff3680b52adf63861b8f)] **exports:** remove subpath `"./lib/*"`
553
681
 
554
682
  ### :robot: Continuous Integration
555
683
 
556
- * [[@dependabot](https://github.com/dependabot)] update ignore list for npm ecosystem ([d500b0a](https://github.com/flex-development/mlly/commit/d500b0ac3764fe27c7e9fe2218edc723f562021f))
557
- * **deps:** bump actions/cache from 3.2.2 to 3.2.3 ([7781b0f](https://github.com/flex-development/mlly/commit/7781b0f5203e7f625947d78fb85f511a4dc8fa05)), closes [#48](https://github.com/flex-development/mlly/issues/48)
558
- * **deps:** bump actions/checkout from 3.2.0 to 3.3.0 ([e8719e2](https://github.com/flex-development/mlly/commit/e8719e2b8c3e4631193614b46f99c0fe0f918f67)), closes [#44](https://github.com/flex-development/mlly/issues/44)
559
- * **deps:** bump actions/setup-node from 3.5.1 to 3.6.0 ([b36ee40](https://github.com/flex-development/mlly/commit/b36ee40e2ef3cd7050fe712a7cdb89ac0701d063)), closes [#43](https://github.com/flex-development/mlly/issues/43)
560
- * **deps:** bump actions/upload-artifact from 3.1.1 to 3.1.2 ([51db5a6](https://github.com/flex-development/mlly/commit/51db5a694c9d1aadc17b9eda4cd06f3f5e93077a)), closes [#46](https://github.com/flex-development/mlly/issues/46)
561
- * **deps:** bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 ([47f3668](https://github.com/flex-development/mlly/commit/47f3668649292627bb50d82412789ab3bf036f92)), closes [#67](https://github.com/flex-development/mlly/issues/67)
562
- * **workflows:** [`add-to-project`] run workflow when pr is synchronized ([06d8846](https://github.com/flex-development/mlly/commit/06d8846efdb681da4b2a2ce6c83df663f266b027))
563
- * **workflows:** [`approve-pr`] add debug step ([e130bed](https://github.com/flex-development/mlly/commit/e130bedeab8dd640b1a8cf6debdb8e6e1f92cbfb))
564
- * **workflows:** [`approve-pr`] refactor approval step conditional ([8afe058](https://github.com/flex-development/mlly/commit/8afe0581fb8d61bf21faa1b03b638aad84c8ff27))
565
- * **workflows:** [`ci`] add `docs` job ([8e9f672](https://github.com/flex-development/mlly/commit/8e9f67249c1e704c3e7aa8f31297170b0b8a3346))
566
- * **workflows:** [`ci`] add typescript matrix ([659629c](https://github.com/flex-development/mlly/commit/659629cc3b477ecb454914bc82e67080ad171515))
567
- * **workflows:** [`ci`] make typescript matrix dynamic ([825142e](https://github.com/flex-development/mlly/commit/825142ecd92688ce01ea0d0ee0b6a662dfa29f18))
568
- * **workflows:** [`ci`] skip workflow run for [@dependabot](https://github.com/dependabot) on `push` ([4e9c1ca](https://github.com/flex-development/mlly/commit/4e9c1cab80c2e7a8909742891eba5cd22b564be4))
569
- * **workflows:** [`ci`] split ci job into multiple jobs ([70e6ee2](https://github.com/flex-development/mlly/commit/70e6ee20ffd7be96f4c98344d35b627f3a4fc2ec))
570
- * **workflows:** [`ci`] update codecov config ([635adcd](https://github.com/flex-development/mlly/commit/635adcd3269b2e9ae48b3eb801376ffe5c5458f6))
571
- * **workflows:** [`dependabot-auto`] sign lockfile fix commit ([a520d77](https://github.com/flex-development/mlly/commit/a520d778317f94800e2b08d622f045b12aa71d38))
572
- * **workflows:** [`integrity`] update `pull_request` event activity types ([9d5569d](https://github.com/flex-development/mlly/commit/9d5569d2dabdb1c0d9f8aa652743fe7e7888a4c3))
573
- * **workflows:** [`typescript-canary`] print typescript version ([8bcc613](https://github.com/flex-development/mlly/commit/8bcc613c2b207efffa9964b07c15ffc76a786a5a))
574
- * **workflows:** [`typescript-canary`] run workflow daily ([22feb88](https://github.com/flex-development/mlly/commit/22feb88b8d1784a3acea5be91f814c8d7ece9b50))
575
- * **workflows:** add `typescript-canary` ([87d8a0d](https://github.com/flex-development/mlly/commit/87d8a0d46632b95ae0bfecd08659f91a78a8407f))
576
- * **yarn:** fix typescript matrix testing ([c021970](https://github.com/flex-development/mlly/commit/c021970fa53907c419897aa79f8028bd64d29fd5))
577
-
684
+ - [[`d500b0a`](https://github.com/flex-development/mlly/commit/d500b0ac3764fe27c7e9fe2218edc723f562021f)] [[@dependabot](https://github.com/dependabot)] update ignore list for npm ecosystem
685
+ - [[`7781b0f`](https://github.com/flex-development/mlly/commit/7781b0f5203e7f625947d78fb85f511a4dc8fa05)] **deps:** bump actions/cache from 3.2.2 to 3.2.3
686
+ - [[`e8719e2`](https://github.com/flex-development/mlly/commit/e8719e2b8c3e4631193614b46f99c0fe0f918f67)] **deps:** bump actions/checkout from 3.2.0 to 3.3.0
687
+ - [[`b36ee40`](https://github.com/flex-development/mlly/commit/b36ee40e2ef3cd7050fe712a7cdb89ac0701d063)] **deps:** bump actions/setup-node from 3.5.1 to 3.6.0
688
+ - [[`51db5a6`](https://github.com/flex-development/mlly/commit/51db5a694c9d1aadc17b9eda4cd06f3f5e93077a)] **deps:** bump actions/upload-artifact from 3.1.1 to 3.1.2
689
+ - [[`47f3668`](https://github.com/flex-development/mlly/commit/47f3668649292627bb50d82412789ab3bf036f92)] **deps:** bump dependabot/fetch-metadata from 1.3.5 to 1.3.6
690
+ - [[`06d8846`](https://github.com/flex-development/mlly/commit/06d8846efdb681da4b2a2ce6c83df663f266b027)] **workflows:** [`add-to-project`] run workflow when pr is synchronized
691
+ - [[`e130bed`](https://github.com/flex-development/mlly/commit/e130bedeab8dd640b1a8cf6debdb8e6e1f92cbfb)] **workflows:** [`approve-pr`] add debug step
692
+ - [[`8afe058`](https://github.com/flex-development/mlly/commit/8afe0581fb8d61bf21faa1b03b638aad84c8ff27)] **workflows:** [`approve-pr`] refactor approval step conditional
693
+ - [[`8e9f672`](https://github.com/flex-development/mlly/commit/8e9f67249c1e704c3e7aa8f31297170b0b8a3346)] **workflows:** [`ci`] add `docs` job
694
+ - [[`659629c`](https://github.com/flex-development/mlly/commit/659629cc3b477ecb454914bc82e67080ad171515)] **workflows:** [`ci`] add typescript matrix
695
+ - [[`825142e`](https://github.com/flex-development/mlly/commit/825142ecd92688ce01ea0d0ee0b6a662dfa29f18)] **workflows:** [`ci`] make typescript matrix dynamic
696
+ - [[`4e9c1ca`](https://github.com/flex-development/mlly/commit/4e9c1cab80c2e7a8909742891eba5cd22b564be4)] **workflows:** [`ci`] skip workflow run for [@dependabot](https://github.com/dependabot) on `push`
697
+ - [[`70e6ee2`](https://github.com/flex-development/mlly/commit/70e6ee20ffd7be96f4c98344d35b627f3a4fc2ec)] **workflows:** [`ci`] split ci job into multiple jobs
698
+ - [[`635adcd`](https://github.com/flex-development/mlly/commit/635adcd3269b2e9ae48b3eb801376ffe5c5458f6)] **workflows:** [`ci`] update codecov config
699
+ - [[`a520d77`](https://github.com/flex-development/mlly/commit/a520d778317f94800e2b08d622f045b12aa71d38)] **workflows:** [`dependabot-auto`] sign lockfile fix commit
700
+ - [[`9d5569d`](https://github.com/flex-development/mlly/commit/9d5569d2dabdb1c0d9f8aa652743fe7e7888a4c3)] **workflows:** [`integrity`] update `pull_request` event activity types
701
+ - [[`8bcc613`](https://github.com/flex-development/mlly/commit/8bcc613c2b207efffa9964b07c15ffc76a786a5a)] **workflows:** [`typescript-canary`] print typescript version
702
+ - [[`22feb88`](https://github.com/flex-development/mlly/commit/22feb88b8d1784a3acea5be91f814c8d7ece9b50)] **workflows:** [`typescript-canary`] run workflow daily
703
+ - [[`87d8a0d`](https://github.com/flex-development/mlly/commit/87d8a0d46632b95ae0bfecd08659f91a78a8407f)] **workflows:** add `typescript-canary`
704
+ - [[`c021970`](https://github.com/flex-development/mlly/commit/c021970fa53907c419897aa79f8028bd64d29fd5)] **yarn:** fix typescript matrix testing
578
705
 
579
706
  ### :pencil: Documentation
580
707
 
581
- * [site] add `/api/enums` ([11682d3](https://github.com/flex-development/mlly/commit/11682d3aa348e5d2cfc674e2ca8f17e4d7929ae5))
582
- * [site] fix "params" table rendering ([0915c3f](https://github.com/flex-development/mlly/commit/0915c3f6367e263fee2212ac83b4daa57d1b49c0))
583
- * [site] fix "throws" description rendering ([1bc5801](https://github.com/flex-development/mlly/commit/1bc5801df3a0d8e19186d99219b5cd550ad4f989))
584
- * [site] fix `@link` and `@linkcode` tag replacements ([e0e2b2f](https://github.com/flex-development/mlly/commit/e0e2b2f6e90a6ebd277b9ad4d1cddf5da57fc0b0))
585
- * [site] show title-only "throws" sections ([2dcb01b](https://github.com/flex-development/mlly/commit/2dcb01bd3309363b28587da5e752d55d019da6b1))
586
- * [site] update homepage ([c799a80](https://github.com/flex-development/mlly/commit/c799a809a88d1c82dd6b24c3bb925db4ad81e89f))
587
- * [site] update vercel install command ([89f407c](https://github.com/flex-development/mlly/commit/89f407cb81b32969bf87b9f18da635438bab7943))
588
- * **tests:** organize file overviews ([7479aa8](https://github.com/flex-development/mlly/commit/7479aa8df76d17d91d082e55bedbabdaf189be10))
589
- * **utils:** [`resolveModule`] other differences between node.js ([ae357e8](https://github.com/flex-development/mlly/commit/ae357e8cd949db0ffbb228b34c29446be277e043))
590
-
708
+ - [[`11682d3`](https://github.com/flex-development/mlly/commit/11682d3aa348e5d2cfc674e2ca8f17e4d7929ae5)] [site] add `/api/enums`
709
+ - [[`0915c3f`](https://github.com/flex-development/mlly/commit/0915c3f6367e263fee2212ac83b4daa57d1b49c0)] [site] fix "params" table rendering
710
+ - [[`1bc5801`](https://github.com/flex-development/mlly/commit/1bc5801df3a0d8e19186d99219b5cd550ad4f989)] [site] fix "throws" description rendering
711
+ - [[`e0e2b2f`](https://github.com/flex-development/mlly/commit/e0e2b2f6e90a6ebd277b9ad4d1cddf5da57fc0b0)] [site] fix `[@link](https://github.com/link)` and `[@linkcode](https://github.com/linkcode)` tag replacements
712
+ - [[`2dcb01b`](https://github.com/flex-development/mlly/commit/2dcb01bd3309363b28587da5e752d55d019da6b1)] [site] show title-only "throws" sections
713
+ - [[`c799a80`](https://github.com/flex-development/mlly/commit/c799a809a88d1c82dd6b24c3bb925db4ad81e89f)] [site] update homepage
714
+ - [[`89f407c`](https://github.com/flex-development/mlly/commit/89f407cb81b32969bf87b9f18da635438bab7943)] [site] update vercel install command
715
+ - [[`7479aa8`](https://github.com/flex-development/mlly/commit/7479aa8df76d17d91d082e55bedbabdaf189be10)] **tests:** organize file overviews
716
+ - [[`ae357e8`](https://github.com/flex-development/mlly/commit/ae357e8cd949db0ffbb228b34c29446be277e043)] **utils:** [`resolveModule`] other differences between node.js
591
717
 
592
718
  ### :sparkles: Features
593
719
 
594
- * **enums:** `AssertType` ([f4ab669](https://github.com/flex-development/mlly/commit/f4ab6691df8f102d5dadba755ccd1dc2f66df16b))
595
- * **enums:** `Format` ([bd79b6a](https://github.com/flex-development/mlly/commit/bd79b6a059918f83b88a2ebe6789e0d68fbcb7ca))
596
- * **enums:** `SpecifierKind` ([077a6ab](https://github.com/flex-development/mlly/commit/077a6abd2676fed01e3aa46bafeefd22d2b43ce2))
597
- * **interfaces:** `FillModuleOptions` ([ffb0481](https://github.com/flex-development/mlly/commit/ffb04816e0788b5802a1880ace3b53fa9d90c10a))
598
- * **interfaces:** `FindSubpathOptions` ([b5fd706](https://github.com/flex-development/mlly/commit/b5fd7067575007c00f85e17fbe9c4404d21ab941))
599
- * **interfaces:** `GetFormatOptions` ([0e7e861](https://github.com/flex-development/mlly/commit/0e7e861770b93520967801951bdea5654f4d9922))
600
- * **interfaces:** `GetSourceOptions` ([dae9081](https://github.com/flex-development/mlly/commit/dae9081166c2af8710faef2b737d45420dd05ce4))
601
- * **interfaces:** `ImportAssertions` ([7a51c62](https://github.com/flex-development/mlly/commit/7a51c62d68240025402a490b94ab44f14deb2259))
602
- * **interfaces:** `PackageScope` ([52c16ad](https://github.com/flex-development/mlly/commit/52c16ad141d1956f53d93f057254d2438ce08492))
603
- * **interfaces:** `ParsedDataUrl` ([529b3c5](https://github.com/flex-development/mlly/commit/529b3c5093f85b03351dbdb95dbe3f9277a884fb))
604
- * **interfaces:** `ParsedModuleId` ([194b14e](https://github.com/flex-development/mlly/commit/194b14ef0fc047190980c3b92f48b9e5c53832fb))
605
- * **interfaces:** `ParsedSubpath` ([7bc8031](https://github.com/flex-development/mlly/commit/7bc803152d8b57116d5fa2fdaa67096e09a13f64))
606
- * **interfaces:** `ParseModuleIdOptions` ([97ee265](https://github.com/flex-development/mlly/commit/97ee26526c89e5a42d7a64431a4a3d49127414df))
607
- * **interfaces:** `ParseSubpathOptions` ([f5150fd](https://github.com/flex-development/mlly/commit/f5150fd322b3b96e919756d4e0a4aa0143a0ef58))
608
- * **interfaces:** `Statement#specifier_kind` ([db39187](https://github.com/flex-development/mlly/commit/db39187d5883890fafcf1b3a9827c2ca6811e477))
609
- * **internal:** `ENCODED_SEP_REGEX` ([22ff22f](https://github.com/flex-development/mlly/commit/22ff22f48113b9c3570ad5b982a300fe3b079734))
610
- * **internal:** `escapeRegExp` ([f00836b](https://github.com/flex-development/mlly/commit/f00836b8a1d6ef94917ea0b39884585b1a29de31))
611
- * **internal:** `FORMAT_TYPE_MAP` ([a442b8d](https://github.com/flex-development/mlly/commit/a442b8d3a4fccde4814a6437f9cfaf1a3e9797e4))
612
- * **internal:** `getSpecifierKind` ([be30ba7](https://github.com/flex-development/mlly/commit/be30ba71f28f1bd677ffc251d3c578e2ffa37c62))
613
- * **internal:** `getSubpaths` ([f9f5f37](https://github.com/flex-development/mlly/commit/f9f5f37d2703e6b2dd1d7469a5ffa92a01cba308))
614
- * **internal:** `INTERNAL_SPECIFIER_REGEX` ([6f1b8be](https://github.com/flex-development/mlly/commit/6f1b8be5ea341c279c57176d1af8eb9effca0c7a))
615
- * **internal:** `isArrayIndex` ([c4793a0](https://github.com/flex-development/mlly/commit/c4793a0f815aefd13f0f0fc20cab32d8dfd42dcc))
616
- * **internal:** `isDirectory` ([ec91d08](https://github.com/flex-development/mlly/commit/ec91d08a8c4418a3c510dbc55e07d59293670bc0))
617
- * **internal:** `isFile` ([d06b9ac](https://github.com/flex-development/mlly/commit/d06b9acae46eada86fd866b09c316d61d04ca69d))
618
- * **internal:** `isFunction` ([e01911a](https://github.com/flex-development/mlly/commit/e01911af8417177b24bd9d42a2c05d1eb70ea3cc))
619
- * **internal:** `PACKAGE_NAME_REGEX` ([3f43f95](https://github.com/flex-development/mlly/commit/3f43f950321006997853231a5054e878d375fdd1))
620
- * **internal:** `PACKAGE_PATH_REGEX` ([375f356](https://github.com/flex-development/mlly/commit/375f356811b2f3537436000d23b0414aa59164d4))
621
- * **internal:** `Resolver` ([4c4f900](https://github.com/flex-development/mlly/commit/4c4f900d918c01f05ff69f9d998c0d8510530d41))
622
- * **internal:** `validateBoolean` ([76166af](https://github.com/flex-development/mlly/commit/76166af9edb580d7271f2a60c3b052767c4b5e54))
623
- * **internal:** `validateObject` ([c961376](https://github.com/flex-development/mlly/commit/c961376bd3ec592adea916e49d186021859e1f12))
624
- * **internal:** `validateSet` ([d9b6595](https://github.com/flex-development/mlly/commit/d9b6595a45ba7e2644914b2d63b0b8e149d63165))
625
- * **internal:** `validateString` ([c66025d](https://github.com/flex-development/mlly/commit/c66025d576c4f37f44944517ff9787d9946696d0))
626
- * **internal:** `validateURLString` ([ba49e9b](https://github.com/flex-development/mlly/commit/ba49e9b03af440d5d07393c8d1b19dacaafba3fa))
627
- * **types:** `ChangeExtFn` ([b906e6b](https://github.com/flex-development/mlly/commit/b906e6b30c47cde9628788c9280582d693c00c6a))
628
- * **types:** `Format` ([5cb0b1b](https://github.com/flex-development/mlly/commit/5cb0b1b074fdee44ea03e32b4128780afbe86667))
629
- * **types:** `ModuleId` ([1f3a500](https://github.com/flex-development/mlly/commit/1f3a500b96f43ea055bccdcb6815bc8e697dc140))
630
- * **types:** `Protocol` ([6380ea8](https://github.com/flex-development/mlly/commit/6380ea8869a9ac540a517ff6cedb8be36d6f73d4))
631
- * **utils:** `compareSubpaths` ([66f2137](https://github.com/flex-development/mlly/commit/66f2137ef8b938a84c7d273bdc45299de14073b0))
632
- * **utils:** `EXTENSION_FORMAT_MAP` ([d4720d7](https://github.com/flex-development/mlly/commit/d4720d703b64fe623f95cb811a006c390806e8c6))
633
- * **utils:** `fillModules` ([7b9d1e7](https://github.com/flex-development/mlly/commit/7b9d1e7874e2f43b91f90963c26c83c7bc651e25))
634
- * **utils:** `findSubpath` ([4fd48f6](https://github.com/flex-development/mlly/commit/4fd48f6ab8415d50214de5d10ff608152bc8c6b8))
635
- * **utils:** `getFormat` ([a1cae6f](https://github.com/flex-development/mlly/commit/a1cae6f80c88c007d7ac4736de54454d17192d84))
636
- * **utils:** `getSource` ([017eadb](https://github.com/flex-development/mlly/commit/017eadb7b2d58eac080dfe4865dc597671ede992))
637
- * **utils:** `isAbsoluteSpecifier` ([4bd443c](https://github.com/flex-development/mlly/commit/4bd443ce9391fc6dcf1889edb9c3a7c6ef7768b7))
638
- * **utils:** `isBareSpecifier` ([feda82b](https://github.com/flex-development/mlly/commit/feda82b8a088bf9b889e20f92c614d810acbe14f))
639
- * **utils:** `isExportsSugar` ([0c9f954](https://github.com/flex-development/mlly/commit/0c9f954cf69b6dfbf821fdee8966f2b0a31de759))
640
- * **utils:** `isRelativeSpecifier` ([92b8846](https://github.com/flex-development/mlly/commit/92b8846acefed82187afef8503bf5e7c4cbb953f))
641
- * **utils:** `lookupPackageScope` ([46cb852](https://github.com/flex-development/mlly/commit/46cb8524c01528cf8310caab7944e6704d66ea97))
642
- * **utils:** `parseDataURL` ([93fd382](https://github.com/flex-development/mlly/commit/93fd38292d07961425f6b394018578fb9933320e))
643
- * **utils:** `parseModuleId` ([a315dd0](https://github.com/flex-development/mlly/commit/a315dd0aef9238fb107ea07ad27214838e144451))
644
- * **utils:** `parseSubpath` ([8479781](https://github.com/flex-development/mlly/commit/84797816490736fc2078ff34f42b2cf1f43e31a2))
645
- * **utils:** `PATTERN_CHARACTER` ([7a8f04b](https://github.com/flex-development/mlly/commit/7a8f04bc06a281c6357dc14f3e8af9f63678ca60))
646
- * **utils:** `readPackageJson` ([b2f9a18](https://github.com/flex-development/mlly/commit/b2f9a180f0bce61215ac2d23d4be83a91b657f81))
647
- * **utils:** `toNodeURL` ([a536567](https://github.com/flex-development/mlly/commit/a536567dbd177a033b5e40069009dadbfc06ab30))
648
- * **utils:** `toURL` ([165d8b0](https://github.com/flex-development/mlly/commit/165d8b0695c85b956e06ddf8a8d0c08f7d58a9a0))
649
- * **utils:** `validateAssertions` ([61e9769](https://github.com/flex-development/mlly/commit/61e9769ef7d9471e7c7732faa955a8c21a23b877))
650
- * **utils:** `validateExports` ([a2b14ea](https://github.com/flex-development/mlly/commit/a2b14ea2341ea1044be71e11fffd36619e6fdb83))
651
-
720
+ - [[`f4ab669`](https://github.com/flex-development/mlly/commit/f4ab6691df8f102d5dadba755ccd1dc2f66df16b)] **enums:** `AssertType`
721
+ - [[`bd79b6a`](https://github.com/flex-development/mlly/commit/bd79b6a059918f83b88a2ebe6789e0d68fbcb7ca)] **enums:** `Format`
722
+ - [[`077a6ab`](https://github.com/flex-development/mlly/commit/077a6abd2676fed01e3aa46bafeefd22d2b43ce2)] **enums:** `SpecifierKind`
723
+ - [[`ffb0481`](https://github.com/flex-development/mlly/commit/ffb04816e0788b5802a1880ace3b53fa9d90c10a)] **interfaces:** `FillModuleOptions`
724
+ - [[`b5fd706`](https://github.com/flex-development/mlly/commit/b5fd7067575007c00f85e17fbe9c4404d21ab941)] **interfaces:** `FindSubpathOptions`
725
+ - [[`0e7e861`](https://github.com/flex-development/mlly/commit/0e7e861770b93520967801951bdea5654f4d9922)] **interfaces:** `GetFormatOptions`
726
+ - [[`dae9081`](https://github.com/flex-development/mlly/commit/dae9081166c2af8710faef2b737d45420dd05ce4)] **interfaces:** `GetSourceOptions`
727
+ - [[`7a51c62`](https://github.com/flex-development/mlly/commit/7a51c62d68240025402a490b94ab44f14deb2259)] **interfaces:** `ImportAssertions`
728
+ - [[`52c16ad`](https://github.com/flex-development/mlly/commit/52c16ad141d1956f53d93f057254d2438ce08492)] **interfaces:** `PackageScope`
729
+ - [[`529b3c5`](https://github.com/flex-development/mlly/commit/529b3c5093f85b03351dbdb95dbe3f9277a884fb)] **interfaces:** `ParsedDataUrl`
730
+ - [[`194b14e`](https://github.com/flex-development/mlly/commit/194b14ef0fc047190980c3b92f48b9e5c53832fb)] **interfaces:** `ParsedModuleId`
731
+ - [[`7bc8031`](https://github.com/flex-development/mlly/commit/7bc803152d8b57116d5fa2fdaa67096e09a13f64)] **interfaces:** `ParsedSubpath`
732
+ - [[`97ee265`](https://github.com/flex-development/mlly/commit/97ee26526c89e5a42d7a64431a4a3d49127414df)] **interfaces:** `ParseModuleIdOptions`
733
+ - [[`f5150fd`](https://github.com/flex-development/mlly/commit/f5150fd322b3b96e919756d4e0a4aa0143a0ef58)] **interfaces:** `ParseSubpathOptions`
734
+ - [[`db39187`](https://github.com/flex-development/mlly/commit/db39187d5883890fafcf1b3a9827c2ca6811e477)] **interfaces:** `Statement#specifier_kind`
735
+ - [[`22ff22f`](https://github.com/flex-development/mlly/commit/22ff22f48113b9c3570ad5b982a300fe3b079734)] **internal:** `ENCODED_SEP_REGEX`
736
+ - [[`f00836b`](https://github.com/flex-development/mlly/commit/f00836b8a1d6ef94917ea0b39884585b1a29de31)] **internal:** `escapeRegExp`
737
+ - [[`a442b8d`](https://github.com/flex-development/mlly/commit/a442b8d3a4fccde4814a6437f9cfaf1a3e9797e4)] **internal:** `FORMAT_TYPE_MAP`
738
+ - [[`be30ba7`](https://github.com/flex-development/mlly/commit/be30ba71f28f1bd677ffc251d3c578e2ffa37c62)] **internal:** `getSpecifierKind`
739
+ - [[`f9f5f37`](https://github.com/flex-development/mlly/commit/f9f5f37d2703e6b2dd1d7469a5ffa92a01cba308)] **internal:** `getSubpaths`
740
+ - [[`6f1b8be`](https://github.com/flex-development/mlly/commit/6f1b8be5ea341c279c57176d1af8eb9effca0c7a)] **internal:** `INTERNAL_SPECIFIER_REGEX`
741
+ - [[`c4793a0`](https://github.com/flex-development/mlly/commit/c4793a0f815aefd13f0f0fc20cab32d8dfd42dcc)] **internal:** `isArrayIndex`
742
+ - [[`ec91d08`](https://github.com/flex-development/mlly/commit/ec91d08a8c4418a3c510dbc55e07d59293670bc0)] **internal:** `isDirectory`
743
+ - [[`d06b9ac`](https://github.com/flex-development/mlly/commit/d06b9acae46eada86fd866b09c316d61d04ca69d)] **internal:** `isFile`
744
+ - [[`e01911a`](https://github.com/flex-development/mlly/commit/e01911af8417177b24bd9d42a2c05d1eb70ea3cc)] **internal:** `isFunction`
745
+ - [[`3f43f95`](https://github.com/flex-development/mlly/commit/3f43f950321006997853231a5054e878d375fdd1)] **internal:** `PACKAGE_NAME_REGEX`
746
+ - [[`375f356`](https://github.com/flex-development/mlly/commit/375f356811b2f3537436000d23b0414aa59164d4)] **internal:** `PACKAGE_PATH_REGEX`
747
+ - [[`4c4f900`](https://github.com/flex-development/mlly/commit/4c4f900d918c01f05ff69f9d998c0d8510530d41)] **internal:** `Resolver`
748
+ - [[`76166af`](https://github.com/flex-development/mlly/commit/76166af9edb580d7271f2a60c3b052767c4b5e54)] **internal:** `validateBoolean`
749
+ - [[`c961376`](https://github.com/flex-development/mlly/commit/c961376bd3ec592adea916e49d186021859e1f12)] **internal:** `validateObject`
750
+ - [[`d9b6595`](https://github.com/flex-development/mlly/commit/d9b6595a45ba7e2644914b2d63b0b8e149d63165)] **internal:** `validateSet`
751
+ - [[`c66025d`](https://github.com/flex-development/mlly/commit/c66025d576c4f37f44944517ff9787d9946696d0)] **internal:** `validateString`
752
+ - [[`ba49e9b`](https://github.com/flex-development/mlly/commit/ba49e9b03af440d5d07393c8d1b19dacaafba3fa)] **internal:** `validateURLString`
753
+ - [[`b906e6b`](https://github.com/flex-development/mlly/commit/b906e6b30c47cde9628788c9280582d693c00c6a)] **types:** `ChangeExtFn`
754
+ - [[`5cb0b1b`](https://github.com/flex-development/mlly/commit/5cb0b1b074fdee44ea03e32b4128780afbe86667)] **types:** `Format`
755
+ - [[`1f3a500`](https://github.com/flex-development/mlly/commit/1f3a500b96f43ea055bccdcb6815bc8e697dc140)] **types:** `ModuleId`
756
+ - [[`6380ea8`](https://github.com/flex-development/mlly/commit/6380ea8869a9ac540a517ff6cedb8be36d6f73d4)] **types:** `Protocol`
757
+ - [[`66f2137`](https://github.com/flex-development/mlly/commit/66f2137ef8b938a84c7d273bdc45299de14073b0)] **utils:** `compareSubpaths`
758
+ - [[`d4720d7`](https://github.com/flex-development/mlly/commit/d4720d703b64fe623f95cb811a006c390806e8c6)] **utils:** `EXTENSION_FORMAT_MAP`
759
+ - [[`7b9d1e7`](https://github.com/flex-development/mlly/commit/7b9d1e7874e2f43b91f90963c26c83c7bc651e25)] **utils:** `fillModules`
760
+ - [[`4fd48f6`](https://github.com/flex-development/mlly/commit/4fd48f6ab8415d50214de5d10ff608152bc8c6b8)] **utils:** `findSubpath`
761
+ - [[`a1cae6f`](https://github.com/flex-development/mlly/commit/a1cae6f80c88c007d7ac4736de54454d17192d84)] **utils:** `getFormat`
762
+ - [[`017eadb`](https://github.com/flex-development/mlly/commit/017eadb7b2d58eac080dfe4865dc597671ede992)] **utils:** `getSource`
763
+ - [[`4bd443c`](https://github.com/flex-development/mlly/commit/4bd443ce9391fc6dcf1889edb9c3a7c6ef7768b7)] **utils:** `isAbsoluteSpecifier`
764
+ - [[`feda82b`](https://github.com/flex-development/mlly/commit/feda82b8a088bf9b889e20f92c614d810acbe14f)] **utils:** `isBareSpecifier`
765
+ - [[`0c9f954`](https://github.com/flex-development/mlly/commit/0c9f954cf69b6dfbf821fdee8966f2b0a31de759)] **utils:** `isExportsSugar`
766
+ - [[`92b8846`](https://github.com/flex-development/mlly/commit/92b8846acefed82187afef8503bf5e7c4cbb953f)] **utils:** `isRelativeSpecifier`
767
+ - [[`46cb852`](https://github.com/flex-development/mlly/commit/46cb8524c01528cf8310caab7944e6704d66ea97)] **utils:** `lookupPackageScope`
768
+ - [[`93fd382`](https://github.com/flex-development/mlly/commit/93fd38292d07961425f6b394018578fb9933320e)] **utils:** `parseDataURL`
769
+ - [[`a315dd0`](https://github.com/flex-development/mlly/commit/a315dd0aef9238fb107ea07ad27214838e144451)] **utils:** `parseModuleId`
770
+ - [[`8479781`](https://github.com/flex-development/mlly/commit/84797816490736fc2078ff34f42b2cf1f43e31a2)] **utils:** `parseSubpath`
771
+ - [[`7a8f04b`](https://github.com/flex-development/mlly/commit/7a8f04bc06a281c6357dc14f3e8af9f63678ca60)] **utils:** `PATTERN_CHARACTER`
772
+ - [[`b2f9a18`](https://github.com/flex-development/mlly/commit/b2f9a180f0bce61215ac2d23d4be83a91b657f81)] **utils:** `readPackageJson`
773
+ - [[`a536567`](https://github.com/flex-development/mlly/commit/a536567dbd177a033b5e40069009dadbfc06ab30)] **utils:** `toNodeURL`
774
+ - [[`165d8b0`](https://github.com/flex-development/mlly/commit/165d8b0695c85b956e06ddf8a8d0c08f7d58a9a0)] **utils:** `toURL`
775
+ - [[`61e9769`](https://github.com/flex-development/mlly/commit/61e9769ef7d9471e7c7732faa955a8c21a23b877)] **utils:** `validateAssertions`
776
+ - [[`a2b14ea`](https://github.com/flex-development/mlly/commit/a2b14ea2341ea1044be71e11fffd36619e6fdb83)] **utils:** `validateExports`
652
777
 
653
778
  ### :bug: Fixes
654
779
 
655
- * **ts:** `Type '{ '.' Exports | undefined; }' is not assignable to type 'Exports | undefined'` ([de20179](https://github.com/flex-development/mlly/commit/de20179e1b9d9ec68a426814999a9304f9fa2e73))
656
- * **ts:** missing types in build output ([a5d2226](https://github.com/flex-development/mlly/commit/a5d2226c352269795399bc14742e49c845c955f6))
657
- * **utils:** specifier replacement ([e29520b](https://github.com/flex-development/mlly/commit/e29520bf74cbba11c567cc13257a84252777403a))
658
-
780
+ - [[`de20179`](https://github.com/flex-development/mlly/commit/de20179e1b9d9ec68a426814999a9304f9fa2e73)] **ts:** `Type '{ '.' Exports | undefined; }' is not assignable to type 'Exports | undefined'`
781
+ - [[`a5d2226`](https://github.com/flex-development/mlly/commit/a5d2226c352269795399bc14742e49c845c955f6)] **ts:** missing types in build output
782
+ - [[`e29520b`](https://github.com/flex-development/mlly/commit/e29520bf74cbba11c567cc13257a84252777403a)] **utils:** specifier replacement
659
783
 
660
784
  ### :house_with_garden: Housekeeping
661
785
 
662
- * fix lint-staged config ([bda813d](https://github.com/flex-development/mlly/commit/bda813db0922faa93d0543e34d11e290bbd52967))
663
- * project qa ([d3a571d](https://github.com/flex-development/mlly/commit/d3a571d38626b0cfd2affb3987bd583813bd9b35))
664
- * update eslint config ([b1d716c](https://github.com/flex-development/mlly/commit/b1d716cb29c95734f974e703fe88f4d150827abf))
665
- * update project architecture ([60b2c77](https://github.com/flex-development/mlly/commit/60b2c771614cc13e892a8814ad644d6095112ba4))
666
- * update project architecture ([7d0571b](https://github.com/flex-development/mlly/commit/7d0571bb660770640963d7ec550d91b7aa6c7a0d))
667
- * **esm:** use package in custom loader ([a6e07d0](https://github.com/flex-development/mlly/commit/a6e07d0487b2734bc1dac6bcd22c6ff2b3e09380))
668
- * **github:** add "typescript version" input to bug report template ([d6de153](https://github.com/flex-development/mlly/commit/d6de15302d1355a7ffbb680b4059fb42a0b6a0af))
669
- * **github:** add commit scope `utils` ([4af0c3d](https://github.com/flex-development/mlly/commit/4af0c3d3c0ca38594683586948524faa316ddaf8))
670
- * **github:** add label `scope:utils` ([169ec14](https://github.com/flex-development/mlly/commit/169ec14abcd9735a8c00e1ce76b5c33f3e0f01cf))
671
- * **github:** configure sponsor button ([b9e4bf5](https://github.com/flex-development/mlly/commit/b9e4bf5d5a73ce467ed1047737ff8fe9b9de9248))
672
- * **github:** set `LINT_STAGED` before running `lint-staged` ([4c49124](https://github.com/flex-development/mlly/commit/4c49124b454e7776d7dc11b34482756bca7ef35e))
673
- * **pkg:** update keywords ([8ddf224](https://github.com/flex-development/mlly/commit/8ddf224485aa19b8ad706f0b3b8c0bdbba3151ed))
674
- * **tests:** update codecov config ([226b49c](https://github.com/flex-development/mlly/commit/226b49c712ae56dc3f09bd0016df0edc34608900))
675
- * **tests:** update lint-staged integration ([9b6b530](https://github.com/flex-development/mlly/commit/9b6b53076be0e2240cf8dec3fcb08cef45527cc9))
676
- * **vscode:** update settings ([aac433c](https://github.com/flex-development/mlly/commit/aac433c9d42d9794b2fd9303df331f8ee70b0786))
677
-
678
-
679
- ### :zap: Refactors
680
-
681
- * move constants to `utils` dir ([e6db385](https://github.com/flex-development/mlly/commit/e6db385058fc810e7be6bb79acac9c7e92bc7aaa))
682
- * rename `lib` directory to `utils` ([c84a231](https://github.com/flex-development/mlly/commit/c84a23160738d322e8db7bd1b2a0927efefc1c2f))
683
- * **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
684
- * **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
685
- * **esm:** improve loaders compatibility ([505e211](https://github.com/flex-development/mlly/commit/505e211531ed6b216567d2b156b42637d292579f))
686
- * **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
687
- * **internal:** [`validateString`] convert to type guard ([789f2cf](https://github.com/flex-development/mlly/commit/789f2cf7c2ecf27fed86f64640c6c7806ef257f9))
688
- * **ts:** catch build output errors early ([7cb4c38](https://github.com/flex-development/mlly/commit/7cb4c3899387b67f9d7c9b160e091da9e9613403))
689
- * **types:** `MIMEType` -> `MimeType` ([1df5622](https://github.com/flex-development/mlly/commit/1df56226dfdc6534b40c64d1b33e6ab57b13c901))
690
- * **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
691
- * **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
786
+ - [[`bda813d`](https://github.com/flex-development/mlly/commit/bda813db0922faa93d0543e34d11e290bbd52967)] fix lint-staged config
787
+ - [[`d3a571d`](https://github.com/flex-development/mlly/commit/d3a571d38626b0cfd2affb3987bd583813bd9b35)] project qa
788
+ - [[`b1d716c`](https://github.com/flex-development/mlly/commit/b1d716cb29c95734f974e703fe88f4d150827abf)] update eslint config
789
+ - [[`60b2c77`](https://github.com/flex-development/mlly/commit/60b2c771614cc13e892a8814ad644d6095112ba4)] update project architecture
790
+ - [[`7d0571b`](https://github.com/flex-development/mlly/commit/7d0571bb660770640963d7ec550d91b7aa6c7a0d)] update project architecture
791
+ - [[`a6e07d0`](https://github.com/flex-development/mlly/commit/a6e07d0487b2734bc1dac6bcd22c6ff2b3e09380)] **esm:** use package in custom loader
792
+ - [[`d6de153`](https://github.com/flex-development/mlly/commit/d6de15302d1355a7ffbb680b4059fb42a0b6a0af)] **github:** add "typescript version" input to bug report template
793
+ - [[`4af0c3d`](https://github.com/flex-development/mlly/commit/4af0c3d3c0ca38594683586948524faa316ddaf8)] **github:** add commit scope `utils`
794
+ - [[`169ec14`](https://github.com/flex-development/mlly/commit/169ec14abcd9735a8c00e1ce76b5c33f3e0f01cf)] **github:** add label `scope:utils`
795
+ - [[`b9e4bf5`](https://github.com/flex-development/mlly/commit/b9e4bf5d5a73ce467ed1047737ff8fe9b9de9248)] **github:** configure sponsor button
796
+ - [[`4c49124`](https://github.com/flex-development/mlly/commit/4c49124b454e7776d7dc11b34482756bca7ef35e)] **github:** set `LINT_STAGED` before running `lint-staged`
797
+ - [[`8ddf224`](https://github.com/flex-development/mlly/commit/8ddf224485aa19b8ad706f0b3b8c0bdbba3151ed)] **pkg:** update keywords
798
+ - [[`226b49c`](https://github.com/flex-development/mlly/commit/226b49c712ae56dc3f09bd0016df0edc34608900)] **tests:** update codecov config
799
+ - [[`9b6b530`](https://github.com/flex-development/mlly/commit/9b6b53076be0e2240cf8dec3fcb08cef45527cc9)] **tests:** update lint-staged integration
800
+ - [[`aac433c`](https://github.com/flex-development/mlly/commit/aac433c9d42d9794b2fd9303df331f8ee70b0786)] **vscode:** update settings
801
+
802
+ ### :mechanical_arm: Refactors
692
803
 
804
+ - [[`e6db385`](https://github.com/flex-development/mlly/commit/e6db385058fc810e7be6bb79acac9c7e92bc7aaa)] move constants to `utils` dir
805
+ - [[`c84a231`](https://github.com/flex-development/mlly/commit/c84a23160738d322e8db7bd1b2a0927efefc1c2f)] rename `lib` directory to `utils`
806
+ - [[`1a24b13`](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5)] **enums:** `SpecifierKind` -> `SpecifierSyntaxKind`
807
+ - [[`02c1456`](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7)] **enums:** `SyntaxKind` -> `StatementSyntaxKind`
808
+ - [[`505e211`](https://github.com/flex-development/mlly/commit/505e211531ed6b216567d2b156b42637d292579f)] **esm:** improve loaders compatibility
809
+ - [[`734edd2`](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d)] **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax`
810
+ - [[`789f2cf`](https://github.com/flex-development/mlly/commit/789f2cf7c2ecf27fed86f64640c6c7806ef257f9)] **internal:** [`validateString`] convert to type guard
811
+ - [[`7cb4c38`](https://github.com/flex-development/mlly/commit/7cb4c3899387b67f9d7c9b160e091da9e9613403)] **ts:** catch build output errors early
812
+ - [[`1df5622`](https://github.com/flex-development/mlly/commit/1df56226dfdc6534b40c64d1b33e6ab57b13c901)] **types:** `MIMEType` -> `MimeType`
813
+ - [[`b4ed0b1`](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438)] **utils:** `resolveAlias`
814
+ - [[`b0caca0`](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1)] **utils:** `toBareSpecifier`
693
815
 
694
816
  ### :white_check_mark: Testing
695
817
 
696
- * **utils:** [`findStaticImports`] 100% isolated coverage ([aca9212](https://github.com/flex-development/mlly/commit/aca9212bf77bfc58b5a050d136cafd622866526f))
818
+ - [[`aca9212`](https://github.com/flex-development/mlly/commit/aca9212bf77bfc58b5a050d136cafd622866526f)] **utils:** [`findStaticImports`] 100% isolated coverage
697
819
 
698
820
  ## [1.0.0-alpha.6](https://github.com/flex-development/mlly/compare/1.0.0-alpha.5...1.0.0-alpha.6) (2022-12-26)
699
821
 
700
-
701
822
  ### :package: Build
702
823
 
703
- * **deps-dev:** bump vue-tsc from 1.0.17 to 1.0.18 ([68255dc](https://github.com/flex-development/mlly/commit/68255dc3ad4be30eae7ea61598d4494d1913717b))
704
- * **deps:** bump import-meta-resolve from 2.1.0 to 2.2.0 ([8ce9cfc](https://github.com/flex-development/mlly/commit/8ce9cfc6a49b3b69c4b129b42b171d60ce3d2b91))
705
- * **deps:** bump tsconfig-paths from 4.1.0 to 4.1.1 ([6cb2847](https://github.com/flex-development/mlly/commit/6cb2847c229d0d0ba0715a725da4689752a5a899))
706
-
824
+ - [[`68255dc`](https://github.com/flex-development/mlly/commit/68255dc3ad4be30eae7ea61598d4494d1913717b)] **deps-dev:** bump vue-tsc from 1.0.17 to 1.0.18
825
+ - [[`8ce9cfc`](https://github.com/flex-development/mlly/commit/8ce9cfc6a49b3b69c4b129b42b171d60ce3d2b91)] **deps:** bump import-meta-resolve from 2.1.0 to 2.2.0
826
+ - [[`6cb2847`](https://github.com/flex-development/mlly/commit/6cb2847c229d0d0ba0715a725da4689752a5a899)] **deps:** bump tsconfig-paths from 4.1.0 to 4.1.1
707
827
 
708
828
  ### :bug: Fixes
709
829
 
710
- * **specifiers:** `toRelativeSpecifier` logic ([#27](https://github.com/flex-development/mlly/issues/27)) ([a34d974](https://github.com/flex-development/mlly/commit/a34d97448135da0e0f46654b720ba60fc84abcea))
711
-
830
+ - [[`a34d974`](https://github.com/flex-development/mlly/commit/a34d97448135da0e0f46654b720ba60fc84abcea)] **specifiers:** `toRelativeSpecifier` logic ([#27](https://github.com/flex-development/mlly/issues/27))
712
831
 
713
832
  ### :house_with_garden: Housekeeping
714
833
 
715
- * **github:** add "package manager" dropdown to bug report template ([2942a31](https://github.com/flex-development/mlly/commit/2942a312411de0a2b4113e163214ca8ef064c87b))
716
- * **github:** add label `scope:analyze` ([241ac69](https://github.com/flex-development/mlly/commit/241ac6992361ee57631779f48cc87525d4e3f220))
717
- * **github:** add label `scope:lib` ([25b2d67](https://github.com/flex-development/mlly/commit/25b2d679f9d400afdef52bd159afd477daf60077))
718
- * **github:** add label `scope:resolve` ([36159e6](https://github.com/flex-development/mlly/commit/36159e688680db513417a9d9f7ce0cf72a45695c))
719
- * **github:** add label `scope:specifiers` ([5ca8266](https://github.com/flex-development/mlly/commit/5ca8266c8c3a7f5448eadad734530837bdeae434))
720
- * **github:** add label `scope:syntax` ([54b2585](https://github.com/flex-development/mlly/commit/54b25854b8da7875087d42f79164ec73794c054f))
721
- * **github:** add label `status:triaged` ([35523e0](https://github.com/flex-development/mlly/commit/35523e06028b34b8c82f9b5ba2553fd0bd28b7e7))
834
+ - [[`2942a31`](https://github.com/flex-development/mlly/commit/2942a312411de0a2b4113e163214ca8ef064c87b)] **github:** add "package manager" dropdown to bug report template
835
+ - [[`241ac69`](https://github.com/flex-development/mlly/commit/241ac6992361ee57631779f48cc87525d4e3f220)] **github:** add label `scope:analyze`
836
+ - [[`25b2d67`](https://github.com/flex-development/mlly/commit/25b2d679f9d400afdef52bd159afd477daf60077)] **github:** add label `scope:lib`
837
+ - [[`36159e6`](https://github.com/flex-development/mlly/commit/36159e688680db513417a9d9f7ce0cf72a45695c)] **github:** add label `scope:resolve`
838
+ - [[`5ca8266`](https://github.com/flex-development/mlly/commit/5ca8266c8c3a7f5448eadad734530837bdeae434)] **github:** add label `scope:specifiers`
839
+ - [[`54b2585`](https://github.com/flex-development/mlly/commit/54b25854b8da7875087d42f79164ec73794c054f)] **github:** add label `scope:syntax`
840
+ - [[`35523e0`](https://github.com/flex-development/mlly/commit/35523e06028b34b8c82f9b5ba2553fd0bd28b7e7)] **github:** add label `status:triaged`
722
841
 
723
842
  ## [1.0.0-alpha.5](https://github.com/flex-development/mlly/compare/1.0.0-alpha.4...1.0.0-alpha.5) (2022-12-26)
724
843
 
725
-
726
844
  ### :robot: Continuous Integration
727
845
 
728
- * **workflows:** [`publish`] remove stale `.npmrc` file from checkout ([da570a6](https://github.com/flex-development/mlly/commit/da570a6ce355c267ab09fd94c41c99eaef892f2e))
729
- * **workflows:** use environment files ([03f8097](https://github.com/flex-development/mlly/commit/03f8097c0213f46fc110c61265345d21b09dee76))
846
+ - [[`da570a6`](https://github.com/flex-development/mlly/commit/da570a6ce355c267ab09fd94c41c99eaef892f2e)] **workflows:** [`publish`] remove stale `.npmrc` file from checkout
847
+ - [[`03f8097`](https://github.com/flex-development/mlly/commit/03f8097c0213f46fc110c61265345d21b09dee76)] **workflows:** use environment files
730
848
 
731
849
  ## [1.0.0-alpha.4](https://github.com/flex-development/mlly/compare/1.0.0-alpha.3...1.0.0-alpha.4) (2022-12-26)
732
850
 
733
-
734
851
  ### :robot: Continuous Integration
735
852
 
736
- * **workflows:** [`publish`] fix registry url ([c06d3ca](https://github.com/flex-development/mlly/commit/c06d3ca72de415e507d901864afc410c9f5239b3))
737
-
853
+ - [[`c06d3ca`](https://github.com/flex-development/mlly/commit/c06d3ca72de415e507d901864afc410c9f5239b3)] **workflows:** [`publish`] fix registry url
738
854
 
739
855
  ### :pencil: Documentation
740
856
 
741
- * fix changelog entries ([128f8f4](https://github.com/flex-development/mlly/commit/128f8f450eda1fc10ff89ac272fbe8bde870c516))
857
+ - [[`128f8f4`](https://github.com/flex-development/mlly/commit/128f8f450eda1fc10ff89ac272fbe8bde870c516)] fix changelog entries
742
858
 
743
859
  ## [1.0.0-alpha.3](https://github.com/flex-development/mlly/compare/1.0.0-alpha.2...1.0.0-alpha.3) (2022-12-26)
744
860
 
745
-
746
861
  ### ⚠ BREAKING CHANGES
747
862
 
748
- * **types:** remove `Ext`
749
- * **types:** `SpecifierType` -> `ModuleSpecifierType`
750
- * statements
863
+ - **types:** remove `Ext`
864
+ - **types:** `SpecifierType` -> `ModuleSpecifierType`
865
+ - statements
751
866
 
752
867
  ### :package: Build
753
868
 
754
- * **deps-dev:** add @flex-development/docast ([42b8ed2](https://github.com/flex-development/mlly/commit/42b8ed2360e8b4478202ba7db7e2b5cacae9ec90))
755
- * **deps-dev:** bump @flex-development/docast-parse to 1.0.0-alpha.4 ([9634f8d](https://github.com/flex-development/mlly/commit/9634f8d4ec4375e7d29ad709c36ce1d398293718))
756
- * **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.8 to 1.0.0-alpha.9 ([0262207](https://github.com/flex-development/mlly/commit/026220768f780149e143c0a5e6d35f9c2a4f0215))
757
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([ab0b8ce](https://github.com/flex-development/mlly/commit/ab0b8ced1e664a9bb6a9f4a7189d870bdf76c8c0))
758
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([bddfa7c](https://github.com/flex-development/mlly/commit/bddfa7c3f8864ab38fe35dc295ab46e472df187e))
759
- * **deps:** add @flex-development/tsconfig-types ([a7c38e5](https://github.com/flex-development/mlly/commit/a7c38e50ea583dde948078569b41e0aebde8cfbf))
760
- * **deps:** replace upath with @flex-development/pathe ([8a584d6](https://github.com/flex-development/mlly/commit/8a584d6dc2fed8c4cae491c290cf58ded9ca038e))
761
- * **docs:** [site] use flex-development/docast-parse@27c73c7c03df4d92585c538c1f8214886b1fd0a9 ([b696cf6](https://github.com/flex-development/mlly/commit/b696cf676ecb0ace14647727415a49d03092d0d5))
762
-
869
+ - [[`42b8ed2`](https://github.com/flex-development/mlly/commit/42b8ed2360e8b4478202ba7db7e2b5cacae9ec90)] **deps-dev:** add @flex-development/docast
870
+ - [[`9634f8d`](https://github.com/flex-development/mlly/commit/9634f8d4ec4375e7d29ad709c36ce1d398293718)] **deps-dev:** bump @flex-development/docast-parse to 1.0.0-alpha.4
871
+ - [[`0262207`](https://github.com/flex-development/mlly/commit/026220768f780149e143c0a5e6d35f9c2a4f0215)] **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.8 to 1.0.0-alpha.9
872
+ - [[`ab0b8ce`](https://github.com/flex-development/mlly/commit/ab0b8ced1e664a9bb6a9f4a7189d870bdf76c8c0)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
873
+ - [[`bddfa7c`](https://github.com/flex-development/mlly/commit/bddfa7c3f8864ab38fe35dc295ab46e472df187e)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
874
+ - [[`a7c38e5`](https://github.com/flex-development/mlly/commit/a7c38e50ea583dde948078569b41e0aebde8cfbf)] **deps:** add @flex-development/tsconfig-types
875
+ - [[`8a584d6`](https://github.com/flex-development/mlly/commit/8a584d6dc2fed8c4cae491c290cf58ded9ca038e)] **deps:** replace upath with @flex-development/pathe
876
+ - [[`b696cf6`](https://github.com/flex-development/mlly/commit/b696cf676ecb0ace14647727415a49d03092d0d5)] **docs:** [site] use flex-development/docast-parse@27c73c7c03df4d92585c538c1f8214886b1fd0a9
763
877
 
764
878
  ### :robot: Continuous Integration
765
879
 
766
- * configure private package registry for [@dependabot](https://github.com/dependabot) ([e188761](https://github.com/flex-development/mlly/commit/e1887618c8a2c5fe9cb69babd15498b618e64e66))
767
- * fix [@dependabot](https://github.com/dependabot) npm package-ecosystem x yarn integration ([126dfab](https://github.com/flex-development/mlly/commit/126dfab8d937f3526ea109acc91565accf3b2653))
768
- * **deps:** bump actions/add-to-project from 0.3.0 to 0.4.0 ([b5e8279](https://github.com/flex-development/mlly/commit/b5e8279269f75cee5076d86b7c34578b74f306df))
769
- * **deps:** bump actions/checkout from 3.1.0 to 3.2.0 ([0637831](https://github.com/flex-development/mlly/commit/063783140fb475f29f821408837389219c471625))
770
- * **deps:** bump dessant/lock-threads from 3.0.0 to 4.0.0 ([ba6063c](https://github.com/flex-development/mlly/commit/ba6063cb88556d106fb01c3948ba03d8f4848a47))
771
- * **deps:** bump flex-development/dist-tag-action from 1.1.1 to 1.1.2 ([e19b975](https://github.com/flex-development/mlly/commit/e19b97514d655b2c89e7fa4b09aa3ea93a0f8415))
772
- * **workflows:** [`add-to-project`] add items from repo admin account ([e271e8a](https://github.com/flex-development/mlly/commit/e271e8afe22244e3d270aa02a833ccb4b077f296))
773
- * **workflows:** [`ci`] add node.js matrix ([28a0fa6](https://github.com/flex-development/mlly/commit/28a0fa6d809c94af458c6d5c9b661bb9d564b70a))
774
- * **workflows:** [`ci`] archive production artifacts ([701caea](https://github.com/flex-development/mlly/commit/701caea0edc1e2d36d7a1323a88e1e714e88743d))
775
- * **workflows:** [`ci`] let [@dependabot](https://github.com/dependabot) modify lockfile ([74ec538](https://github.com/flex-development/mlly/commit/74ec5381fd5339d0d29b1a5529e48d8b86fc2419))
776
- * **workflows:** [`ci`] re-add node14 to matrix ([44801d8](https://github.com/flex-development/mlly/commit/44801d803774588c46299050ff858027605a2079))
777
- * **workflows:** [`ci`] update codecov environment ([32518bd](https://github.com/flex-development/mlly/commit/32518bdd2650e01bc92dd6e212ef9420f239ac9f))
778
- * **workflows:** [`ci`] update node setup ([b326f5d](https://github.com/flex-development/mlly/commit/b326f5d35c968fd4f1145a50a769e8d645190941))
779
- * **workflows:** [`ci`] upload coverage reports to codecov ([a24776b](https://github.com/flex-development/mlly/commit/a24776ba0c3aad87e36881f5558eba58f5f7a866))
780
- * **workflows:** [`publish`] cleanup registry scope ([ba5b355](https://github.com/flex-development/mlly/commit/ba5b355f30e62cb863abd35eddaa28b5b0885f56))
781
- * **workflows:** [`publish`] print contents of `.npmrc` file ([2c16ff6](https://github.com/flex-development/mlly/commit/2c16ff62786d8ecc1f403d364af4d6db372e5a75))
782
- * **workflows:** [`publish`] use node version file ([80d68c1](https://github.com/flex-development/mlly/commit/80d68c13aac5cdb0005c236d56bb8db90bd831a0))
783
- * **workflows:** [`release`] publish releases from repo admin account ([bbda19c](https://github.com/flex-development/mlly/commit/bbda19ca37155411a0a4e9bf4e734a7b7ad959c8))
784
-
880
+ - [[`e188761`](https://github.com/flex-development/mlly/commit/e1887618c8a2c5fe9cb69babd15498b618e64e66)] configure private package registry for [@dependabot](https://github.com/dependabot)
881
+ - [[`126dfab`](https://github.com/flex-development/mlly/commit/126dfab8d937f3526ea109acc91565accf3b2653)] fix [@dependabot](https://github.com/dependabot) npm package-ecosystem x yarn integration
882
+ - [[`b5e8279`](https://github.com/flex-development/mlly/commit/b5e8279269f75cee5076d86b7c34578b74f306df)] **deps:** bump actions/add-to-project from 0.3.0 to 0.4.0
883
+ - [[`0637831`](https://github.com/flex-development/mlly/commit/063783140fb475f29f821408837389219c471625)] **deps:** bump actions/checkout from 3.1.0 to 3.2.0
884
+ - [[`ba6063c`](https://github.com/flex-development/mlly/commit/ba6063cb88556d106fb01c3948ba03d8f4848a47)] **deps:** bump dessant/lock-threads from 3.0.0 to 4.0.0
885
+ - [[`e19b975`](https://github.com/flex-development/mlly/commit/e19b97514d655b2c89e7fa4b09aa3ea93a0f8415)] **deps:** bump flex-development/dist-tag-action from 1.1.1 to 1.1.2
886
+ - [[`e271e8a`](https://github.com/flex-development/mlly/commit/e271e8afe22244e3d270aa02a833ccb4b077f296)] **workflows:** [`add-to-project`] add items from repo admin account
887
+ - [[`28a0fa6`](https://github.com/flex-development/mlly/commit/28a0fa6d809c94af458c6d5c9b661bb9d564b70a)] **workflows:** [`ci`] add node.js matrix
888
+ - [[`701caea`](https://github.com/flex-development/mlly/commit/701caea0edc1e2d36d7a1323a88e1e714e88743d)] **workflows:** [`ci`] archive production artifacts
889
+ - [[`74ec538`](https://github.com/flex-development/mlly/commit/74ec5381fd5339d0d29b1a5529e48d8b86fc2419)] **workflows:** [`ci`] let [@dependabot](https://github.com/dependabot) modify lockfile
890
+ - [[`44801d8`](https://github.com/flex-development/mlly/commit/44801d803774588c46299050ff858027605a2079)] **workflows:** [`ci`] re-add node14 to matrix
891
+ - [[`32518bd`](https://github.com/flex-development/mlly/commit/32518bdd2650e01bc92dd6e212ef9420f239ac9f)] **workflows:** [`ci`] update codecov environment
892
+ - [[`b326f5d`](https://github.com/flex-development/mlly/commit/b326f5d35c968fd4f1145a50a769e8d645190941)] **workflows:** [`ci`] update node setup
893
+ - [[`a24776b`](https://github.com/flex-development/mlly/commit/a24776ba0c3aad87e36881f5558eba58f5f7a866)] **workflows:** [`ci`] upload coverage reports to codecov
894
+ - [[`ba5b355`](https://github.com/flex-development/mlly/commit/ba5b355f30e62cb863abd35eddaa28b5b0885f56)] **workflows:** [`publish`] cleanup registry scope
895
+ - [[`2c16ff6`](https://github.com/flex-development/mlly/commit/2c16ff62786d8ecc1f403d364af4d6db372e5a75)] **workflows:** [`publish`] print contents of `.npmrc` file
896
+ - [[`80d68c1`](https://github.com/flex-development/mlly/commit/80d68c13aac5cdb0005c236d56bb8db90bd831a0)] **workflows:** [`publish`] use node version file
897
+ - [[`bbda19c`](https://github.com/flex-development/mlly/commit/bbda19ca37155411a0a4e9bf4e734a7b7ad959c8)] **workflows:** [`release`] publish releases from repo admin account
785
898
 
786
899
  ### :pencil: Documentation
787
900
 
788
- * add "contributor covenant code of conduct" ([8f1285b](https://github.com/flex-development/mlly/commit/8f1285b12b7c74401c962d614e2c79a6a0c89585))
789
-
901
+ - [[`8f1285b`](https://github.com/flex-development/mlly/commit/8f1285b12b7c74401c962d614e2c79a6a0c89585)] add "contributor covenant code of conduct"
790
902
 
791
903
  ### :bug: Fixes
792
904
 
793
- * **install:** [git] make `postinstall` script work with git install ([1a70af2](https://github.com/flex-development/mlly/commit/1a70af2bed20cbb6667ca0dd3e8d2e7d6a38da4b))
794
-
905
+ - [[`1a70af2`](https://github.com/flex-development/mlly/commit/1a70af2bed20cbb6667ca0dd3e8d2e7d6a38da4b)] **install:** [git] make `postinstall` script work with git install
795
906
 
796
907
  ### :house_with_garden: Housekeeping
797
908
 
798
- * project qa ([4acf639](https://github.com/flex-development/mlly/commit/4acf639b6b28c20a782e39d6f4a8c4b2adb0ae20))
799
- * project qa ([3120990](https://github.com/flex-development/mlly/commit/312099035d0a90f044688e6619ec84dd6049d8bb))
800
- * **github:** add commit scope `install` ([065dbbb](https://github.com/flex-development/mlly/commit/065dbbbfd271e576d5031fcd155e91007cb95f62))
801
- * **github:** add label `scope:install` ([3ddc9c2](https://github.com/flex-development/mlly/commit/3ddc9c29e92e0e254f48f87ce7052196b79c9cc1))
802
- * **internal:** remove barrel file ([e0ba89c](https://github.com/flex-development/mlly/commit/e0ba89cceee97e99111dd4ab7c63601b593a24d5))
803
- * **pkg:** add keywords `ecmascript-modules` and `esmodules` ([e994f4b](https://github.com/flex-development/mlly/commit/e994f4bb182f0861f3c1c3c68c1a9d0a9a3d6631))
804
- * **tests:** local codecov integration ([bdbae1d](https://github.com/flex-development/mlly/commit/bdbae1d44cc60409a3dabb23acae79f8180b187a))
805
- * **yarn:** bump yarn from 4.0.0-rc.14 to 4.0.0-rc.34 ([045ee62](https://github.com/flex-development/mlly/commit/045ee6252342027657771d7bbdab6748fbb9a36a))
909
+ - [[`4acf639`](https://github.com/flex-development/mlly/commit/4acf639b6b28c20a782e39d6f4a8c4b2adb0ae20)] project qa
910
+ - [[`3120990`](https://github.com/flex-development/mlly/commit/312099035d0a90f044688e6619ec84dd6049d8bb)] project qa
911
+ - [[`065dbbb`](https://github.com/flex-development/mlly/commit/065dbbbfd271e576d5031fcd155e91007cb95f62)] **github:** add commit scope `install`
912
+ - [[`3ddc9c2`](https://github.com/flex-development/mlly/commit/3ddc9c29e92e0e254f48f87ce7052196b79c9cc1)] **github:** add label `scope:install`
913
+ - [[`e0ba89c`](https://github.com/flex-development/mlly/commit/e0ba89cceee97e99111dd4ab7c63601b593a24d5)] **internal:** remove barrel file
914
+ - [[`e994f4b`](https://github.com/flex-development/mlly/commit/e994f4bb182f0861f3c1c3c68c1a9d0a9a3d6631)] **pkg:** add keywords `ecmascript-modules` and `esmodules`
915
+ - [[`bdbae1d`](https://github.com/flex-development/mlly/commit/bdbae1d44cc60409a3dabb23acae79f8180b187a)] **tests:** local codecov integration
916
+ - [[`045ee62`](https://github.com/flex-development/mlly/commit/045ee6252342027657771d7bbdab6748fbb9a36a)] **yarn:** bump yarn from 4.0.0-rc.14 to 4.0.0-rc.34
806
917
 
918
+ ### :mechanical_arm: Refactors
807
919
 
808
- ### :zap: Refactors
809
-
810
- * statements ([731bd2a](https://github.com/flex-development/mlly/commit/731bd2a770671ad771ff38e8b12fce513034db27))
811
- * **ts:** enforce `exactOptionalPropertyTypes` ([f3109b4](https://github.com/flex-development/mlly/commit/f3109b4cb6b33528ac2655e9c90eb86a2512b00d))
812
- * **types:** `SpecifierType` -> `ModuleSpecifierType` ([263e98b](https://github.com/flex-development/mlly/commit/263e98b4e8189315157dfb4940df76e61a661922))
813
- * **types:** remove `Ext` ([303de20](https://github.com/flex-development/mlly/commit/303de200e3eddf4c6c33fd41db6f6f0ad84fe8ec))
814
-
920
+ - [[`731bd2a`](https://github.com/flex-development/mlly/commit/731bd2a770671ad771ff38e8b12fce513034db27)] statements
921
+ - [[`f3109b4`](https://github.com/flex-development/mlly/commit/f3109b4cb6b33528ac2655e9c90eb86a2512b00d)] **ts:** enforce `exactOptionalPropertyTypes`
922
+ - [[`263e98b`](https://github.com/flex-development/mlly/commit/263e98b4e8189315157dfb4940df76e61a661922)] **types:** `SpecifierType` -> `ModuleSpecifierType`
923
+ - [[`303de20`](https://github.com/flex-development/mlly/commit/303de200e3eddf4c6c33fd41db6f6f0ad84fe8ec)] **types:** remove `Ext`
815
924
 
816
925
  ### :white_check_mark: Testing
817
926
 
818
- * **ts:** add remaining type tests ([7a5430f](https://github.com/flex-development/mlly/commit/7a5430f4d95392b9fa6637d09765dcdd79d275b4))
927
+ - [[`7a5430f`](https://github.com/flex-development/mlly/commit/7a5430f4d95392b9fa6637d09765dcdd79d275b4)] **ts:** add remaining type tests
819
928
 
820
929
  ## [1.0.0-alpha.2](https://github.com/flex-development/mlly/compare/1.0.0-alpha.1...1.0.0-alpha.2) (2022-11-06)
821
930
 
822
-
823
931
  ### :robot: Continuous Integration
824
932
 
825
- * **workflows:** fix production docs deployment ([511fb53](https://github.com/flex-development/mlly/commit/511fb53ae423fe6d77b0447427affb0a1c0e2802))
933
+ - [[`511fb53`](https://github.com/flex-development/mlly/commit/511fb53ae423fe6d77b0447427affb0a1c0e2802)] **workflows:** fix production docs deployment
826
934
 
827
935
  ## 1.0.0-alpha.1 (2022-11-06)
828
936
 
829
-
830
937
  ### :package: Build
831
938
 
832
- * cleanup build target settings ([b809be9](https://github.com/flex-development/mlly/commit/b809be9934c6661c98bdcfd3a568e7d34c0fe445))
833
- * remove `src` files from distribution ([0603ebe](https://github.com/flex-development/mlly/commit/0603ebefae0002c13f7d255ff2cc20cdf4057c7e))
834
- * require node `>=14.16` ([cd0dda9](https://github.com/flex-development/mlly/commit/cd0dda9dfae0bd205875f34d8fd8f2022e36d303))
835
- * **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.6 to 1.0.0-alpha.8 ([567bea8](https://github.com/flex-development/mlly/commit/567bea892e46be9cc04885e97a0d76235e68bd0c))
836
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([e3649d4](https://github.com/flex-development/mlly/commit/e3649d4d98a59562a0ee27800eb33d1f6cc73c03))
837
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([cdfc9af](https://github.com/flex-development/mlly/commit/cdfc9af3bbce508aceb0fa80d41b9de567383a14))
838
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([24ee68b](https://github.com/flex-development/mlly/commit/24ee68b94523fca0ea9498068efc1765eb8f0a97))
839
- * **deps:** replace `pathe` with `upath` ([f705671](https://github.com/flex-development/mlly/commit/f705671f193a7c3a0d24e49e7769683b5876aeae))
840
- * **docs:** [site] use flex-development/docast@48367224ce9b9aa804d872071fc7e6fc6a2f38b3 ([06324f7](https://github.com/flex-development/mlly/commit/06324f723d88320e0de86563b2b78e7d3d02618c))
841
- * **docs:** [site] use flex-development/docast@dd4b6c3b2d4e770df99f3a2b90032f228dcd76a8 ([3de807d](https://github.com/flex-development/mlly/commit/3de807d36c5b06760c9cd8d72b98ca4b0a7233ff))
842
- * **pkg:** remove extraneous `bin` field ([b56c209](https://github.com/flex-development/mlly/commit/b56c2098cf328b89f8e6c34862ebc63668f9e348))
843
- * **syntax:** export `detectSyntax` ([4f3850f](https://github.com/flex-development/mlly/commit/4f3850f60fe9c4981337452d377f29cb6bcceb6d))
844
- * **syntax:** export `hasESMSyntax` ([64a89b2](https://github.com/flex-development/mlly/commit/64a89b235e8ae23c0e63fa013c110a3ca173785a))
845
- * **ts:** reorganize `typesVersions` ([53430fe](https://github.com/flex-development/mlly/commit/53430fe8d4e99a0792e4b64a136d8ba779d51e21))
846
-
939
+ - [[`b809be9`](https://github.com/flex-development/mlly/commit/b809be9934c6661c98bdcfd3a568e7d34c0fe445)] cleanup build target settings
940
+ - [[`0603ebe`](https://github.com/flex-development/mlly/commit/0603ebefae0002c13f7d255ff2cc20cdf4057c7e)] remove `src` files from distribution
941
+ - [[`cd0dda9`](https://github.com/flex-development/mlly/commit/cd0dda9dfae0bd205875f34d8fd8f2022e36d303)] require node `>=14.16`
942
+ - [[`567bea8`](https://github.com/flex-development/mlly/commit/567bea892e46be9cc04885e97a0d76235e68bd0c)] **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.6 to 1.0.0-alpha.8
943
+ - [[`e3649d4`](https://github.com/flex-development/mlly/commit/e3649d4d98a59562a0ee27800eb33d1f6cc73c03)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
944
+ - [[`cdfc9af`](https://github.com/flex-development/mlly/commit/cdfc9af3bbce508aceb0fa80d41b9de567383a14)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
945
+ - [[`24ee68b`](https://github.com/flex-development/mlly/commit/24ee68b94523fca0ea9498068efc1765eb8f0a97)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
946
+ - [[`f705671`](https://github.com/flex-development/mlly/commit/f705671f193a7c3a0d24e49e7769683b5876aeae)] **deps:** replace `pathe` with `upath`
947
+ - [[`06324f7`](https://github.com/flex-development/mlly/commit/06324f723d88320e0de86563b2b78e7d3d02618c)] **docs:** [site] use flex-development/docast@48367224ce9b9aa804d872071fc7e6fc6a2f38b3
948
+ - [[`3de807d`](https://github.com/flex-development/mlly/commit/3de807d36c5b06760c9cd8d72b98ca4b0a7233ff)] **docs:** [site] use flex-development/docast@dd4b6c3b2d4e770df99f3a2b90032f228dcd76a8
949
+ - [[`b56c209`](https://github.com/flex-development/mlly/commit/b56c2098cf328b89f8e6c34862ebc63668f9e348)] **pkg:** remove extraneous `bin` field
950
+ - [[`4f3850f`](https://github.com/flex-development/mlly/commit/4f3850f60fe9c4981337452d377f29cb6bcceb6d)] **syntax:** export `detectSyntax`
951
+ - [[`64a89b2`](https://github.com/flex-development/mlly/commit/64a89b235e8ae23c0e63fa013c110a3ca173785a)] **syntax:** export `hasESMSyntax`
952
+ - [[`53430fe`](https://github.com/flex-development/mlly/commit/53430fe8d4e99a0792e4b64a136d8ba779d51e21)] **ts:** reorganize `typesVersions`
847
953
 
848
954
  ### :robot: Continuous Integration
849
955
 
850
- * add [@dependabot](https://github.com/dependabot) config ([ca31ac5](https://github.com/flex-development/mlly/commit/ca31ac58e4fcedb5feb2a86a134503ef2819fe00))
851
- * **deps:** bump actions/checkout from 3.0.2 to 3.1.0 ([#1](https://github.com/flex-development/mlly/issues/1)) ([a7fdf9e](https://github.com/flex-development/mlly/commit/a7fdf9e9a3d84f37e7f436a544e98692f8988cac))
852
- * **deps:** bump actions/github-script from 6.3.1 to 6.3.2 ([#3](https://github.com/flex-development/mlly/issues/3)) ([ef9e10d](https://github.com/flex-development/mlly/commit/ef9e10d9a08699961fee8acd664fadf8f1b95729))
853
- * **deps:** bump actions/github-script from 6.3.2 to 6.3.3 ([#5](https://github.com/flex-development/mlly/issues/5)) ([68306db](https://github.com/flex-development/mlly/commit/68306db8078fdcaa0a0a6ef80195335c5d7b825d))
854
- * **deps:** bump actions/setup-node from 3.5.0 to 3.5.1 ([#6](https://github.com/flex-development/mlly/issues/6)) ([c303f3e](https://github.com/flex-development/mlly/commit/c303f3e592508eb73e1e7f26a64cf1d3cd5f4808))
855
- * **deps:** Bump crazy-max/ghaction-import-gpg from 5.1.0 to 5.2.0 ([#7](https://github.com/flex-development/mlly/issues/7)) ([e87d930](https://github.com/flex-development/mlly/commit/e87d9302e3cec93872c4ccf119aba75446839291))
856
- * **deps:** Bump dependabot/fetch-metadata from 1.3.4 to 1.3.5 ([#8](https://github.com/flex-development/mlly/issues/8)) ([9d64f86](https://github.com/flex-development/mlly/commit/9d64f8640e10c7795bda75b183a47ffcbc2c6586))
857
- * **deps:** bump hmarr/debug-action from 2.0.1 to 2.1.0 ([#2](https://github.com/flex-development/mlly/issues/2)) ([3b25af3](https://github.com/flex-development/mlly/commit/3b25af3b01d82dbf195fe5d16686063cfb6533a5))
858
- * **deps:** bump octokit/graphql-action from 2.2.22 to 2.2.23 ([#4](https://github.com/flex-development/mlly/issues/4)) ([93e8994](https://github.com/flex-development/mlly/commit/93e89941b7bd6c5a4539cd1770d400a216c55525))
859
- * **workflows:** `preview` ([2936463](https://github.com/flex-development/mlly/commit/2936463896eec04a5f5025c981d74361f0ee13df))
860
- * **workflows:** deploy docs to production on github release ([876e5b0](https://github.com/flex-development/mlly/commit/876e5b09fe5b8f076133d1bbd78bf02eed206036))
861
- * **workflows:** ensure docs preview is deployed with all `src` updates ([74bdb73](https://github.com/flex-development/mlly/commit/74bdb73a81ebf38fa606f63245140c2c437d20e3))
862
-
956
+ - [[`ca31ac5`](https://github.com/flex-development/mlly/commit/ca31ac58e4fcedb5feb2a86a134503ef2819fe00)] add [@dependabot](https://github.com/dependabot) config
957
+ - [[`a7fdf9e`](https://github.com/flex-development/mlly/commit/a7fdf9e9a3d84f37e7f436a544e98692f8988cac)] **deps:** bump actions/checkout from 3.0.2 to 3.1.0 ([#1](https://github.com/flex-development/mlly/issues/1))
958
+ - [[`ef9e10d`](https://github.com/flex-development/mlly/commit/ef9e10d9a08699961fee8acd664fadf8f1b95729)] **deps:** bump actions/github-script from 6.3.1 to 6.3.2 ([#3](https://github.com/flex-development/mlly/issues/3))
959
+ - [[`68306db`](https://github.com/flex-development/mlly/commit/68306db8078fdcaa0a0a6ef80195335c5d7b825d)] **deps:** bump actions/github-script from 6.3.2 to 6.3.3 ([#5](https://github.com/flex-development/mlly/issues/5))
960
+ - [[`c303f3e`](https://github.com/flex-development/mlly/commit/c303f3e592508eb73e1e7f26a64cf1d3cd5f4808)] **deps:** bump actions/setup-node from 3.5.0 to 3.5.1 ([#6](https://github.com/flex-development/mlly/issues/6))
961
+ - [[`e87d930`](https://github.com/flex-development/mlly/commit/e87d9302e3cec93872c4ccf119aba75446839291)] **deps:** Bump crazy-max/ghaction-import-gpg from 5.1.0 to 5.2.0 ([#7](https://github.com/flex-development/mlly/issues/7))
962
+ - [[`9d64f86`](https://github.com/flex-development/mlly/commit/9d64f8640e10c7795bda75b183a47ffcbc2c6586)] **deps:** Bump dependabot/fetch-metadata from 1.3.4 to 1.3.5 ([#8](https://github.com/flex-development/mlly/issues/8))
963
+ - [[`3b25af3`](https://github.com/flex-development/mlly/commit/3b25af3b01d82dbf195fe5d16686063cfb6533a5)] **deps:** bump hmarr/debug-action from 2.0.1 to 2.1.0 ([#2](https://github.com/flex-development/mlly/issues/2))
964
+ - [[`93e8994`](https://github.com/flex-development/mlly/commit/93e89941b7bd6c5a4539cd1770d400a216c55525)] **deps:** bump octokit/graphql-action from 2.2.22 to 2.2.23 ([#4](https://github.com/flex-development/mlly/issues/4))
965
+ - [[`2936463`](https://github.com/flex-development/mlly/commit/2936463896eec04a5f5025c981d74361f0ee13df)] **workflows:** `preview`
966
+ - [[`876e5b0`](https://github.com/flex-development/mlly/commit/876e5b09fe5b8f076133d1bbd78bf02eed206036)] **workflows:** deploy docs to production on github release
967
+ - [[`74bdb73`](https://github.com/flex-development/mlly/commit/74bdb73a81ebf38fa606f63245140c2c437d20e3)] **workflows:** ensure docs preview is deployed with all `src` updates
863
968
 
864
969
  ### :pencil: Documentation
865
970
 
866
- * [`hasESMSyntax`] fix typo in `@return` description ([c9f6a85](https://github.com/flex-development/mlly/commit/c9f6a8571034c82a2ac801db62632f7fc7033efc))
867
- * [site] add `/api/interfaces` ([95eebeb](https://github.com/flex-development/mlly/commit/95eebeb47adc9cbf8e0dc576dbb3211fd241d432))
868
- * [site] add `/api/types` ([cf7f5be](https://github.com/flex-development/mlly/commit/cf7f5be2af20ee33cb6b93a2809eeaf667334d15))
869
- * [site] add `robots.txt` generation to postbuild tasks ([ef98b86](https://github.com/flex-development/mlly/commit/ef98b86bc3e76cf52781495a52bd7b725bdf5db2))
870
- * [site] add esm only warning to install guide ([19dbe66](https://github.com/flex-development/mlly/commit/19dbe662ef869d26d7ac0f5412445dd392116895))
871
- * [site] add google site verification ([8cd42d6](https://github.com/flex-development/mlly/commit/8cd42d6fe457cc342ca22d7130cf5572d81b6e48))
872
- * [site] add initial front-end checklist ([1403dc3](https://github.com/flex-development/mlly/commit/1403dc357ac8db9ee9f3308b93f7d558d48be170))
873
- * [site] algolia search integration ([1af849d](https://github.com/flex-development/mlly/commit/1af849d7be31c618ab6742c4a9ee2cd22038999c))
874
- * [site] configure google analytics ([3c244ec](https://github.com/flex-development/mlly/commit/3c244ec3294b2ff6bcd6afdaf6b3238155ee25a2))
875
- * [site] fix canonical url ([aea7a10](https://github.com/flex-development/mlly/commit/aea7a105d3fa928c52fc5c8a67fc20acb0c6b266))
876
- * [site] fix duplicate meta description ([188d914](https://github.com/flex-development/mlly/commit/188d914bbdd99683a2eeaccb2c4e0080ecba5af3))
877
- * [site] init `/api/` ([a5084d3](https://github.com/flex-development/mlly/commit/a5084d3b1b25b6e33b570e302b91aba41c012075))
878
- * [site] move search indexing to `buildEnd` hook ([4b71095](https://github.com/flex-development/mlly/commit/4b71095d3e8895dcfc9c8355e9c2286da2c5c6d5))
879
- * [site] prevent tab nabbing ([1929374](https://github.com/flex-development/mlly/commit/1929374cf03a52d03216d39a43e1fd94d2f75431))
880
- * [site] specify text directionality ([1807a41](https://github.com/flex-development/mlly/commit/1807a41f31fa1a337be2722dda5771269e121522))
881
- * [site] update front-end checklist ([70fd41d](https://github.com/flex-development/mlly/commit/70fd41d216b6f5d2ceb8f913ea6b87f744c15877))
882
- * [site]: add `/api/constants` ([ed2bb9f](https://github.com/flex-development/mlly/commit/ed2bb9f8d54525a0da49dff9c879a9831cccef2d))
883
- * [site]: resolve `@link` ([6ed82f8](https://github.com/flex-development/mlly/commit/6ed82f84e248a2ea21f73559fa40dba25bd88db5))
884
- * [site]: update `/api/` title and intro ([3e60e88](https://github.com/flex-development/mlly/commit/3e60e884b5e7f551be3621ccbb2c4dabed783f73))
885
- * [site]: update `/api/constants` intro ([2d1d525](https://github.com/flex-development/mlly/commit/2d1d52590e7098006f4df4c58e8d75af2ebb471a))
886
- * init docs site ([df39382](https://github.com/flex-development/mlly/commit/df39382d9472d3eb97eb0eca37fd147634a65ff3))
887
- * merge zsh docs into contributing guide ([f2e2a6c](https://github.com/flex-development/mlly/commit/f2e2a6c64d3cd8cf3376c912236deec7cfab4f37))
888
- * reorganize gpr install guide ([0a8ef6e](https://github.com/flex-development/mlly/commit/0a8ef6ec08490807c3727398ae402d57c4b32f3d))
889
- * temporarily remove `detectSyntax` example ([afc41e9](https://github.com/flex-development/mlly/commit/afc41e9d16c6f869d26db44bbac7579b24f6123c))
890
- * update descriptions and reference links ([8bd5702](https://github.com/flex-development/mlly/commit/8bd570288ef8ed66fce4bd24bf3bc84b9e113dd2))
891
-
971
+ - [[`c9f6a85`](https://github.com/flex-development/mlly/commit/c9f6a8571034c82a2ac801db62632f7fc7033efc)] [`hasESMSyntax`] fix typo in `[@return](https://github.com/return)` description
972
+ - [[`95eebeb`](https://github.com/flex-development/mlly/commit/95eebeb47adc9cbf8e0dc576dbb3211fd241d432)] [site] add `/api/interfaces`
973
+ - [[`cf7f5be`](https://github.com/flex-development/mlly/commit/cf7f5be2af20ee33cb6b93a2809eeaf667334d15)] [site] add `/api/types`
974
+ - [[`ef98b86`](https://github.com/flex-development/mlly/commit/ef98b86bc3e76cf52781495a52bd7b725bdf5db2)] [site] add `robots.txt` generation to postbuild tasks
975
+ - [[`19dbe66`](https://github.com/flex-development/mlly/commit/19dbe662ef869d26d7ac0f5412445dd392116895)] [site] add esm only warning to install guide
976
+ - [[`8cd42d6`](https://github.com/flex-development/mlly/commit/8cd42d6fe457cc342ca22d7130cf5572d81b6e48)] [site] add google site verification
977
+ - [[`1403dc3`](https://github.com/flex-development/mlly/commit/1403dc357ac8db9ee9f3308b93f7d558d48be170)] [site] add initial front-end checklist
978
+ - [[`1af849d`](https://github.com/flex-development/mlly/commit/1af849d7be31c618ab6742c4a9ee2cd22038999c)] [site] algolia search integration
979
+ - [[`3c244ec`](https://github.com/flex-development/mlly/commit/3c244ec3294b2ff6bcd6afdaf6b3238155ee25a2)] [site] configure google analytics
980
+ - [[`aea7a10`](https://github.com/flex-development/mlly/commit/aea7a105d3fa928c52fc5c8a67fc20acb0c6b266)] [site] fix canonical url
981
+ - [[`188d914`](https://github.com/flex-development/mlly/commit/188d914bbdd99683a2eeaccb2c4e0080ecba5af3)] [site] fix duplicate meta description
982
+ - [[`a5084d3`](https://github.com/flex-development/mlly/commit/a5084d3b1b25b6e33b570e302b91aba41c012075)] [site] init `/api/`
983
+ - [[`4b71095`](https://github.com/flex-development/mlly/commit/4b71095d3e8895dcfc9c8355e9c2286da2c5c6d5)] [site] move search indexing to `buildEnd` hook
984
+ - [[`1929374`](https://github.com/flex-development/mlly/commit/1929374cf03a52d03216d39a43e1fd94d2f75431)] [site] prevent tab nabbing
985
+ - [[`1807a41`](https://github.com/flex-development/mlly/commit/1807a41f31fa1a337be2722dda5771269e121522)] [site] specify text directionality
986
+ - [[`70fd41d`](https://github.com/flex-development/mlly/commit/70fd41d216b6f5d2ceb8f913ea6b87f744c15877)] [site] update front-end checklist
987
+ - [[`ed2bb9f`](https://github.com/flex-development/mlly/commit/ed2bb9f8d54525a0da49dff9c879a9831cccef2d)] [site]: add `/api/constants`
988
+ - [[`6ed82f8`](https://github.com/flex-development/mlly/commit/6ed82f84e248a2ea21f73559fa40dba25bd88db5)] [site]: resolve `[@link](https://github.com/link)`
989
+ - [[`3e60e88`](https://github.com/flex-development/mlly/commit/3e60e884b5e7f551be3621ccbb2c4dabed783f73)] [site]: update `/api/` title and intro
990
+ - [[`2d1d525`](https://github.com/flex-development/mlly/commit/2d1d52590e7098006f4df4c58e8d75af2ebb471a)] [site]: update `/api/constants` intro
991
+ - [[`df39382`](https://github.com/flex-development/mlly/commit/df39382d9472d3eb97eb0eca37fd147634a65ff3)] init docs site
992
+ - [[`f2e2a6c`](https://github.com/flex-development/mlly/commit/f2e2a6c64d3cd8cf3376c912236deec7cfab4f37)] merge zsh docs into contributing guide
993
+ - [[`0a8ef6e`](https://github.com/flex-development/mlly/commit/0a8ef6ec08490807c3727398ae402d57c4b32f3d)] reorganize gpr install guide
994
+ - [[`afc41e9`](https://github.com/flex-development/mlly/commit/afc41e9d16c6f869d26db44bbac7579b24f6123c)] temporarily remove `detectSyntax` example
995
+ - [[`8bd5702`](https://github.com/flex-development/mlly/commit/8bd570288ef8ed66fce4bd24bf3bc84b9e113dd2)] update descriptions and reference links
892
996
 
893
997
  ### :sparkles: Features
894
998
 
895
- * **analyze:** `extractStatements` ([08b9124](https://github.com/flex-development/mlly/commit/08b9124a76e5c4aa182221d87dea903b3876efd4))
896
- * **analyze:** `findDynamicImports` ([a03089a](https://github.com/flex-development/mlly/commit/a03089a6ab374adaa1c0908bf304677f11e8b8e2))
897
- * **analyze:** `findExports` ([7a66d78](https://github.com/flex-development/mlly/commit/7a66d781caa6d5f522d4a51e345eafb16b48974e))
898
- * **analyze:** `findRequires` ([1d58008](https://github.com/flex-development/mlly/commit/1d58008174cc0622c2b1a54ce0dbd8741553cacc))
899
- * **analyze:** `findStaticImports` ([673294c](https://github.com/flex-development/mlly/commit/673294cae8156f26538f7f1db51efcab74678fcc))
900
- * **interfaces:** `CompilerOptionsJson` ([39c1abf](https://github.com/flex-development/mlly/commit/39c1abf9856886566277f771eddf27d3cb6aabd6))
901
- * **interfaces:** `DynamicImport` ([b7474a1](https://github.com/flex-development/mlly/commit/b7474a18e482bd74f9c1337c78adc3299d2b0be5))
902
- * **interfaces:** `ExportStatement` ([4384be4](https://github.com/flex-development/mlly/commit/4384be4525b22858e4cbcc782e5a57352583fd60))
903
- * **interfaces:** `ImportStatement` ([6a16d74](https://github.com/flex-development/mlly/commit/6a16d74c491ee2f0453b31a3ea4bf15b9ab62289))
904
- * **interfaces:** `RequireStatement` ([0dc6d7a](https://github.com/flex-development/mlly/commit/0dc6d7a8cb6a4c00f20621a3232cd0b37476025b))
905
- * **interfaces:** `Statement` ([ec25911](https://github.com/flex-development/mlly/commit/ec25911670d0d204d196eb0039a95948ef7174c1))
906
- * **interfaces:** `StaticImport` ([78816b7](https://github.com/flex-development/mlly/commit/78816b748cde2eec6bbfc821370be46008e46a21))
907
- * **lib:** `getCompilerOptions` ([08c4b84](https://github.com/flex-development/mlly/commit/08c4b8492f7640f74dc676c073a7075115846698))
908
- * **lib:** `isBuiltin` ([b0a618b](https://github.com/flex-development/mlly/commit/b0a618bf910b5a135a0f44df06dffcc0b6747774))
909
- * **lib:** `toDataURL` ([57647dd](https://github.com/flex-development/mlly/commit/57647dd958bc29ff578c1661c3977021034ea5aa))
910
- * **resolve:** [`resolveModule`] `@types` detection ([bcd1de7](https://github.com/flex-development/mlly/commit/bcd1de782395a784e0536f7184072acdaef7f33e))
911
- * **resolve:** `resolveAlias` ([4014515](https://github.com/flex-development/mlly/commit/4014515682448d909fff777d41ed114f2a5ae072))
912
- * **resolve:** `resolveAliases` ([25895cf](https://github.com/flex-development/mlly/commit/25895cf8455d932973593193db50fa28ea882d29))
913
- * **resolve:** `resolveModule` ([90ae6b5](https://github.com/flex-development/mlly/commit/90ae6b55f197d161023119f82d394abb1d2dd5d3))
914
- * **resolve:** `resolveModules` ([e7394ad](https://github.com/flex-development/mlly/commit/e7394ad44ce4965ff2d14ee4a7a7d61a23a7be1e))
915
- * **specifiers:** [`toBareSpecifier`] `@types` detection + `types` entry point support ([6991fae](https://github.com/flex-development/mlly/commit/6991fae7631aa0f2ceb0c3c120349b7d5de55e0e))
916
- * **specifiers:** `toAbsoluteSpecifier` ([83578ac](https://github.com/flex-development/mlly/commit/83578ac87e2600ad1cb7751a260667a13aac77f4))
917
- * **specifiers:** `toBareSpecifier` ([1407d5e](https://github.com/flex-development/mlly/commit/1407d5e059442fec95bd017aa4f8853856cd3166))
918
- * **specifiers:** `toRelativeSpecifier` ([26b7096](https://github.com/flex-development/mlly/commit/26b70967a8d2c06b2449b79002d2ebf7a7bbb990))
919
- * **syntax:** `detectSyntax` ([184950f](https://github.com/flex-development/mlly/commit/184950faba5ee78597b69a2e4b1219338ff56bc7))
920
- * **syntax:** `hasCJSSyntax` ([7d64e65](https://github.com/flex-development/mlly/commit/7d64e657002e4fd6ace32775bb2c274574765781))
921
- * **syntax:** `hasESMSyntax` ([6888620](https://github.com/flex-development/mlly/commit/688862056a14d0ddd633d74cc9708b07b6fc2922))
922
- * **syntax:** detect dynamic imports in commonjs ([05b4d8f](https://github.com/flex-development/mlly/commit/05b4d8f69302d7d6c991bc4dd12a874b0947ca34))
923
- * **types:** `Declaration` ([1427995](https://github.com/flex-development/mlly/commit/1427995fd8999090fd76ae59adb6ecbadf19e263))
924
- * **types:** `Ext` ([2ccd483](https://github.com/flex-development/mlly/commit/2ccd4832690367959ba207df0378409a1d4ee2ab))
925
- * **types:** `MIMEType` ([8ff6a94](https://github.com/flex-development/mlly/commit/8ff6a944207b32f45eddda8a7fd6ac38bf47f634))
926
- * **types:** `SpecifierType` ([6feccb1](https://github.com/flex-development/mlly/commit/6feccb15fca8affeb51efd6ce78f4ae267056910))
927
- * **types:** `StatementType` ([b0feb6c](https://github.com/flex-development/mlly/commit/b0feb6cbf79b5a2d5364b728a2f2a45b8c6f5a50))
928
-
999
+ - [[`08b9124`](https://github.com/flex-development/mlly/commit/08b9124a76e5c4aa182221d87dea903b3876efd4)] **analyze:** `extractStatements`
1000
+ - [[`a03089a`](https://github.com/flex-development/mlly/commit/a03089a6ab374adaa1c0908bf304677f11e8b8e2)] **analyze:** `findDynamicImports`
1001
+ - [[`7a66d78`](https://github.com/flex-development/mlly/commit/7a66d781caa6d5f522d4a51e345eafb16b48974e)] **analyze:** `findExports`
1002
+ - [[`1d58008`](https://github.com/flex-development/mlly/commit/1d58008174cc0622c2b1a54ce0dbd8741553cacc)] **analyze:** `findRequires`
1003
+ - [[`673294c`](https://github.com/flex-development/mlly/commit/673294cae8156f26538f7f1db51efcab74678fcc)] **analyze:** `findStaticImports`
1004
+ - [[`39c1abf`](https://github.com/flex-development/mlly/commit/39c1abf9856886566277f771eddf27d3cb6aabd6)] **interfaces:** `CompilerOptionsJson`
1005
+ - [[`b7474a1`](https://github.com/flex-development/mlly/commit/b7474a18e482bd74f9c1337c78adc3299d2b0be5)] **interfaces:** `DynamicImport`
1006
+ - [[`4384be4`](https://github.com/flex-development/mlly/commit/4384be4525b22858e4cbcc782e5a57352583fd60)] **interfaces:** `ExportStatement`
1007
+ - [[`6a16d74`](https://github.com/flex-development/mlly/commit/6a16d74c491ee2f0453b31a3ea4bf15b9ab62289)] **interfaces:** `ImportStatement`
1008
+ - [[`0dc6d7a`](https://github.com/flex-development/mlly/commit/0dc6d7a8cb6a4c00f20621a3232cd0b37476025b)] **interfaces:** `RequireStatement`
1009
+ - [[`ec25911`](https://github.com/flex-development/mlly/commit/ec25911670d0d204d196eb0039a95948ef7174c1)] **interfaces:** `Statement`
1010
+ - [[`78816b7`](https://github.com/flex-development/mlly/commit/78816b748cde2eec6bbfc821370be46008e46a21)] **interfaces:** `StaticImport`
1011
+ - [[`08c4b84`](https://github.com/flex-development/mlly/commit/08c4b8492f7640f74dc676c073a7075115846698)] **lib:** `getCompilerOptions`
1012
+ - [[`b0a618b`](https://github.com/flex-development/mlly/commit/b0a618bf910b5a135a0f44df06dffcc0b6747774)] **lib:** `isBuiltin`
1013
+ - [[`57647dd`](https://github.com/flex-development/mlly/commit/57647dd958bc29ff578c1661c3977021034ea5aa)] **lib:** `toDataURL`
1014
+ - [[`bcd1de7`](https://github.com/flex-development/mlly/commit/bcd1de782395a784e0536f7184072acdaef7f33e)] **resolve:** [`resolveModule`] `[@types](https://github.com/types)` detection
1015
+ - [[`4014515`](https://github.com/flex-development/mlly/commit/4014515682448d909fff777d41ed114f2a5ae072)] **resolve:** `resolveAlias`
1016
+ - [[`25895cf`](https://github.com/flex-development/mlly/commit/25895cf8455d932973593193db50fa28ea882d29)] **resolve:** `resolveAliases`
1017
+ - [[`90ae6b5`](https://github.com/flex-development/mlly/commit/90ae6b55f197d161023119f82d394abb1d2dd5d3)] **resolve:** `resolveModule`
1018
+ - [[`e7394ad`](https://github.com/flex-development/mlly/commit/e7394ad44ce4965ff2d14ee4a7a7d61a23a7be1e)] **resolve:** `resolveModules`
1019
+ - [[`6991fae`](https://github.com/flex-development/mlly/commit/6991fae7631aa0f2ceb0c3c120349b7d5de55e0e)] **specifiers:** [`toBareSpecifier`] `[@types](https://github.com/types)` detection + `types` entry point support
1020
+ - [[`83578ac`](https://github.com/flex-development/mlly/commit/83578ac87e2600ad1cb7751a260667a13aac77f4)] **specifiers:** `toAbsoluteSpecifier`
1021
+ - [[`1407d5e`](https://github.com/flex-development/mlly/commit/1407d5e059442fec95bd017aa4f8853856cd3166)] **specifiers:** `toBareSpecifier`
1022
+ - [[`26b7096`](https://github.com/flex-development/mlly/commit/26b70967a8d2c06b2449b79002d2ebf7a7bbb990)] **specifiers:** `toRelativeSpecifier`
1023
+ - [[`184950f`](https://github.com/flex-development/mlly/commit/184950faba5ee78597b69a2e4b1219338ff56bc7)] **syntax:** `detectSyntax`
1024
+ - [[`7d64e65`](https://github.com/flex-development/mlly/commit/7d64e657002e4fd6ace32775bb2c274574765781)] **syntax:** `hasCJSSyntax`
1025
+ - [[`6888620`](https://github.com/flex-development/mlly/commit/688862056a14d0ddd633d74cc9708b07b6fc2922)] **syntax:** `hasESMSyntax`
1026
+ - [[`05b4d8f`](https://github.com/flex-development/mlly/commit/05b4d8f69302d7d6c991bc4dd12a874b0947ca34)] **syntax:** detect dynamic imports in commonjs
1027
+ - [[`1427995`](https://github.com/flex-development/mlly/commit/1427995fd8999090fd76ae59adb6ecbadf19e263)] **types:** `Declaration`
1028
+ - [[`2ccd483`](https://github.com/flex-development/mlly/commit/2ccd4832690367959ba207df0378409a1d4ee2ab)] **types:** `Ext`
1029
+ - [[`8ff6a94`](https://github.com/flex-development/mlly/commit/8ff6a944207b32f45eddda8a7fd6ac38bf47f634)] **types:** `MIMEType`
1030
+ - [[`6feccb1`](https://github.com/flex-development/mlly/commit/6feccb15fca8affeb51efd6ce78f4ae267056910)] **types:** `SpecifierType`
1031
+ - [[`b0feb6c`](https://github.com/flex-development/mlly/commit/b0feb6cbf79b5a2d5364b728a2f2a45b8c6f5a50)] **types:** `StatementType`
929
1032
 
930
1033
  ### :bug: Fixes
931
1034
 
932
- * **docs:** [site] sitemap urls ([95cfad6](https://github.com/flex-development/mlly/commit/95cfad6e10d047d8d9d3bf8ffa0620f50c47472d))
933
- * **internal:** `STATIC_IMPORT_REGEX` matches `:` in ternary statements ([d2027f8](https://github.com/flex-development/mlly/commit/d2027f83515065a28992d6d91ee3e22b2062c1d1))
934
- * **internal:** `STATIC_IMPORT_REGEX` matches `import` in module specifiers ([a58ec20](https://github.com/flex-development/mlly/commit/a58ec2055750747743bc537f32f33ad7676fdcf4))
935
- * **resolve:** [`resolveModules`] ignore dynamic import statements with dynamic specifiers ([48c20bd](https://github.com/flex-development/mlly/commit/48c20bd4915c16914c80e198a420485b9c8a0582))
936
- * **tests:** [`findDynamicImports`] dynamic specifier test ([ee1b01b](https://github.com/flex-development/mlly/commit/ee1b01b6c727b54fecf64b0142ef6409fe30c941))
937
-
1035
+ - [[`95cfad6`](https://github.com/flex-development/mlly/commit/95cfad6e10d047d8d9d3bf8ffa0620f50c47472d)] **docs:** [site] sitemap urls
1036
+ - [[`d2027f8`](https://github.com/flex-development/mlly/commit/d2027f83515065a28992d6d91ee3e22b2062c1d1)] **internal:** `STATIC_IMPORT_REGEX` matches `:` in ternary statements
1037
+ - [[`a58ec20`](https://github.com/flex-development/mlly/commit/a58ec2055750747743bc537f32f33ad7676fdcf4)] **internal:** `STATIC_IMPORT_REGEX` matches `import` in module specifiers
1038
+ - [[`48c20bd`](https://github.com/flex-development/mlly/commit/48c20bd4915c16914c80e198a420485b9c8a0582)] **resolve:** [`resolveModules`] ignore dynamic import statements with dynamic specifiers
1039
+ - [[`ee1b01b`](https://github.com/flex-development/mlly/commit/ee1b01b6c727b54fecf64b0142ef6409fe30c941)] **tests:** [`findDynamicImports`] dynamic specifier test
938
1040
 
939
1041
  ### :house_with_garden: Housekeeping
940
1042
 
941
- * add empty changelog ([7dfb431](https://github.com/flex-development/mlly/commit/7dfb431e5f7ced07d6a9a5028347016f2dd5b4c9))
942
- * disable eslint rule `unicorn/no-unsafe-regex` ([8d24eda](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c))
943
- * improve vercel integration ([1db75bc](https://github.com/flex-development/mlly/commit/1db75bc420b42652c440ec0a09742dc319c857f5))
944
- * update editorconfig properties ([60256a8](https://github.com/flex-development/mlly/commit/60256a822ddc721781fe6d6579459fcc9e51a2ec))
945
- * **docs:** scrap `vc dev` usage ([5ce8c0f](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c))
946
- * **github:** add commit scope `analyze` ([f3aaee9](https://github.com/flex-development/mlly/commit/f3aaee92ddbac08744d671cb7b905dbb36dba0f6))
947
- * **github:** add commit scope `docs` ([6111249](https://github.com/flex-development/mlly/commit/61112490c88de111f1906a4725d98abaa5c7247a))
948
- * **github:** add commit scope `interfaces` ([15fc6d9](https://github.com/flex-development/mlly/commit/15fc6d97ff06304710b55bf67768cb14e4ba4295))
949
- * **github:** add commit scope `internal` ([63c3470](https://github.com/flex-development/mlly/commit/63c34707f54d5c5dbeea0ef06d3eea3bd927d888))
950
- * **github:** add commit scope `specifiers` ([a7b3eb3](https://github.com/flex-development/mlly/commit/a7b3eb32b6cced07607af5be3f7c5c1240bcf3c2))
951
- * **github:** add commit scope `types` ([da9f588](https://github.com/flex-development/mlly/commit/da9f588beac0d8e00daa60e40739306e424a3fa7))
952
- * **github:** add label `scope:docs` ([6a98495](https://github.com/flex-development/mlly/commit/6a98495c6f1feabe786509c4bfc5aa6cb63573cb))
953
- * **github:** add label `scope:internal` ([daca7af](https://github.com/flex-development/mlly/commit/daca7afda87a3f1dd2d292ed5e06cde42b3d5929))
954
- * **ts:** enforce `import type` for type-only imports ([acd84b8](https://github.com/flex-development/mlly/commit/acd84b8c004fce22da9b2ea16b5281089fb5b15d))
955
-
1043
+ - [[`7dfb431`](https://github.com/flex-development/mlly/commit/7dfb431e5f7ced07d6a9a5028347016f2dd5b4c9)] add empty changelog
1044
+ - [[`8d24eda`](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c)] disable eslint rule `unicorn/no-unsafe-regex`
1045
+ - [[`1db75bc`](https://github.com/flex-development/mlly/commit/1db75bc420b42652c440ec0a09742dc319c857f5)] improve vercel integration
1046
+ - [[`60256a8`](https://github.com/flex-development/mlly/commit/60256a822ddc721781fe6d6579459fcc9e51a2ec)] update editorconfig properties
1047
+ - [[`5ce8c0f`](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c)] **docs:** scrap `vc dev` usage
1048
+ - [[`f3aaee9`](https://github.com/flex-development/mlly/commit/f3aaee92ddbac08744d671cb7b905dbb36dba0f6)] **github:** add commit scope `analyze`
1049
+ - [[`6111249`](https://github.com/flex-development/mlly/commit/61112490c88de111f1906a4725d98abaa5c7247a)] **github:** add commit scope `docs`
1050
+ - [[`15fc6d9`](https://github.com/flex-development/mlly/commit/15fc6d97ff06304710b55bf67768cb14e4ba4295)] **github:** add commit scope `interfaces`
1051
+ - [[`63c3470`](https://github.com/flex-development/mlly/commit/63c34707f54d5c5dbeea0ef06d3eea3bd927d888)] **github:** add commit scope `internal`
1052
+ - [[`a7b3eb3`](https://github.com/flex-development/mlly/commit/a7b3eb32b6cced07607af5be3f7c5c1240bcf3c2)] **github:** add commit scope `specifiers`
1053
+ - [[`da9f588`](https://github.com/flex-development/mlly/commit/da9f588beac0d8e00daa60e40739306e424a3fa7)] **github:** add commit scope `types`
1054
+ - [[`6a98495`](https://github.com/flex-development/mlly/commit/6a98495c6f1feabe786509c4bfc5aa6cb63573cb)] **github:** add label `scope:docs`
1055
+ - [[`daca7af`](https://github.com/flex-development/mlly/commit/daca7afda87a3f1dd2d292ed5e06cde42b3d5929)] **github:** add label `scope:internal`
1056
+ - [[`acd84b8`](https://github.com/flex-development/mlly/commit/acd84b8c004fce22da9b2ea16b5281089fb5b15d)] **ts:** enforce `import type` for type-only imports
956
1057
 
957
1058
  ### :fire: Performance Improvements
958
1059
 
959
- * **docs:** [site] improve speed of first search query ([0ad65db](https://github.com/flex-development/mlly/commit/0ad65db1a6f731f7452d40375359f7584266a5d1))
960
- * **docs:** [site] use exact urls to increase speed ([55c1267](https://github.com/flex-development/mlly/commit/55c1267864fe9540c38cd8e5bc970a855cd497bf))
1060
+ - [[`0ad65db`](https://github.com/flex-development/mlly/commit/0ad65db1a6f731f7452d40375359f7584266a5d1)] **docs:** [site] improve speed of first search query
1061
+ - [[`55c1267`](https://github.com/flex-development/mlly/commit/55c1267864fe9540c38cd8e5bc970a855cd497bf)] **docs:** [site] use exact urls to increase speed
961
1062
 
1063
+ ### :mechanical_arm: Refactors
962
1064
 
963
- ### :zap: Refactors
1065
+ - [[`f66861c`](https://github.com/flex-development/mlly/commit/f66861c9dca4e2f17403d8bc5684c2f120d4ebaa)] **docs:** [site] comments compilation
1066
+ - [[`602d11a`](https://github.com/flex-development/mlly/commit/602d11a71c6ee288e7f73454a49cfdaaa5e71cc5)] **interfaces:** `AliasResolverOptions` -> `ResolveAliasOptions`
1067
+ - [[`7a486c7`](https://github.com/flex-development/mlly/commit/7a486c7ed3c84f39b0b4b7143f92729ce7912d81)] **internal:** add internals
1068
+ - [[`7c5656d`](https://github.com/flex-development/mlly/commit/7c5656d70bd67c18a9c126abb6e84ff838552ad8)] **lib:** move `getCompilerOptions` to `internal`
1069
+ - [[`c868cec`](https://github.com/flex-development/mlly/commit/c868cec9b5fce91014b1666b3f9aceef60acf079)] **lib:** replace `isBuiltin` with `@flex-development/is-builtin`
1070
+ - [[`190fb52`](https://github.com/flex-development/mlly/commit/190fb5260adb4559beaf0f3666c68b1cc1a16094)] **resolve:** [`resolveAliases`] signature
1071
+ - [[`6df4a4b`](https://github.com/flex-development/mlly/commit/6df4a4bb3836adef0b6f15884575edb6ce78c2a0)] **resolve:** [options] allow readonly arrays
1072
+ - [[`4615851`](https://github.com/flex-development/mlly/commit/46158510fdd0e3d8e0e60757290a655606ad836e)] **resolve:** [options] pass original module specifier to `ext`
1073
+ - [[`0266ca9`](https://github.com/flex-development/mlly/commit/0266ca9a5593d0c66e950ba1fe2c8f6df8422ff9)] **resolve:** sort `RESOLVE_EXTENSIONS` according to priority
1074
+ - [[`36c4b74`](https://github.com/flex-development/mlly/commit/36c4b7475c9bb6c924f5e75c8d6d215a8d23e79c)] **specifiers:** [`toBareSpecifier`] improve `exports` path search
964
1075
 
965
- * **docs:** [site] comments compilation ([f66861c](https://github.com/flex-development/mlly/commit/f66861c9dca4e2f17403d8bc5684c2f120d4ebaa))
966
- * **interfaces:** `AliasResolverOptions` -> `ResolveAliasOptions` ([602d11a](https://github.com/flex-development/mlly/commit/602d11a71c6ee288e7f73454a49cfdaaa5e71cc5))
967
- * **internal:** add internals ([7a486c7](https://github.com/flex-development/mlly/commit/7a486c7ed3c84f39b0b4b7143f92729ce7912d81))
968
- * **lib:** move `getCompilerOptions` to `internal` ([7c5656d](https://github.com/flex-development/mlly/commit/7c5656d70bd67c18a9c126abb6e84ff838552ad8))
969
- * **lib:** replace `isBuiltin` with `@flex-development/is-builtin` ([c868cec](https://github.com/flex-development/mlly/commit/c868cec9b5fce91014b1666b3f9aceef60acf079))
970
- * **resolve:** [`resolveAliases`] signature ([190fb52](https://github.com/flex-development/mlly/commit/190fb5260adb4559beaf0f3666c68b1cc1a16094))
971
- * **resolve:** [options] allow readonly arrays ([6df4a4b](https://github.com/flex-development/mlly/commit/6df4a4bb3836adef0b6f15884575edb6ce78c2a0))
972
- * **resolve:** [options] pass original module specifier to `ext` ([4615851](https://github.com/flex-development/mlly/commit/46158510fdd0e3d8e0e60757290a655606ad836e))
973
- * **resolve:** sort `RESOLVE_EXTENSIONS` according to priority ([0266ca9](https://github.com/flex-development/mlly/commit/0266ca9a5593d0c66e950ba1fe2c8f6df8422ff9))
974
- * **specifiers:** [`toBareSpecifier`] improve `exports` path search ([36c4b74](https://github.com/flex-development/mlly/commit/36c4b7475c9bb6c924f5e75c8d6d215a8d23e79c))