@flex-development/mlly 1.0.0-alpha.8 → 1.0.0-beta.1

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 (332) hide show
  1. package/CHANGELOG.md +1128 -355
  2. package/README.md +1540 -12
  3. package/dist/index.d.mts +3 -4
  4. package/dist/index.mjs +5 -5
  5. package/dist/interfaces/aliases.d.mts +21 -0
  6. package/dist/interfaces/condition-map.d.mts +24 -0
  7. package/dist/interfaces/file-system.d.mts +29 -0
  8. package/dist/interfaces/get-source-context.d.mts +44 -0
  9. package/dist/interfaces/get-source-options.d.mts +48 -0
  10. package/dist/interfaces/index.d.mts +18 -21
  11. package/dist/interfaces/is-directory.d.mts +17 -0
  12. package/dist/interfaces/is-file.d.mts +17 -0
  13. package/dist/interfaces/main-field-map.d.mts +22 -0
  14. package/dist/interfaces/module-format-map.d.mts +26 -0
  15. package/dist/interfaces/pattern-key-comparison-map.d.mts +31 -0
  16. package/dist/interfaces/protocol-map.d.mts +44 -0
  17. package/dist/interfaces/read-file.d.mts +24 -0
  18. package/dist/interfaces/realpath.d.mts +26 -0
  19. package/dist/interfaces/resolve-alias-options.d.mts +43 -0
  20. package/dist/interfaces/resolve-module-options.d.mts +79 -0
  21. package/dist/interfaces/stat.d.mts +24 -0
  22. package/dist/interfaces/stats.d.mts +23 -0
  23. package/dist/internal/chain-or-call.mjs +34 -0
  24. package/dist/internal/chars.mjs +17 -0
  25. package/dist/internal/check-invalid-segments.mjs +49 -0
  26. package/dist/internal/constant.mjs +23 -0
  27. package/dist/internal/fs.browser.mjs +42 -0
  28. package/dist/internal/fs.node.mjs +16 -0
  29. package/dist/internal/identity.mjs +23 -0
  30. package/dist/internal/invalid-package-target.mjs +36 -0
  31. package/dist/internal/invalid-subpath.mjs +37 -0
  32. package/dist/internal/is-promise.mjs +26 -0
  33. package/dist/internal/process.browser.mjs +8 -0
  34. package/dist/lib/can-parse-url.d.mts +23 -0
  35. package/dist/lib/can-parse-url.mjs +31 -0
  36. package/dist/lib/cwd.d.mts +14 -0
  37. package/dist/lib/cwd.mjs +17 -0
  38. package/dist/lib/default-conditions.d.mts +15 -0
  39. package/dist/lib/default-conditions.mjs +14 -0
  40. package/dist/lib/default-extensions.d.mts +14 -0
  41. package/dist/lib/default-extensions.mjs +29 -0
  42. package/dist/lib/default-main-fields.d.mts +14 -0
  43. package/dist/lib/default-main-fields.mjs +13 -0
  44. package/dist/lib/extension-format-map.d.mts +16 -0
  45. package/dist/lib/extension-format-map.mjs +31 -0
  46. package/dist/lib/formats.d.mts +21 -0
  47. package/dist/lib/formats.mjs +22 -0
  48. package/dist/lib/get-source.d.mts +46 -0
  49. package/dist/lib/get-source.mjs +156 -0
  50. package/dist/lib/index.d.mts +41 -0
  51. package/dist/lib/index.mjs +41 -0
  52. package/dist/lib/is-absolute-specifier.d.mts +23 -0
  53. package/dist/lib/is-absolute-specifier.mjs +34 -0
  54. package/dist/lib/is-array-index.d.mts +19 -0
  55. package/dist/lib/is-array-index.mjs +28 -0
  56. package/dist/lib/is-bare-specifier.d.mts +23 -0
  57. package/dist/lib/is-bare-specifier.mjs +33 -0
  58. package/dist/lib/is-directory.d.mts +27 -0
  59. package/dist/lib/is-directory.mjs +54 -0
  60. package/dist/lib/is-file.d.mts +27 -0
  61. package/dist/lib/is-file.mjs +54 -0
  62. package/dist/lib/is-imports-subpath.d.mts +26 -0
  63. package/dist/lib/is-imports-subpath.mjs +28 -0
  64. package/dist/lib/is-module-id.d.mts +23 -0
  65. package/dist/lib/is-module-id.mjs +24 -0
  66. package/dist/lib/is-relative-specifier.d.mts +23 -0
  67. package/dist/lib/is-relative-specifier.mjs +36 -0
  68. package/dist/lib/lookup-package-scope.d.mts +49 -0
  69. package/dist/lib/lookup-package-scope.mjs +102 -0
  70. package/dist/lib/pattern-key-compare.d.mts +28 -0
  71. package/dist/lib/pattern-key-compare.mjs +71 -0
  72. package/dist/lib/pattern-match.d.mts +22 -0
  73. package/dist/lib/pattern-match.mjs +85 -0
  74. package/dist/lib/read-package-json.d.mts +63 -0
  75. package/dist/lib/read-package-json.mjs +115 -0
  76. package/dist/lib/resolve-alias.d.mts +21 -0
  77. package/dist/lib/resolve-alias.mjs +102 -0
  78. package/dist/lib/resolve-module.d.mts +43 -0
  79. package/dist/lib/resolve-module.mjs +186 -0
  80. package/dist/lib/resolver.d.mts +346 -0
  81. package/dist/lib/resolver.mjs +1015 -0
  82. package/dist/lib/root.d.mts +11 -0
  83. package/dist/lib/root.mjs +12 -0
  84. package/dist/lib/to-relative-specifier.d.mts +27 -0
  85. package/dist/lib/to-relative-specifier.mjs +63 -0
  86. package/dist/lib/to-url.d.mts +26 -0
  87. package/dist/lib/to-url.mjs +34 -0
  88. package/dist/types/awaitable.d.mts +12 -0
  89. package/dist/types/change-ext-fn.d.mts +29 -0
  90. package/dist/types/condition.d.mts +13 -0
  91. package/dist/types/dot.d.mts +9 -0
  92. package/dist/types/empty-array.d.mts +9 -0
  93. package/dist/types/empty-object.d.mts +19 -0
  94. package/dist/types/empty-string.d.mts +9 -0
  95. package/dist/types/ext.d.mts +12 -0
  96. package/dist/types/get-source-handler.d.mts +22 -0
  97. package/dist/types/get-source-handlers.d.mts +15 -0
  98. package/dist/types/index.d.mts +19 -10
  99. package/dist/types/list.d.mts +12 -0
  100. package/dist/types/main-field.d.mts +13 -0
  101. package/dist/types/module-format.d.mts +13 -0
  102. package/dist/types/module-id.d.mts +3 -4
  103. package/dist/types/numeric.d.mts +9 -0
  104. package/dist/types/pattern-key-comparison.d.mts +14 -0
  105. package/dist/types/pattern-match.d.mts +10 -0
  106. package/dist/types/protocol.d.mts +6 -7
  107. package/package.json +151 -154
  108. package/changelog.config.ts +0 -404
  109. package/dist/enums/assert-type.d.mts +0 -21
  110. package/dist/enums/assert-type.mjs +0 -10
  111. package/dist/enums/assert-type.mjs.map +0 -6
  112. package/dist/enums/format.d.mts +0 -17
  113. package/dist/enums/format.mjs +0 -13
  114. package/dist/enums/format.mjs.map +0 -6
  115. package/dist/enums/index.d.mts +0 -10
  116. package/dist/enums/index.mjs +0 -15
  117. package/dist/enums/index.mjs.map +0 -6
  118. package/dist/enums/kind-specifier-syntax.d.mts +0 -14
  119. package/dist/enums/kind-specifier-syntax.mjs +0 -10
  120. package/dist/enums/kind-specifier-syntax.mjs.map +0 -6
  121. package/dist/enums/kind-specifier.d.mts +0 -17
  122. package/dist/enums/kind-specifier.mjs +0 -11
  123. package/dist/enums/kind-specifier.mjs.map +0 -6
  124. package/dist/enums/kind-statement-syntax.d.mts +0 -22
  125. package/dist/enums/kind-statement-syntax.mjs +0 -18
  126. package/dist/enums/kind-statement-syntax.mjs.map +0 -6
  127. package/dist/enums/kind-statement.d.mts +0 -15
  128. package/dist/enums/kind-statement.mjs +0 -11
  129. package/dist/enums/kind-statement.mjs.map +0 -6
  130. package/dist/index.mjs.map +0 -6
  131. package/dist/interfaces/import-assertions.d.mts +0 -20
  132. package/dist/interfaces/import-dynamic.d.mts +0 -43
  133. package/dist/interfaces/import-static.d.mts +0 -37
  134. package/dist/interfaces/index.mjs +0 -1
  135. package/dist/interfaces/index.mjs.map +0 -6
  136. package/dist/interfaces/options-fill-module.d.mts +0 -23
  137. package/dist/interfaces/options-find-subpath.d.mts +0 -49
  138. package/dist/interfaces/options-get-format.d.mts +0 -83
  139. package/dist/interfaces/options-get-source.d.mts +0 -63
  140. package/dist/interfaces/options-parse-module-id.d.mts +0 -33
  141. package/dist/interfaces/options-parse-subpath.d.mts +0 -31
  142. package/dist/interfaces/options-resolve-alias.d.mts +0 -53
  143. package/dist/interfaces/options-resolve-module.d.mts +0 -64
  144. package/dist/interfaces/options-resolve.d.mts +0 -15
  145. package/dist/interfaces/package-scope.d.mts +0 -25
  146. package/dist/interfaces/parsed-data-url.d.mts +0 -56
  147. package/dist/interfaces/parsed-module-id.d.mts +0 -80
  148. package/dist/interfaces/parsed-subpath.d.mts +0 -40
  149. package/dist/interfaces/statement-export.d.mts +0 -44
  150. package/dist/interfaces/statement-import.d.mts +0 -38
  151. package/dist/interfaces/statement-require.d.mts +0 -38
  152. package/dist/interfaces/statement.d.mts +0 -49
  153. package/dist/internal/escape-reg-exp.d.mts +0 -16
  154. package/dist/internal/escape-reg-exp.mjs +0 -10
  155. package/dist/internal/escape-reg-exp.mjs.map +0 -6
  156. package/dist/internal/format-type-map.d.mts +0 -17
  157. package/dist/internal/format-type-map.mjs +0 -13
  158. package/dist/internal/format-type-map.mjs.map +0 -6
  159. package/dist/internal/get-specifier-kind.d.mts +0 -17
  160. package/dist/internal/get-specifier-kind.mjs +0 -14
  161. package/dist/internal/get-specifier-kind.mjs.map +0 -6
  162. package/dist/internal/get-subpaths.d.mts +0 -25
  163. package/dist/internal/get-subpaths.mjs +0 -10
  164. package/dist/internal/get-subpaths.mjs.map +0 -6
  165. package/dist/internal/is-array-index.d.mts +0 -15
  166. package/dist/internal/is-array-index.mjs +0 -9
  167. package/dist/internal/is-array-index.mjs.map +0 -6
  168. package/dist/internal/is-directory.d.mts +0 -13
  169. package/dist/internal/is-directory.mjs +0 -16
  170. package/dist/internal/is-directory.mjs.map +0 -6
  171. package/dist/internal/is-file.d.mts +0 -13
  172. package/dist/internal/is-file.mjs +0 -16
  173. package/dist/internal/is-file.mjs.map +0 -6
  174. package/dist/internal/is-function.d.mts +0 -12
  175. package/dist/internal/is-function.mjs +0 -8
  176. package/dist/internal/is-function.mjs.map +0 -6
  177. package/dist/internal/regex-encoded-sep.d.mts +0 -13
  178. package/dist/internal/regex-encoded-sep.mjs +0 -6
  179. package/dist/internal/regex-encoded-sep.mjs.map +0 -6
  180. package/dist/internal/regex-internal-specifier.d.mts +0 -14
  181. package/dist/internal/regex-internal-specifier.mjs +0 -6
  182. package/dist/internal/regex-internal-specifier.mjs.map +0 -6
  183. package/dist/internal/regex-package-name.d.mts +0 -13
  184. package/dist/internal/regex-package-name.mjs +0 -6
  185. package/dist/internal/regex-package-name.mjs.map +0 -6
  186. package/dist/internal/regex-package-path.d.mts +0 -15
  187. package/dist/internal/regex-package-path.mjs +0 -6
  188. package/dist/internal/regex-package-path.mjs.map +0 -6
  189. package/dist/internal/resolver.d.mts +0 -130
  190. package/dist/internal/resolver.mjs +0 -486
  191. package/dist/internal/resolver.mjs.map +0 -6
  192. package/dist/internal/validate-boolean.d.mts +0 -20
  193. package/dist/internal/validate-boolean.mjs +0 -11
  194. package/dist/internal/validate-boolean.mjs.map +0 -6
  195. package/dist/internal/validate-object.d.mts +0 -23
  196. package/dist/internal/validate-object.mjs +0 -11
  197. package/dist/internal/validate-object.mjs.map +0 -6
  198. package/dist/internal/validate-set.d.mts +0 -23
  199. package/dist/internal/validate-set.mjs +0 -11
  200. package/dist/internal/validate-set.mjs.map +0 -6
  201. package/dist/internal/validate-string.d.mts +0 -20
  202. package/dist/internal/validate-string.mjs +0 -11
  203. package/dist/internal/validate-string.mjs.map +0 -6
  204. package/dist/internal/validate-url-string.d.mts +0 -22
  205. package/dist/internal/validate-url-string.mjs +0 -12
  206. package/dist/internal/validate-url-string.mjs.map +0 -6
  207. package/dist/types/declaration.d.mts +0 -9
  208. package/dist/types/fn-change-ext.d.mts +0 -28
  209. package/dist/types/index.mjs +0 -1
  210. package/dist/types/index.mjs.map +0 -6
  211. package/dist/types/mime-type.d.mts +0 -13
  212. package/dist/types/module-specifier-type.d.mts +0 -11
  213. package/dist/types/syntax-kind-export.d.mts +0 -12
  214. package/dist/types/syntax-kind-import.d.mts +0 -12
  215. package/dist/types/syntax-kind-require.d.mts +0 -12
  216. package/dist/utils/compare-subpaths.d.mts +0 -25
  217. package/dist/utils/compare-subpaths.mjs +0 -24
  218. package/dist/utils/compare-subpaths.mjs.map +0 -6
  219. package/dist/utils/conditions.d.mts +0 -13
  220. package/dist/utils/conditions.mjs +0 -6
  221. package/dist/utils/conditions.mjs.map +0 -6
  222. package/dist/utils/detect-syntax.d.mts +0 -21
  223. package/dist/utils/detect-syntax.mjs +0 -12
  224. package/dist/utils/detect-syntax.mjs.map +0 -6
  225. package/dist/utils/extension-format-map.d.mts +0 -16
  226. package/dist/utils/extension-format-map.mjs +0 -22
  227. package/dist/utils/extension-format-map.mjs.map +0 -6
  228. package/dist/utils/extract-statements.d.mts +0 -21
  229. package/dist/utils/extract-statements.mjs +0 -21
  230. package/dist/utils/extract-statements.mjs.map +0 -6
  231. package/dist/utils/fill-modules.d.mts +0 -23
  232. package/dist/utils/fill-modules.mjs +0 -62
  233. package/dist/utils/fill-modules.mjs.map +0 -6
  234. package/dist/utils/find-dynamic-imports.d.mts +0 -18
  235. package/dist/utils/find-dynamic-imports.mjs +0 -39
  236. package/dist/utils/find-dynamic-imports.mjs.map +0 -6
  237. package/dist/utils/find-exports.d.mts +0 -21
  238. package/dist/utils/find-exports.mjs +0 -95
  239. package/dist/utils/find-exports.mjs.map +0 -6
  240. package/dist/utils/find-requires.d.mts +0 -18
  241. package/dist/utils/find-requires.mjs +0 -32
  242. package/dist/utils/find-requires.mjs.map +0 -6
  243. package/dist/utils/find-static-imports.d.mts +0 -18
  244. package/dist/utils/find-static-imports.mjs +0 -34
  245. package/dist/utils/find-static-imports.mjs.map +0 -6
  246. package/dist/utils/find-subpath.d.mts +0 -30
  247. package/dist/utils/find-subpath.mjs +0 -106
  248. package/dist/utils/find-subpath.mjs.map +0 -6
  249. package/dist/utils/get-format.d.mts +0 -24
  250. package/dist/utils/get-format.mjs +0 -111
  251. package/dist/utils/get-format.mjs.map +0 -6
  252. package/dist/utils/get-source.d.mts +0 -22
  253. package/dist/utils/get-source.mjs +0 -63
  254. package/dist/utils/get-source.mjs.map +0 -6
  255. package/dist/utils/has-cjs-syntax.d.mts +0 -25
  256. package/dist/utils/has-cjs-syntax.mjs +0 -11
  257. package/dist/utils/has-cjs-syntax.mjs.map +0 -6
  258. package/dist/utils/has-esm-syntax.d.mts +0 -21
  259. package/dist/utils/has-esm-syntax.mjs +0 -11
  260. package/dist/utils/has-esm-syntax.mjs.map +0 -6
  261. package/dist/utils/index.d.mts +0 -42
  262. package/dist/utils/index.mjs +0 -79
  263. package/dist/utils/index.mjs.map +0 -6
  264. package/dist/utils/is-absolute-specifier.d.mts +0 -19
  265. package/dist/utils/is-absolute-specifier.mjs +0 -25
  266. package/dist/utils/is-absolute-specifier.mjs.map +0 -6
  267. package/dist/utils/is-bare-specifier.d.mts +0 -19
  268. package/dist/utils/is-bare-specifier.mjs +0 -10
  269. package/dist/utils/is-bare-specifier.mjs.map +0 -6
  270. package/dist/utils/is-exports-sugar.d.mts +0 -25
  271. package/dist/utils/is-exports-sugar.mjs +0 -26
  272. package/dist/utils/is-exports-sugar.mjs.map +0 -6
  273. package/dist/utils/is-relative-specifier.d.mts +0 -20
  274. package/dist/utils/is-relative-specifier.mjs +0 -11
  275. package/dist/utils/is-relative-specifier.mjs.map +0 -6
  276. package/dist/utils/lookup-package-scope.d.mts +0 -24
  277. package/dist/utils/lookup-package-scope.mjs +0 -34
  278. package/dist/utils/lookup-package-scope.mjs.map +0 -6
  279. package/dist/utils/parse-data-url.d.mts +0 -25
  280. package/dist/utils/parse-data-url.mjs +0 -25
  281. package/dist/utils/parse-data-url.mjs.map +0 -6
  282. package/dist/utils/parse-module-id.d.mts +0 -22
  283. package/dist/utils/parse-module-id.mjs +0 -122
  284. package/dist/utils/parse-module-id.mjs.map +0 -6
  285. package/dist/utils/parse-subpath.d.mts +0 -35
  286. package/dist/utils/parse-subpath.mjs +0 -54
  287. package/dist/utils/parse-subpath.mjs.map +0 -6
  288. package/dist/utils/pattern-character.d.mts +0 -11
  289. package/dist/utils/pattern-character.mjs +0 -6
  290. package/dist/utils/pattern-character.mjs.map +0 -6
  291. package/dist/utils/read-package-json.d.mts +0 -26
  292. package/dist/utils/read-package-json.mjs +0 -43
  293. package/dist/utils/read-package-json.mjs.map +0 -6
  294. package/dist/utils/resolve-alias.d.mts +0 -20
  295. package/dist/utils/resolve-alias.mjs +0 -106
  296. package/dist/utils/resolve-alias.mjs.map +0 -6
  297. package/dist/utils/resolve-aliases.d.mts +0 -19
  298. package/dist/utils/resolve-aliases.mjs +0 -28
  299. package/dist/utils/resolve-aliases.mjs.map +0 -6
  300. package/dist/utils/resolve-extensions.d.mts +0 -14
  301. package/dist/utils/resolve-extensions.mjs +0 -22
  302. package/dist/utils/resolve-extensions.mjs.map +0 -6
  303. package/dist/utils/resolve-module.d.mts +0 -39
  304. package/dist/utils/resolve-module.mjs +0 -64
  305. package/dist/utils/resolve-module.mjs.map +0 -6
  306. package/dist/utils/resolve-modules.d.mts +0 -25
  307. package/dist/utils/resolve-modules.mjs +0 -26
  308. package/dist/utils/resolve-modules.mjs.map +0 -6
  309. package/dist/utils/to-absolute-specifier.d.mts +0 -22
  310. package/dist/utils/to-absolute-specifier.mjs +0 -8
  311. package/dist/utils/to-absolute-specifier.mjs.map +0 -6
  312. package/dist/utils/to-bare-specifier.d.mts +0 -42
  313. package/dist/utils/to-bare-specifier.mjs +0 -90
  314. package/dist/utils/to-bare-specifier.mjs.map +0 -6
  315. package/dist/utils/to-data-url.d.mts +0 -30
  316. package/dist/utils/to-data-url.mjs +0 -11
  317. package/dist/utils/to-data-url.mjs.map +0 -6
  318. package/dist/utils/to-node-url.d.mts +0 -19
  319. package/dist/utils/to-node-url.mjs +0 -10
  320. package/dist/utils/to-node-url.mjs.map +0 -6
  321. package/dist/utils/to-relative-specifier.d.mts +0 -22
  322. package/dist/utils/to-relative-specifier.mjs +0 -21
  323. package/dist/utils/to-relative-specifier.mjs.map +0 -6
  324. package/dist/utils/to-url.d.mts +0 -22
  325. package/dist/utils/to-url.mjs +0 -12
  326. package/dist/utils/to-url.mjs.map +0 -6
  327. package/dist/utils/validate-assertions.d.mts +0 -23
  328. package/dist/utils/validate-assertions.mjs +0 -52
  329. package/dist/utils/validate-assertions.mjs.map +0 -6
  330. package/dist/utils/validate-exports.d.mts +0 -24
  331. package/dist/utils/validate-exports.mjs +0 -72
  332. package/dist/utils/validate-exports.mjs.map +0 -6
package/CHANGELOG.md CHANGED
@@ -1,482 +1,1255 @@
1
- ## [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)
1
+ ## [1.0.0-beta.1](https://github.com/flex-development/mlly/compare/1.0.0-alpha.20...1.0.0-beta.1) (2026-02-02)
2
+
3
+ ### ⚠ BREAKING CHANGES
2
4
 
5
+ - awaitable api
3
6
 
4
7
  ### :package: Build
5
8
 
6
- * **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)
7
- * **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))
8
- * **deps-dev:** cleanup changelog deps ([e899dd5](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8))
9
- * **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0 ([c39f63c](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd))
10
- * **nvm:** bump node from 16 to 19 ([4442dbb](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308))
11
- * **ts:** update file exclusion list ([f0a512f](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc))
12
-
9
+ - [[`75b7737`](https://github.com/flex-development/mlly/commit/75b7737d8ae6e8bf9d10278bed4a7b9073054b3c)] **deps-dev:** Bump @arethetypeswrong/cli from 0.17.2 to 0.17.3 ([#776](https://github.com/flex-development/mlly/issues/776))
10
+ - [[`8e7bb12`](https://github.com/flex-development/mlly/commit/8e7bb129ea173af4c85fce566982576b2731f3ff)] **deps-dev:** Bump @commitlint/cli from 19.6.1 to 19.7.1 in the commitlint group ([#799](https://github.com/flex-development/mlly/issues/799))
11
+ - [[`f855c8e`](https://github.com/flex-development/mlly/commit/f855c8e3e96bb65ed5c66f23d5f39e1bd8188267)] **deps-dev:** Bump @faker-js/faker from 9.3.0 to 9.4.0 ([#772](https://github.com/flex-development/mlly/issues/772))
12
+ - [[`9183195`](https://github.com/flex-development/mlly/commit/9183195a4aaf9e0b6616d2a065591f7cb6f31f0e)] **deps-dev:** Bump @faker-js/faker from 9.4.0 to 9.5.0 ([#813](https://github.com/flex-development/mlly/issues/813))
13
+ - [[`881cb5e`](https://github.com/flex-development/mlly/commit/881cb5e6a1a03b2042071547eb29af966b703d02)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.12.1 to 2.13.0 ([#777](https://github.com/flex-development/mlly/issues/777))
14
+ - [[`e25553e`](https://github.com/flex-development/mlly/commit/e25553e8c2fc616e7233c39c523909e7e653e9f4)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.13.0 to 3.0.1 ([#797](https://github.com/flex-development/mlly/issues/797))
15
+ - [[`0690b41`](https://github.com/flex-development/mlly/commit/0690b417155299d4ff6f8847c89fbf3c0bca20c4)] **deps-dev:** Bump @stylistic/eslint-plugin from 3.0.1 to 3.1.0 ([#811](https://github.com/flex-development/mlly/issues/811))
16
+ - [[`1d3f0ce`](https://github.com/flex-development/mlly/commit/1d3f0ced8319e79ee15b6b55915860547602fdd7)] **deps-dev:** Bump @stylistic/eslint-plugin from 3.1.0 to 4.0.1 ([#822](https://github.com/flex-development/mlly/issues/822))
17
+ - [[`c08482c`](https://github.com/flex-development/mlly/commit/c08482c7dbd78f696a6e34c97cfaf23278e9d7fd)] **deps-dev:** Bump @stylistic/eslint-plugin from 4.0.1 to 4.4.0 ([#871](https://github.com/flex-development/mlly/issues/871))
18
+ - [[`8fd6430`](https://github.com/flex-development/mlly/commit/8fd6430e0eccf04c2338178f223da959b6107683)] **deps-dev:** Bump consola from 3.3.3 to 3.4.0 ([#771](https://github.com/flex-development/mlly/issues/771))
19
+ - [[`006bd7e`](https://github.com/flex-development/mlly/commit/006bd7e8c2cc977b41133d1be7093daa1937590f)] **deps-dev:** Bump cspell from 8.17.1 to 8.17.2 ([#770](https://github.com/flex-development/mlly/issues/770))
20
+ - [[`cdc405f`](https://github.com/flex-development/mlly/commit/cdc405fb962a7651f3756a1929b97d81398997cd)] **deps-dev:** Bump cspell from 8.17.2 to 8.17.3 ([#796](https://github.com/flex-development/mlly/issues/796))
21
+ - [[`bddf3d5`](https://github.com/flex-development/mlly/commit/bddf3d50ff6b1796232145c0ef81fd0b47ca2c44)] **deps-dev:** Bump cspell from 9.6.0 to 9.6.2 ([#950](https://github.com/flex-development/mlly/issues/950))
22
+ - [[`2f0362a`](https://github.com/flex-development/mlly/commit/2f0362a92e25548c2e09d53d60c4b2ecd1dd538f)] **deps-dev:** Bump dprint from 0.48.0 to 0.49.0 ([#803](https://github.com/flex-development/mlly/issues/803))
23
+ - [[`6d63c5c`](https://github.com/flex-development/mlly/commit/6d63c5c58c0611b870c0a14852095e48bc0f5fad)] **deps-dev:** Bump dprint from 0.49.0 to 0.50.0 ([#869](https://github.com/flex-development/mlly/issues/869))
24
+ - [[`6ee7e5a`](https://github.com/flex-development/mlly/commit/6ee7e5a240171ee33f96d0d4edc4af9b39554d6f)] **deps-dev:** Bump editorconfig from 2.0.0 to 2.0.1 ([#805](https://github.com/flex-development/mlly/issues/805))
25
+ - [[`743eb26`](https://github.com/flex-development/mlly/commit/743eb26db6066afaef036cabfc9bdf049aef2799)] **deps-dev:** Bump esbuild from 0.24.2 to 0.25.0 ([#809](https://github.com/flex-development/mlly/issues/809))
26
+ - [[`721d7eb`](https://github.com/flex-development/mlly/commit/721d7eb023a24213dbec2384fa9ce61616d55afe)] **deps-dev:** Bump eslint from 9.20.0 to 9.20.1 in the eslint group ([#810](https://github.com/flex-development/mlly/issues/810))
27
+ - [[`3578619`](https://github.com/flex-development/mlly/commit/35786190d3181cdaadee239ebff41b5db96f8c4e)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.6.1 to 50.6.2 ([#779](https://github.com/flex-development/mlly/issues/779))
28
+ - [[`90aec16`](https://github.com/flex-development/mlly/commit/90aec161fd956d67fdeab614b37382e4c575570f)] **deps-dev:** Bump eslint-plugin-jsdoc from 50.6.2 to 50.6.3 ([#795](https://github.com/flex-development/mlly/issues/795))
29
+ - [[`4cf5f44`](https://github.com/flex-development/mlly/commit/4cf5f44f20de478666c99200eee63ed3e6355550)] **deps-dev:** Bump eslint-plugin-jsonc from 2.18.2 to 2.19.1 ([#790](https://github.com/flex-development/mlly/issues/790))
30
+ - [[`3fd6b1d`](https://github.com/flex-development/mlly/commit/3fd6b1deddccb78e2e7b5a65971f674fc45bcdc6)] **deps-dev:** Bump eslint-plugin-yml from 1.16.0 to 1.17.0 ([#819](https://github.com/flex-development/mlly/issues/819))
31
+ - [[`2c82719`](https://github.com/flex-development/mlly/commit/2c8271996ddd0a4cc6355191c2b69360145911db)] **deps-dev:** Bump globals from 15.14.0 to 15.15.0 ([#812](https://github.com/flex-development/mlly/issues/812))
32
+ - [[`3232555`](https://github.com/flex-development/mlly/commit/32325555a3fe59ef8e836d8ae1de1823d403b60a)] **deps-dev:** Bump prettier from 3.4.2 to 3.5.1 ([#814](https://github.com/flex-development/mlly/issues/814))
33
+ - [[`15fab62`](https://github.com/flex-development/mlly/commit/15fab62f4a04cd0b40e73ec8e8da10c667260170)] **deps-dev:** Bump remark-directive from 3.0.0 to 3.0.1 in the remark group ([#784](https://github.com/flex-development/mlly/issues/784))
34
+ - [[`c51e3b5`](https://github.com/flex-development/mlly/commit/c51e3b5712676576c8401612a0a212ad97763c77)] **deps-dev:** Bump remark-gfm from 4.0.0 to 4.0.1 in the remark group ([#807](https://github.com/flex-development/mlly/issues/807))
35
+ - [[`b5432bf`](https://github.com/flex-development/mlly/commit/b5432bf8bebb61832fec644b5498cc4fcec89aa8)] **deps-dev:** bump the commitlint group with 2 updates
36
+ - [[`c5284da`](https://github.com/flex-development/mlly/commit/c5284da401804dcc00f573f6daf7af0a814b390b)] **deps-dev:** Bump the commitlint group with 2 updates ([#873](https://github.com/flex-development/mlly/issues/873))
37
+ - [[`d1b7411`](https://github.com/flex-development/mlly/commit/d1b7411e626a7675668c94ed77d1e5a247547e81)] **deps-dev:** Bump the eslint group across 1 directory with 2 updates ([#847](https://github.com/flex-development/mlly/issues/847))
38
+ - [[`16c8261`](https://github.com/flex-development/mlly/commit/16c82615e44ed5cea77af5c5b75168adf47892c4)] **deps-dev:** Bump the eslint group with 2 updates ([#769](https://github.com/flex-development/mlly/issues/769))
39
+ - [[`7662430`](https://github.com/flex-development/mlly/commit/7662430ee44b0278503651d6527d429cd3a23736)] **deps-dev:** Bump the eslint group with 2 updates ([#788](https://github.com/flex-development/mlly/issues/788))
40
+ - [[`82f1941`](https://github.com/flex-development/mlly/commit/82f194195853e5509a034dbd26d52db22cefad7c)] **deps-dev:** Bump the eslint group with 2 updates ([#806](https://github.com/flex-development/mlly/issues/806))
41
+ - [[`ad3d9ca`](https://github.com/flex-development/mlly/commit/ad3d9cae2c82a395254a254d84674cb2aa3cadc7)] **deps-dev:** Bump the remark group with 63 updates ([#791](https://github.com/flex-development/mlly/issues/791))
42
+ - [[`e297d08`](https://github.com/flex-development/mlly/commit/e297d08afa6145d385e71ae07c7645cd39370a0e)] **deps-dev:** Bump the typescript-eslint group across 1 directory with 3 updates ([#773](https://github.com/flex-development/mlly/issues/773))
43
+ - [[`42112d6`](https://github.com/flex-development/mlly/commit/42112d678a7770f69d4a6723833824a61a6bd61b)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#780](https://github.com/flex-development/mlly/issues/780))
44
+ - [[`750045a`](https://github.com/flex-development/mlly/commit/750045ad2a2e07cd891f8e30569ec994cfd5da69)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#792](https://github.com/flex-development/mlly/issues/792))
45
+ - [[`d7fc3d8`](https://github.com/flex-development/mlly/commit/d7fc3d8b83fab69aaba1ff88e0f13cc897ea6258)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#801](https://github.com/flex-development/mlly/issues/801))
46
+ - [[`c7cd495`](https://github.com/flex-development/mlly/commit/c7cd495dd57a8c961652e319d6b64b33bf1b2762)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#808](https://github.com/flex-development/mlly/issues/808))
47
+ - [[`a2e0af7`](https://github.com/flex-development/mlly/commit/a2e0af73f46e45d2af17a1c4c6d536269079b450)] **deps-dev:** Bump the typescript-eslint group with 3 updates ([#815](https://github.com/flex-development/mlly/issues/815))
48
+ - [[`44b3f86`](https://github.com/flex-development/mlly/commit/44b3f8694dfa80f060cce8530375e80fa38081e4)] **deps-dev:** Bump the vitest group with 3 updates ([#949](https://github.com/flex-development/mlly/issues/949))
49
+ - [[`46de617`](https://github.com/flex-development/mlly/commit/46de617fdbf7ea3c7e1576fb5b40f006a7f92604)] **deps-dev:** Bump tinyrainbow from 1.2.0 to 2.0.0 ([#774](https://github.com/flex-development/mlly/issues/774))
50
+ - [[`715ffad`](https://github.com/flex-development/mlly/commit/715ffad9758ec510a776589bd858b1eb16a00c0b)] **deps-dev:** Bump trash-cli from 7.0.0 to 7.2.0 ([#953](https://github.com/flex-development/mlly/issues/953))
51
+ - [[`d65746c`](https://github.com/flex-development/mlly/commit/d65746c64bdbeb7debe48c6865097c4b4cd133b1)] **deps-dev:** Bump vite from 5.4.11 to 5.4.16 ([#846](https://github.com/flex-development/mlly/issues/846))
52
+ - [[`eb7219a`](https://github.com/flex-development/mlly/commit/eb7219a2be03d86899857fa99513d70d635d09c1)] **deps-dev:** Bump vite from 5.4.16 to 5.4.19 ([#887](https://github.com/flex-development/mlly/issues/887))
53
+ - [[`8ff61cf`](https://github.com/flex-development/mlly/commit/8ff61cf266f6d1234af3b891289a8cb545967fa3)] **deps-dev:** Bump vite from 5.4.19 to 5.4.20 ([#911](https://github.com/flex-development/mlly/issues/911))
54
+ - [[`1e8eebe`](https://github.com/flex-development/mlly/commit/1e8eebe66414f5cdd6ed0932cc1ca8faa5e33ac6)] **deps-dev:** Bump vite from 5.4.20 to 5.4.21 ([#924](https://github.com/flex-development/mlly/issues/924))
55
+ - [[`513f155`](https://github.com/flex-development/mlly/commit/513f1552fc864c9faa07895af89e869ac4194e4d)] **deps-dev:** cleanup dependencies
56
+ - [[`b962b1f`](https://github.com/flex-development/mlly/commit/b962b1f13bdbc9d4a36a209e155285a716ba9c0c)] **deps:** Bump js-yaml from 4.1.0 to 4.1.1 ([#921](https://github.com/flex-development/mlly/issues/921))
57
+ - [[`c55b10e`](https://github.com/flex-development/mlly/commit/c55b10eba7b3456571e4354534cb7ddd337c6671)] **deps:** Bump mdast-util-to-hast from 13.2.0 to 13.2.1 ([#926](https://github.com/flex-development/mlly/issues/926))
58
+ - [[`8c1590c`](https://github.com/flex-development/mlly/commit/8c1590cb372f32fff680afeb922adb47a6cf9a6d)] **deps:** Bump validator from 13.11.0 to 13.15.20 ([#917](https://github.com/flex-development/mlly/issues/917))
59
+ - [[`32d884d`](https://github.com/flex-development/mlly/commit/32d884d46000c4c6988ab5a81b271e43caa314b5)] **deps:** Bump validator from 13.15.20 to 13.15.23 ([#927](https://github.com/flex-development/mlly/issues/927))
60
+ - [[`277451c`](https://github.com/flex-development/mlly/commit/277451c65b01c904e048e11a0d3372ec1669f91e)] **pkg:** add `exports["./*"]`
13
61
 
14
62
  ### :robot: Continuous Integration
15
63
 
16
- * **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))
17
- * **workflows:** [`ci`] refactor `metadata` job conditional ([c909436](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c))
64
+ - [[`c22cfa4`](https://github.com/flex-development/mlly/commit/c22cfa4def0708e7929b73cbbd04f5c0a9a4fdd0)] **deps:** Bump actions/cache from 4.2.0 to 4.2.1 ([#818](https://github.com/flex-development/mlly/issues/818))
65
+ - [[`aae38c5`](https://github.com/flex-development/mlly/commit/aae38c529d39b39beb1044d326359306ac8c12a2)] **deps:** Bump actions/cache from 4.2.1 to 4.2.2 ([#827](https://github.com/flex-development/mlly/issues/827))
66
+ - [[`7e4ec69`](https://github.com/flex-development/mlly/commit/7e4ec69ffa5c9c03adddcab64e3b4e68c76bb301)] **deps:** Bump actions/cache from 4.2.2 to 4.2.3 ([#837](https://github.com/flex-development/mlly/issues/837))
67
+ - [[`a1e5462`](https://github.com/flex-development/mlly/commit/a1e546294b45cfc90f8837f45ed514a9d251e27e)] **deps:** Bump actions/cache from 4.2.3 to 4.2.4 ([#886](https://github.com/flex-development/mlly/issues/886))
68
+ - [[`dce3dec`](https://github.com/flex-development/mlly/commit/dce3dec26aba5b26aec19fbba2a87f3bc29eecbc)] **deps:** Bump actions/cache from 4.2.4 to 4.3.0 ([#906](https://github.com/flex-development/mlly/issues/906))
69
+ - [[`9e4a827`](https://github.com/flex-development/mlly/commit/9e4a82703483a5f644b5754c8862a6526d6b859b)] **deps:** bump actions/cache from 4.3.0 to 5.0.0 ([#934](https://github.com/flex-development/mlly/issues/934))
70
+ - [[`dba9cba`](https://github.com/flex-development/mlly/commit/dba9cba416c2a0a3a7d6845e90f2bfbc7ca95f12)] **deps:** bump actions/cache from 5.0.0 to 5.0.1 ([#936](https://github.com/flex-development/mlly/issues/936))
71
+ - [[`4efa876`](https://github.com/flex-development/mlly/commit/4efa87631b2a1cc81ba30a43d93ff117d62a03ec)] **deps:** Bump actions/checkout from 4.2.2 to 5.0.0 ([#890](https://github.com/flex-development/mlly/issues/890))
72
+ - [[`5857eda`](https://github.com/flex-development/mlly/commit/5857eda81d3eab5dd75ce080a1940a4839afdefd)] **deps:** Bump actions/checkout from 5.0.0 to 5.0.1 ([#922](https://github.com/flex-development/mlly/issues/922))
73
+ - [[`4b88fd7`](https://github.com/flex-development/mlly/commit/4b88fd72bd7736fe7176361ab2ac4ca9f12df7af)] **deps:** Bump actions/checkout from 5.0.1 to 6.0.0 ([#923](https://github.com/flex-development/mlly/issues/923))
74
+ - [[`b762c04`](https://github.com/flex-development/mlly/commit/b762c046551312a86803cf3aa6a12fee3b1d6234)] **deps:** Bump actions/checkout from 6.0.0 to 6.0.1 ([#928](https://github.com/flex-development/mlly/issues/928))
75
+ - [[`81929c1`](https://github.com/flex-development/mlly/commit/81929c1b168e7ba15375c31774ff78dff0b08d6a)] **deps:** Bump actions/create-github-app-token from 1.11.1 to 1.11.2 ([#798](https://github.com/flex-development/mlly/issues/798))
76
+ - [[`ebb3051`](https://github.com/flex-development/mlly/commit/ebb30519416da39891d619f47050d67baf4e0dbe)] **deps:** Bump actions/create-github-app-token from 1.11.2 to 1.11.3 ([#802](https://github.com/flex-development/mlly/issues/802))
77
+ - [[`b281b0f`](https://github.com/flex-development/mlly/commit/b281b0fb74ec8e05a8939ec8d1a7d1207aae94bd)] **deps:** Bump actions/create-github-app-token from 1.11.3 to 1.11.5 ([#817](https://github.com/flex-development/mlly/issues/817))
78
+ - [[`921a73a`](https://github.com/flex-development/mlly/commit/921a73a2a194ee03b8cc31390e9913e1a3a68a54)] **deps:** Bump actions/create-github-app-token from 1.11.5 to 1.11.6 ([#830](https://github.com/flex-development/mlly/issues/830))
79
+ - [[`d3db819`](https://github.com/flex-development/mlly/commit/d3db819654f880655938ed19a7114ba1e13a19ac)] **deps:** Bump actions/create-github-app-token from 1.11.6 to 1.11.7 ([#839](https://github.com/flex-development/mlly/issues/839))
80
+ - [[`ef613d8`](https://github.com/flex-development/mlly/commit/ef613d868d1c5ef880cffd1193e22382db90a161)] **deps:** Bump actions/create-github-app-token from 1.11.7 to 1.12.0 ([#843](https://github.com/flex-development/mlly/issues/843))
81
+ - [[`6723bdf`](https://github.com/flex-development/mlly/commit/6723bdf8b05b464287abf7630633e874d6586c0d)] **deps:** Bump actions/create-github-app-token from 1.12.0 to 2.0.0 ([#850](https://github.com/flex-development/mlly/issues/850))
82
+ - [[`256adc3`](https://github.com/flex-development/mlly/commit/256adc3aae07341e96ce61cc1bc15a73ba4cedd6)] **deps:** Bump actions/create-github-app-token from 2.0.0 to 2.0.2 ([#851](https://github.com/flex-development/mlly/issues/851))
83
+ - [[`87ea0e0`](https://github.com/flex-development/mlly/commit/87ea0e0cdb73f61637be960fd09f29828817a1c3)] **deps:** Bump actions/create-github-app-token from 2.0.2 to 2.0.3 ([#863](https://github.com/flex-development/mlly/issues/863))
84
+ - [[`5f55240`](https://github.com/flex-development/mlly/commit/5f552408231f926a149410187148fbe31f2ab743)] **deps:** Bump actions/create-github-app-token from 2.0.3 to 2.0.5 ([#864](https://github.com/flex-development/mlly/issues/864))
85
+ - [[`7a43969`](https://github.com/flex-development/mlly/commit/7a43969d3c72586885672812520c4d5bf5aba727)] **deps:** Bump actions/create-github-app-token from 2.0.5 to 2.0.6 ([#866](https://github.com/flex-development/mlly/issues/866))
86
+ - [[`b15c486`](https://github.com/flex-development/mlly/commit/b15c4869fe4e8edd946a8e9a4f22e2d5555ca959)] **deps:** Bump actions/create-github-app-token from 2.0.6 to 2.1.1 ([#889](https://github.com/flex-development/mlly/issues/889))
87
+ - [[`03c01fc`](https://github.com/flex-development/mlly/commit/03c01fcbedbbb7880b5652216b3248d531c03a3a)] **deps:** Bump actions/create-github-app-token from 2.1.1 to 2.1.4 ([#903](https://github.com/flex-development/mlly/issues/903))
88
+ - [[`4d1eb9a`](https://github.com/flex-development/mlly/commit/4d1eb9a989f7e9352e2dbc0eddd3db79c32a8bec)] **deps:** Bump actions/create-github-app-token from 2.1.4 to 2.2.0 ([#925](https://github.com/flex-development/mlly/issues/925))
89
+ - [[`ec38f31`](https://github.com/flex-development/mlly/commit/ec38f31d5315c842f1ffd87c66a77f3a52ca7162)] **deps:** bump actions/create-github-app-token from 2.2.0 to 2.2.1 ([#930](https://github.com/flex-development/mlly/issues/930))
90
+ - [[`6553527`](https://github.com/flex-development/mlly/commit/6553527d6b8211883e8b067647494f86f61a9e1e)] **deps:** Bump actions/github-script from 7.0.1 to 8.0.0 ([#897](https://github.com/flex-development/mlly/issues/897))
91
+ - [[`c16b9ec`](https://github.com/flex-development/mlly/commit/c16b9ec793171d19ca087602dd25e1cb12e356bc)] **deps:** Bump actions/setup-node from 4.1.0 to 4.2.0 ([#793](https://github.com/flex-development/mlly/issues/793))
92
+ - [[`1cab064`](https://github.com/flex-development/mlly/commit/1cab064e78a848649e3b322a5700f002870cdd89)] **deps:** Bump actions/setup-node from 4.2.0 to 4.3.0 ([#836](https://github.com/flex-development/mlly/issues/836))
93
+ - [[`4f5348e`](https://github.com/flex-development/mlly/commit/4f5348e60e291e89594038f305d973577aeffc02)] **deps:** Bump actions/setup-node from 4.3.0 to 4.4.0 ([#855](https://github.com/flex-development/mlly/issues/855))
94
+ - [[`9d9b7cb`](https://github.com/flex-development/mlly/commit/9d9b7cb6a223ca54e90af64d623d0f68bd22787f)] **deps:** Bump actions/setup-node from 4.4.0 to 5.0.0 ([#898](https://github.com/flex-development/mlly/issues/898))
95
+ - [[`4a28979`](https://github.com/flex-development/mlly/commit/4a289793df02eab917d841511afe339adc1c5a34)] **deps:** Bump actions/setup-node from 5.0.0 to 6.0.0 ([#910](https://github.com/flex-development/mlly/issues/910))
96
+ - [[`5c3bf7b`](https://github.com/flex-development/mlly/commit/5c3bf7b6749877d54c88e32f53987abe827f8cea)] **deps:** bump actions/setup-node from 6.0.0 to 6.1.0 ([#929](https://github.com/flex-development/mlly/issues/929))
97
+ - [[`d09d84e`](https://github.com/flex-development/mlly/commit/d09d84e9c6648f01fd5709ded20847937e8ba90b)] **deps:** Bump actions/upload-artifact from 4.5.0 to 4.6.0 ([#768](https://github.com/flex-development/mlly/issues/768))
98
+ - [[`a0128ff`](https://github.com/flex-development/mlly/commit/a0128ff1146902ac5e8cc866f6716b29e28e0f36)] **deps:** Bump actions/upload-artifact from 4.6.0 to 4.6.1 ([#823](https://github.com/flex-development/mlly/issues/823))
99
+ - [[`fd5694e`](https://github.com/flex-development/mlly/commit/fd5694e8aefefb732a7cbba35de2d55e38021598)] **deps:** Bump actions/upload-artifact from 4.6.1 to 4.6.2 ([#838](https://github.com/flex-development/mlly/issues/838))
100
+ - [[`7cc86ca`](https://github.com/flex-development/mlly/commit/7cc86ca142fdb2567d136d781f444e2229aff790)] **deps:** Bump actions/upload-artifact from 4.6.2 to 5.0.0 ([#915](https://github.com/flex-development/mlly/issues/915))
101
+ - [[`9e01e56`](https://github.com/flex-development/mlly/commit/9e01e569996bd976b367ed834638db49328c1f99)] **deps:** bump actions/upload-artifact from 5.0.0 to 6.0.0 ([#935](https://github.com/flex-development/mlly/issues/935))
102
+ - [[`e636a83`](https://github.com/flex-development/mlly/commit/e636a8332e0e9f30db2b217e8345c6826579b4aa)] **deps:** Bump codecov/codecov-action from 5.1.2 to 5.2.0 ([#785](https://github.com/flex-development/mlly/issues/785))
103
+ - [[`bdd94c0`](https://github.com/flex-development/mlly/commit/bdd94c0e48155b10eeaf73495c0f272d4d01245c)] **deps:** Bump codecov/codecov-action from 5.2.0 to 5.3.0 ([#787](https://github.com/flex-development/mlly/issues/787))
104
+ - [[`0d0e973`](https://github.com/flex-development/mlly/commit/0d0e9739c29438f98162c86949a0c1e9ec8c14a4)] **deps:** Bump codecov/codecov-action from 5.3.0 to 5.3.1 ([#789](https://github.com/flex-development/mlly/issues/789))
105
+ - [[`b571562`](https://github.com/flex-development/mlly/commit/b571562b14e683ee8666777f34ee869b727f7282)] **deps:** Bump codecov/codecov-action from 5.3.1 to 5.4.0 ([#828](https://github.com/flex-development/mlly/issues/828))
106
+ - [[`7fe3d68`](https://github.com/flex-development/mlly/commit/7fe3d681f6ca85f152602beef0f61ec57082460c)] **deps:** Bump codecov/codecov-action from 5.4.0 to 5.4.2 ([#854](https://github.com/flex-development/mlly/issues/854))
107
+ - [[`9e36e06`](https://github.com/flex-development/mlly/commit/9e36e06b263142f1d48bb53d5ca2c14b5f5ce0f9)] **deps:** Bump codecov/codecov-action from 5.4.2 to 5.4.3 ([#868](https://github.com/flex-development/mlly/issues/868))
108
+ - [[`0189125`](https://github.com/flex-development/mlly/commit/01891251340ea7b90822862f03d77d54c48eaff2)] **deps:** Bump codecov/codecov-action from 5.4.3 to 5.5.0 ([#893](https://github.com/flex-development/mlly/issues/893))
109
+ - [[`0436436`](https://github.com/flex-development/mlly/commit/0436436451e71d138de3a35f49cfe88261397c23)] **deps:** Bump codecov/codecov-action from 5.5.0 to 5.5.1 ([#896](https://github.com/flex-development/mlly/issues/896))
110
+ - [[`e99ef78`](https://github.com/flex-development/mlly/commit/e99ef78187953c21e19dc7d46e2ac08e0e30c386)] **deps:** bump codecov/codecov-action from 5.5.1 to 5.5.2 ([#932](https://github.com/flex-development/mlly/issues/932))
111
+ - [[`b2318f7`](https://github.com/flex-development/mlly/commit/b2318f7445f98cfe3bbb1d18b9285a2b0c0ce53d)] **deps:** Bump crazy-max/ghaction-import-gpg from 6.2.0 to 6.3.0 ([#844](https://github.com/flex-development/mlly/issues/844))
112
+ - [[`a5a0687`](https://github.com/flex-development/mlly/commit/a5a068727accf262dad9a88db98aafa272c81a9e)] **deps:** bump dessant/lock-threads from 5.0.1 to 6.0.0 ([#937](https://github.com/flex-development/mlly/issues/937))
113
+ - [[`8bafeff`](https://github.com/flex-development/mlly/commit/8bafeffcde606a033197f4082d51e08aa9085f5b)] **deps:** Bump GitGuardian/ggshield-action from 1.34.0 to 1.35.0 ([#765](https://github.com/flex-development/mlly/issues/765))
114
+ - [[`52b3d5d`](https://github.com/flex-development/mlly/commit/52b3d5d6f3e859dff038f967f45cb7ad774fbedf)] **deps:** Bump GitGuardian/ggshield-action from 1.35.0 to 1.36.0 ([#794](https://github.com/flex-development/mlly/issues/794))
115
+ - [[`136cce9`](https://github.com/flex-development/mlly/commit/136cce950f8fba9fac23a575c720f831e8a5b52b)] **deps:** Bump GitGuardian/ggshield-action from 1.36.0 to 1.37.0 ([#831](https://github.com/flex-development/mlly/issues/831))
116
+ - [[`60c8850`](https://github.com/flex-development/mlly/commit/60c8850bc8c104c01b59c0d0d961f8b451f686d1)] **deps:** Bump GitGuardian/ggshield-action from 1.37.0 to 1.38.0 ([#842](https://github.com/flex-development/mlly/issues/842))
117
+ - [[`cd60d85`](https://github.com/flex-development/mlly/commit/cd60d85c07973234835a35cdd1d973abf96e4be8)] **deps:** Bump GitGuardian/ggshield-action from 1.38.0 to 1.39.0 ([#861](https://github.com/flex-development/mlly/issues/861))
118
+ - [[`2b9f14f`](https://github.com/flex-development/mlly/commit/2b9f14fabcfff95226f4840cc4788362defb7669)] **deps:** Bump GitGuardian/ggshield-action from 1.39.0 to 1.41.0 ([#876](https://github.com/flex-development/mlly/issues/876))
119
+ - [[`b603a65`](https://github.com/flex-development/mlly/commit/b603a65183c328346b0a7aa48bcab673e37932bb)] **deps:** Bump GitGuardian/ggshield-action from 1.41.0 to 1.42.0 ([#884](https://github.com/flex-development/mlly/issues/884))
120
+ - [[`a048d82`](https://github.com/flex-development/mlly/commit/a048d8240df5247aa44f4534ab29ee74243de6a5)] **deps:** Bump GitGuardian/ggshield-action from 1.42.0 to 1.43.0 ([#894](https://github.com/flex-development/mlly/issues/894))
121
+ - [[`9b0cb74`](https://github.com/flex-development/mlly/commit/9b0cb7454a8f12b107e596695d0f0e7acf52ba38)] **deps:** Bump GitGuardian/ggshield-action from 1.43.0 to 1.44.0 ([#918](https://github.com/flex-development/mlly/issues/918))
122
+ - [[`3cb6df3`](https://github.com/flex-development/mlly/commit/3cb6df3358390e3b6256d9ebcfe8cc3c04908925)] **deps:** Bump GitGuardian/ggshield-action from 1.44.0 to 1.45.0 ([#920](https://github.com/flex-development/mlly/issues/920))
123
+ - [[`c2781ce`](https://github.com/flex-development/mlly/commit/c2781ce5836cc2ce29da7a37534e2c643d713f1d)] **deps:** bump GitGuardian/ggshield-action from 1.45.0 to 1.46.0 ([#938](https://github.com/flex-development/mlly/issues/938))
124
+ - [[`d25aa37`](https://github.com/flex-development/mlly/commit/d25aa372d1f2e958ed1a68cdb17df7b5187a120f)] **deps:** bump kaisugi/action-regex-match from 1.0.1 to 1.0.2 ([#931](https://github.com/flex-development/mlly/issues/931))
125
+ - [[`bf95442`](https://github.com/flex-development/mlly/commit/bf95442f748fb49743d4f5af4b0d374e7ca76d32)] **deps:** Bump octokit/graphql-action from 2.3.2 to 3.0.0 ([#919](https://github.com/flex-development/mlly/issues/919))
126
+ - [[`319acbe`](https://github.com/flex-development/mlly/commit/319acbef240757692afb9d7f917892557f9d34f5)] **deps:** bump octokit/graphql-action from 3.0.0 to 3.0.2 ([#933](https://github.com/flex-development/mlly/issues/933))
127
+ - [[`fdd1ff8`](https://github.com/flex-development/mlly/commit/fdd1ff89435ee04b48c4dc4c0edb76299b65b55d)] **deps:** Bump oven-sh/setup-bun from 2.1.0 to 2.1.2 ([#947](https://github.com/flex-development/mlly/issues/947))
128
+ - [[`f805ef9`](https://github.com/flex-development/mlly/commit/f805ef938d1e3811b02ce7edbfd7e41e5f4a82f2)] **workflows:** [`ci`] test on node version 20
129
+ - [[`1db9501`](https://github.com/flex-development/mlly/commit/1db9501f3e5313dc09ce145511b6c453dadd9836)] **workflows:** [`ci`] test on node version 21
18
130
 
131
+ ### :pencil: Documentation
19
132
 
20
- ### :house_with_garden: Housekeeping
133
+ - [[`8fa7ae4`](https://github.com/flex-development/mlly/commit/8fa7ae44e1f0d0dc7661e99fd124ee42538c7ddb)] [api] `legacyMainResolve`
134
+ - [[`5671b20`](https://github.com/flex-development/mlly/commit/5671b2066110550f7e4a970714e4511ae786c3bc)] [api] `moduleResolve`
135
+ - [[`f760113`](https://github.com/flex-development/mlly/commit/f76011374ffa2eed941ed538d2327be7a5ec449b)] [api] `packageExportsResolve`
136
+ - [[`7b5ac54`](https://github.com/flex-development/mlly/commit/7b5ac54cfaa497384666055f740d8d475635085e)] [api] `packageImportsExportsResolve`
137
+ - [[`c369af2`](https://github.com/flex-development/mlly/commit/c369af24b768cad85787dce67e95986cdc0c10fa)] [api] `packageImportsResolve`
138
+ - [[`55df2ac`](https://github.com/flex-development/mlly/commit/55df2ac90a897fb5e3ccd8f5871ab1ec340fda82)] [api] `packageResolve`
139
+ - [[`25295d6`](https://github.com/flex-development/mlly/commit/25295d6ebcfca3c14634a15096f454297a5f0807)] [api] `packageSelfResolve`
140
+ - [[`0e610f0`](https://github.com/flex-development/mlly/commit/0e610f0133d703123ec8dcb387a66eb6cf195c0f)] [api] `packageTargetResolve`
141
+ - [[`8d40c07`](https://github.com/flex-development/mlly/commit/8d40c072873473d3b54a9a67c6c3b06eb2af4189)] [api] constants
142
+ - [[`be154d1`](https://github.com/flex-development/mlly/commit/be154d1fb963b839a542c81d57ff1f9fbbe8bf17)] [api] functions (not resolver methods)
143
+ - [[`e5ae434`](https://github.com/flex-development/mlly/commit/e5ae4344d59a9f6c2c46430c3d118ca290379dac)] add badges for monthly downloads and install size
144
+ - [[`a8b17e1`](https://github.com/flex-development/mlly/commit/a8b17e1b6ef266360492f31b138f609e94c70d55)] fix node support note
145
+ - [[`bba86f8`](https://github.com/flex-development/mlly/commit/bba86f831f5f061a388789baba1860feceb8d757)] resolution algorithm (init)
146
+ - [[`45c87ea`](https://github.com/flex-development/mlly/commit/45c87ea50cc7d6ccd93a95bc2da22295416b8790)] types
147
+ - [[`9512683`](https://github.com/flex-development/mlly/commit/9512683dd8d50a6fc9ed1e888d26bad4fb1acc5f)] usage example
21
148
 
22
- * **github:** add commit scope `loader` ([8b57984](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46))
23
- * **github:** add commit scope `nvm` ([905e7d1](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf))
24
- * **github:** add commit scope `spelling` ([7a111d0](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359))
25
- * **spelling:** add "infile" to dictionary ([3ade2df](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20))
26
- * **tests:** [mocks] remove `@flex-development/pathe` ([ccd9bbe](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888))
27
- * **vscode:** add todo tree settings to `settings.json` ([41a9097](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827))
28
- * **vscode:** remove stale `volar` settings ([6998a8c](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1))
29
- * **yarn:** disable transparent workspaces ([8e519fd](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b))
149
+ ### :sparkles: Features
30
150
 
31
- ## [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)
151
+ - [[`f7472c7`](https://github.com/flex-development/mlly/commit/f7472c7bfce2a9f212cff748f6cca0a34a8567f8)] awaitable api
152
+
153
+ ### :bug: Fixes
154
+
155
+ - [[`117e80a`](https://github.com/flex-development/mlly/commit/117e80aba27de706a031bd371dbd2e60db76ffb2)] **resolver:** [`legacyMainResolve`] synchronous file existence check
156
+ - [[`48669aa`](https://github.com/flex-development/mlly/commit/48669aa86ba8da119621b9aea5fa072f27fb8a62)] **workflows:** [`ci`] publish auth
157
+
158
+ ### :mechanical_arm: Refactors
159
+
160
+ - [[`83c7e78`](https://github.com/flex-development/mlly/commit/83c7e78afcb4823fd9259fdba414c8faaa83a8b6)] **resolver:** [`packageTargetResolve`] use `Promise.all`
32
161
 
162
+ ## [1.0.0-alpha.20](https://github.com/flex-development/mlly/compare/1.0.0-alpha.19...1.0.0-alpha.20) (2024-12-29)
33
163
 
34
164
  ### ⚠ BREAKING CHANGES
35
165
 
36
- * **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
37
- * **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
38
- * **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
39
- * **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
40
- * **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
41
- * **types:** `MIMEType` -> `MimeType`
42
- * **exports:** remove subpath `"./lib/*"`
166
+ - **lib:** [`resolver`] synchronous methods
43
167
 
44
168
  ### :package: Build
45
169
 
46
- * output `.d.mts` and `.mjs` files separately ([8e05a0d](https://github.com/flex-development/mlly/commit/8e05a0d70ba6bc972947a04bcceb3dd7304bd768))
47
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([9f70d1a](https://github.com/flex-development/mlly/commit/9f70d1aa397ec52738584c08d209472340d8f628))
48
- * **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))
49
- * **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))
50
- * **deps-dev:** bump typescript from 4.9.4 to 5.0.0-dev.20230102 ([f8b753b](https://github.com/flex-development/mlly/commit/f8b753b086be2bbb3506e21e7ecd86d5c94fdc85))
51
- * **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))
52
- * **deps-dev:** remove vitest patch ([5ccce0b](https://github.com/flex-development/mlly/commit/5ccce0bc4f06871594ede77238db38c11917b0fd))
53
- * **deps-peer:** add `@types/node>=14.17.0` ([67899e3](https://github.com/flex-development/mlly/commit/67899e3a632bd048f5ec90ce2732bf87b57f873b))
54
- * **deps:** bump @flex-development/errnode from 1.2.0 to 1.3.0 ([c95b3c8](https://github.com/flex-development/mlly/commit/c95b3c8a8343474840eab1afefb1c0e57a2a3d90))
55
- * **deps:** bump @flex-development/import-regex from 2.0.0 to 2.0.1 ([e868cae](https://github.com/flex-development/mlly/commit/e868cae9130d68105b35d45e7c750bbf26f824ed))
56
- * **deps:** bump @flex-development/pathe from 1.0.1 to 1.0.2 ([8954b4a](https://github.com/flex-development/mlly/commit/8954b4aed63e0523964faf1b85b9d9ac07c338bd))
57
- * **deps:** bump @flex-development/pathe from 1.0.2 to 1.0.3 ([3910fcf](https://github.com/flex-development/mlly/commit/3910fcfb8e778cd5dd0af5a3b355a93378d5e2b8))
58
- * **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))
59
- * **exports:** remove subpath `"./lib/*"` ([d748039](https://github.com/flex-development/mlly/commit/d74803951eaf1b71d1d3ff3680b52adf63861b8f))
170
+ - [[`a466da3`](https://github.com/flex-development/mlly/commit/a466da3a2220d5bf8b76d5a145c67c7767a4df2e)] **deps-dev:** Bump @stylistic/eslint-plugin from 2.11.0 to 2.12.1 ([#756](https://github.com/flex-development/mlly/issues/756))
171
+ - [[`b55b400`](https://github.com/flex-development/mlly/commit/b55b400e8fd612cb4cd2fae681e82529649fcd69)] **deps-dev:** Bump consola from 3.2.3 to 3.3.1 ([#757](https://github.com/flex-development/mlly/issues/757))
172
+ - [[`156b3d2`](https://github.com/flex-development/mlly/commit/156b3d2f047b07f74fef291f9880fece6635c628)] **deps-dev:** Bump consola from 3.3.1 to 3.3.3 ([#759](https://github.com/flex-development/mlly/issues/759))
173
+ - [[`822d03a`](https://github.com/flex-development/mlly/commit/822d03a715735e4272c3682df634f93aef6630c5)] **deps-dev:** Bump dprint from 0.47.6 to 0.48.0 ([#755](https://github.com/flex-development/mlly/issues/755))
174
+ - [[`51d471a`](https://github.com/flex-development/mlly/commit/51d471af89b6811c7732f73fe22c41a782cec4cb)] **deps-dev:** bump the typescript-eslint group from 8.18.1 to 8.18.3-alpha.5
175
+ - [[`dc82de3`](https://github.com/flex-development/mlly/commit/dc82de388f9387b53a4cd551de44756f99d144fb)] **deps:** Bump @flex-development/pathe from 4.0.0 to 4.0.1 in the flex-development group ([#758](https://github.com/flex-development/mlly/issues/758))
60
176
 
177
+ ### :sparkles: Features
61
178
 
62
- ### :robot: Continuous Integration
179
+ - [[`a88c7f8`](https://github.com/flex-development/mlly/commit/a88c7f867397fc061371367c31086693c2f89e4f)] **lib:** [`resolver`] synchronous methods
63
180
 
64
- * [[@dependabot](https://github.com/dependabot)] update ignore list for npm ecosystem ([d500b0a](https://github.com/flex-development/mlly/commit/d500b0ac3764fe27c7e9fe2218edc723f562021f))
65
- * **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)
66
- * **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)
67
- * **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)
68
- * **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)
69
- * **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)
70
- * **workflows:** [`add-to-project`] run workflow when pr is synchronized ([06d8846](https://github.com/flex-development/mlly/commit/06d8846efdb681da4b2a2ce6c83df663f266b027))
71
- * **workflows:** [`approve-pr`] add debug step ([e130bed](https://github.com/flex-development/mlly/commit/e130bedeab8dd640b1a8cf6debdb8e6e1f92cbfb))
72
- * **workflows:** [`approve-pr`] refactor approval step conditional ([8afe058](https://github.com/flex-development/mlly/commit/8afe0581fb8d61bf21faa1b03b638aad84c8ff27))
73
- * **workflows:** [`ci`] add `docs` job ([8e9f672](https://github.com/flex-development/mlly/commit/8e9f67249c1e704c3e7aa8f31297170b0b8a3346))
74
- * **workflows:** [`ci`] add typescript matrix ([659629c](https://github.com/flex-development/mlly/commit/659629cc3b477ecb454914bc82e67080ad171515))
75
- * **workflows:** [`ci`] make typescript matrix dynamic ([825142e](https://github.com/flex-development/mlly/commit/825142ecd92688ce01ea0d0ee0b6a662dfa29f18))
76
- * **workflows:** [`ci`] skip workflow run for [@dependabot](https://github.com/dependabot) on `push` ([4e9c1ca](https://github.com/flex-development/mlly/commit/4e9c1cab80c2e7a8909742891eba5cd22b564be4))
77
- * **workflows:** [`ci`] split ci job into multiple jobs ([70e6ee2](https://github.com/flex-development/mlly/commit/70e6ee20ffd7be96f4c98344d35b627f3a4fc2ec))
78
- * **workflows:** [`ci`] update codecov config ([635adcd](https://github.com/flex-development/mlly/commit/635adcd3269b2e9ae48b3eb801376ffe5c5458f6))
79
- * **workflows:** [`dependabot-auto`] sign lockfile fix commit ([a520d77](https://github.com/flex-development/mlly/commit/a520d778317f94800e2b08d622f045b12aa71d38))
80
- * **workflows:** [`integrity`] update `pull_request` event activity types ([9d5569d](https://github.com/flex-development/mlly/commit/9d5569d2dabdb1c0d9f8aa652743fe7e7888a4c3))
81
- * **workflows:** [`typescript-canary`] print typescript version ([8bcc613](https://github.com/flex-development/mlly/commit/8bcc613c2b207efffa9964b07c15ffc76a786a5a))
82
- * **workflows:** [`typescript-canary`] run workflow daily ([22feb88](https://github.com/flex-development/mlly/commit/22feb88b8d1784a3acea5be91f814c8d7ece9b50))
83
- * **workflows:** add `typescript-canary` ([87d8a0d](https://github.com/flex-development/mlly/commit/87d8a0d46632b95ae0bfecd08659f91a78a8407f))
84
- * **yarn:** fix typescript matrix testing ([c021970](https://github.com/flex-development/mlly/commit/c021970fa53907c419897aa79f8028bd64d29fd5))
181
+ ## [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)
85
182
 
183
+ ### ⚠ BREAKING CHANGES
86
184
 
87
- ### :pencil: Documentation
185
+ - api
88
186
 
89
- * [site] add `/api/enums` ([11682d3](https://github.com/flex-development/mlly/commit/11682d3aa348e5d2cfc674e2ca8f17e4d7929ae5))
90
- * [site] fix "params" table rendering ([0915c3f](https://github.com/flex-development/mlly/commit/0915c3f6367e263fee2212ac83b4daa57d1b49c0))
91
- * [site] fix "throws" description rendering ([1bc5801](https://github.com/flex-development/mlly/commit/1bc5801df3a0d8e19186d99219b5cd550ad4f989))
92
- * [site] fix `@link` and `@linkcode` tag replacements ([e0e2b2f](https://github.com/flex-development/mlly/commit/e0e2b2f6e90a6ebd277b9ad4d1cddf5da57fc0b0))
93
- * [site] show title-only "throws" sections ([2dcb01b](https://github.com/flex-development/mlly/commit/2dcb01bd3309363b28587da5e752d55d019da6b1))
94
- * [site] update homepage ([c799a80](https://github.com/flex-development/mlly/commit/c799a809a88d1c82dd6b24c3bb925db4ad81e89f))
95
- * [site] update vercel install command ([89f407c](https://github.com/flex-development/mlly/commit/89f407cb81b32969bf87b9f18da635438bab7943))
96
- * **tests:** organize file overviews ([7479aa8](https://github.com/flex-development/mlly/commit/7479aa8df76d17d91d082e55bedbabdaf189be10))
97
- * **utils:** [`resolveModule`] other differences between node.js ([ae357e8](https://github.com/flex-development/mlly/commit/ae357e8cd949db0ffbb228b34c29446be277e043))
187
+ ### :package: Build
98
188
 
189
+ - [[`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))
190
+ - [[`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))
191
+ - [[`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))
192
+ - [[`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))
193
+ - [[`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))
194
+ - [[`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))
195
+ - [[`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))
196
+ - [[`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))
197
+ - [[`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))
198
+ - [[`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))
199
+ - [[`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))
200
+ - [[`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))
201
+ - [[`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))
202
+ - [[`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))
203
+ - [[`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))
204
+ - [[`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))
205
+ - [[`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))
206
+ - [[`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))
207
+ - [[`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))
208
+ - [[`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))
209
+ - [[`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))
210
+ - [[`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))
211
+ - [[`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))
212
+ - [[`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))
213
+ - [[`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))
214
+ - [[`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))
215
+ - [[`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))
216
+ - [[`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))
217
+ - [[`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))
218
+ - [[`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))
219
+ - [[`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))
220
+ - [[`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))
221
+ - [[`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))
222
+ - [[`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))
223
+ - [[`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))
224
+ - [[`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))
225
+ - [[`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))
226
+ - [[`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))
227
+ - [[`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))
228
+ - [[`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))
229
+ - [[`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))
230
+ - [[`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))
231
+ - [[`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))
232
+ - [[`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))
233
+ - [[`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))
234
+ - [[`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))
235
+ - [[`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))
236
+ - [[`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))
237
+ - [[`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))
238
+ - [[`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))
239
+ - [[`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))
240
+ - [[`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))
241
+ - [[`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))
242
+ - [[`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))
243
+ - [[`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))
244
+ - [[`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))
245
+ - [[`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))
246
+ - [[`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))
247
+ - [[`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))
248
+ - [[`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))
249
+ - [[`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))
250
+ - [[`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))
251
+ - [[`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))
252
+ - [[`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))
253
+ - [[`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))
254
+ - [[`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))
255
+ - [[`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))
256
+ - [[`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))
257
+ - [[`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))
258
+ - [[`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))
259
+ - [[`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))
260
+ - [[`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))
261
+ - [[`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))
262
+ - [[`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))
263
+ - [[`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))
264
+ - [[`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))
265
+ - [[`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))
266
+ - [[`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))
267
+ - [[`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))
268
+ - [[`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))
269
+ - [[`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))
270
+ - [[`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))
271
+ - [[`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
272
+ - [[`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))
273
+ - [[`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))
274
+ - [[`3e5093a`](https://github.com/flex-development/mlly/commit/3e5093a848cdef7e7b7d3c418bfaf9b826787551)] **deps-dev:** bump the vitest group with 3 updates
275
+ - [[`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))
276
+ - [[`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))
277
+ - [[`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))
278
+ - [[`b631473`](https://github.com/flex-development/mlly/commit/b631473418e8f8b912d9b06a94d070907c19678d)] **deps-dev:** bump typescript from 5.7.0-beta to 5.7.1-rc
279
+ - [[`31a007a`](https://github.com/flex-development/mlly/commit/31a007abcee9f8babd3871709242f0e9f94e7b8f)] **deps-dev:** bump typescript from 5.7.1-rc to 5.7.2
280
+ - [[`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))
281
+ - [[`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))
282
+ - [[`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))
283
+ - [[`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))
284
+ - [[`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))
285
+ - [[`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))
286
+ - [[`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))
287
+ - [[`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))
288
+ - [[`6216a1c`](https://github.com/flex-development/mlly/commit/6216a1c43152d2c543daa391c130976d20e86b6d)] **deps:** bump @flex-development/is-builtin from 3.1.0 to 3.2.0
289
+ - [[`ffc9f3c`](https://github.com/flex-development/mlly/commit/ffc9f3ccc02545de4ba4d4ae0464cb47351514c6)] **deps:** bump @flex-development/pathe from 3.0.0 to 4.0.0
290
+ - [[`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))
291
+ - [[`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))
292
+ - [[`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))
293
+ - [[`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))
294
+ - [[`4495eed`](https://github.com/flex-development/mlly/commit/4495eedae41d07ff40cc9c35b1c5e2ab8fecc92f)] **yarn:** bump yarn from 4.5.0 to 4.5.1
99
295
 
100
- ### :sparkles: Features
296
+ ### :robot: Continuous Integration
101
297
 
102
- * **enums:** `AssertType` ([f4ab669](https://github.com/flex-development/mlly/commit/f4ab6691df8f102d5dadba755ccd1dc2f66df16b))
103
- * **enums:** `Format` ([bd79b6a](https://github.com/flex-development/mlly/commit/bd79b6a059918f83b88a2ebe6789e0d68fbcb7ca))
104
- * **enums:** `SpecifierKind` ([077a6ab](https://github.com/flex-development/mlly/commit/077a6abd2676fed01e3aa46bafeefd22d2b43ce2))
105
- * **interfaces:** `FillModuleOptions` ([ffb0481](https://github.com/flex-development/mlly/commit/ffb04816e0788b5802a1880ace3b53fa9d90c10a))
106
- * **interfaces:** `FindSubpathOptions` ([b5fd706](https://github.com/flex-development/mlly/commit/b5fd7067575007c00f85e17fbe9c4404d21ab941))
107
- * **interfaces:** `GetFormatOptions` ([0e7e861](https://github.com/flex-development/mlly/commit/0e7e861770b93520967801951bdea5654f4d9922))
108
- * **interfaces:** `GetSourceOptions` ([dae9081](https://github.com/flex-development/mlly/commit/dae9081166c2af8710faef2b737d45420dd05ce4))
109
- * **interfaces:** `ImportAssertions` ([7a51c62](https://github.com/flex-development/mlly/commit/7a51c62d68240025402a490b94ab44f14deb2259))
110
- * **interfaces:** `PackageScope` ([52c16ad](https://github.com/flex-development/mlly/commit/52c16ad141d1956f53d93f057254d2438ce08492))
111
- * **interfaces:** `ParsedDataUrl` ([529b3c5](https://github.com/flex-development/mlly/commit/529b3c5093f85b03351dbdb95dbe3f9277a884fb))
112
- * **interfaces:** `ParsedModuleId` ([194b14e](https://github.com/flex-development/mlly/commit/194b14ef0fc047190980c3b92f48b9e5c53832fb))
113
- * **interfaces:** `ParsedSubpath` ([7bc8031](https://github.com/flex-development/mlly/commit/7bc803152d8b57116d5fa2fdaa67096e09a13f64))
114
- * **interfaces:** `ParseModuleIdOptions` ([97ee265](https://github.com/flex-development/mlly/commit/97ee26526c89e5a42d7a64431a4a3d49127414df))
115
- * **interfaces:** `ParseSubpathOptions` ([f5150fd](https://github.com/flex-development/mlly/commit/f5150fd322b3b96e919756d4e0a4aa0143a0ef58))
116
- * **interfaces:** `Statement#specifier_kind` ([db39187](https://github.com/flex-development/mlly/commit/db39187d5883890fafcf1b3a9827c2ca6811e477))
117
- * **internal:** `ENCODED_SEP_REGEX` ([22ff22f](https://github.com/flex-development/mlly/commit/22ff22f48113b9c3570ad5b982a300fe3b079734))
118
- * **internal:** `escapeRegExp` ([f00836b](https://github.com/flex-development/mlly/commit/f00836b8a1d6ef94917ea0b39884585b1a29de31))
119
- * **internal:** `FORMAT_TYPE_MAP` ([a442b8d](https://github.com/flex-development/mlly/commit/a442b8d3a4fccde4814a6437f9cfaf1a3e9797e4))
120
- * **internal:** `getSpecifierKind` ([be30ba7](https://github.com/flex-development/mlly/commit/be30ba71f28f1bd677ffc251d3c578e2ffa37c62))
121
- * **internal:** `getSubpaths` ([f9f5f37](https://github.com/flex-development/mlly/commit/f9f5f37d2703e6b2dd1d7469a5ffa92a01cba308))
122
- * **internal:** `INTERNAL_SPECIFIER_REGEX` ([6f1b8be](https://github.com/flex-development/mlly/commit/6f1b8be5ea341c279c57176d1af8eb9effca0c7a))
123
- * **internal:** `isArrayIndex` ([c4793a0](https://github.com/flex-development/mlly/commit/c4793a0f815aefd13f0f0fc20cab32d8dfd42dcc))
124
- * **internal:** `isDirectory` ([ec91d08](https://github.com/flex-development/mlly/commit/ec91d08a8c4418a3c510dbc55e07d59293670bc0))
125
- * **internal:** `isFile` ([d06b9ac](https://github.com/flex-development/mlly/commit/d06b9acae46eada86fd866b09c316d61d04ca69d))
126
- * **internal:** `isFunction` ([e01911a](https://github.com/flex-development/mlly/commit/e01911af8417177b24bd9d42a2c05d1eb70ea3cc))
127
- * **internal:** `PACKAGE_NAME_REGEX` ([3f43f95](https://github.com/flex-development/mlly/commit/3f43f950321006997853231a5054e878d375fdd1))
128
- * **internal:** `PACKAGE_PATH_REGEX` ([375f356](https://github.com/flex-development/mlly/commit/375f356811b2f3537436000d23b0414aa59164d4))
129
- * **internal:** `Resolver` ([4c4f900](https://github.com/flex-development/mlly/commit/4c4f900d918c01f05ff69f9d998c0d8510530d41))
130
- * **internal:** `validateBoolean` ([76166af](https://github.com/flex-development/mlly/commit/76166af9edb580d7271f2a60c3b052767c4b5e54))
131
- * **internal:** `validateObject` ([c961376](https://github.com/flex-development/mlly/commit/c961376bd3ec592adea916e49d186021859e1f12))
132
- * **internal:** `validateSet` ([d9b6595](https://github.com/flex-development/mlly/commit/d9b6595a45ba7e2644914b2d63b0b8e149d63165))
133
- * **internal:** `validateString` ([c66025d](https://github.com/flex-development/mlly/commit/c66025d576c4f37f44944517ff9787d9946696d0))
134
- * **internal:** `validateURLString` ([ba49e9b](https://github.com/flex-development/mlly/commit/ba49e9b03af440d5d07393c8d1b19dacaafba3fa))
135
- * **types:** `ChangeExtFn` ([b906e6b](https://github.com/flex-development/mlly/commit/b906e6b30c47cde9628788c9280582d693c00c6a))
136
- * **types:** `Format` ([5cb0b1b](https://github.com/flex-development/mlly/commit/5cb0b1b074fdee44ea03e32b4128780afbe86667))
137
- * **types:** `ModuleId` ([1f3a500](https://github.com/flex-development/mlly/commit/1f3a500b96f43ea055bccdcb6815bc8e697dc140))
138
- * **types:** `Protocol` ([6380ea8](https://github.com/flex-development/mlly/commit/6380ea8869a9ac540a517ff6cedb8be36d6f73d4))
139
- * **utils:** `compareSubpaths` ([66f2137](https://github.com/flex-development/mlly/commit/66f2137ef8b938a84c7d273bdc45299de14073b0))
140
- * **utils:** `EXTENSION_FORMAT_MAP` ([d4720d7](https://github.com/flex-development/mlly/commit/d4720d703b64fe623f95cb811a006c390806e8c6))
141
- * **utils:** `fillModules` ([7b9d1e7](https://github.com/flex-development/mlly/commit/7b9d1e7874e2f43b91f90963c26c83c7bc651e25))
142
- * **utils:** `findSubpath` ([4fd48f6](https://github.com/flex-development/mlly/commit/4fd48f6ab8415d50214de5d10ff608152bc8c6b8))
143
- * **utils:** `getFormat` ([a1cae6f](https://github.com/flex-development/mlly/commit/a1cae6f80c88c007d7ac4736de54454d17192d84))
144
- * **utils:** `getSource` ([017eadb](https://github.com/flex-development/mlly/commit/017eadb7b2d58eac080dfe4865dc597671ede992))
145
- * **utils:** `isAbsoluteSpecifier` ([4bd443c](https://github.com/flex-development/mlly/commit/4bd443ce9391fc6dcf1889edb9c3a7c6ef7768b7))
146
- * **utils:** `isBareSpecifier` ([feda82b](https://github.com/flex-development/mlly/commit/feda82b8a088bf9b889e20f92c614d810acbe14f))
147
- * **utils:** `isExportsSugar` ([0c9f954](https://github.com/flex-development/mlly/commit/0c9f954cf69b6dfbf821fdee8966f2b0a31de759))
148
- * **utils:** `isRelativeSpecifier` ([92b8846](https://github.com/flex-development/mlly/commit/92b8846acefed82187afef8503bf5e7c4cbb953f))
149
- * **utils:** `lookupPackageScope` ([46cb852](https://github.com/flex-development/mlly/commit/46cb8524c01528cf8310caab7944e6704d66ea97))
150
- * **utils:** `parseDataURL` ([93fd382](https://github.com/flex-development/mlly/commit/93fd38292d07961425f6b394018578fb9933320e))
151
- * **utils:** `parseModuleId` ([a315dd0](https://github.com/flex-development/mlly/commit/a315dd0aef9238fb107ea07ad27214838e144451))
152
- * **utils:** `parseSubpath` ([8479781](https://github.com/flex-development/mlly/commit/84797816490736fc2078ff34f42b2cf1f43e31a2))
153
- * **utils:** `PATTERN_CHARACTER` ([7a8f04b](https://github.com/flex-development/mlly/commit/7a8f04bc06a281c6357dc14f3e8af9f63678ca60))
154
- * **utils:** `readPackageJson` ([b2f9a18](https://github.com/flex-development/mlly/commit/b2f9a180f0bce61215ac2d23d4be83a91b657f81))
155
- * **utils:** `toNodeURL` ([a536567](https://github.com/flex-development/mlly/commit/a536567dbd177a033b5e40069009dadbfc06ab30))
156
- * **utils:** `toURL` ([165d8b0](https://github.com/flex-development/mlly/commit/165d8b0695c85b956e06ddf8a8d0c08f7d58a9a0))
157
- * **utils:** `validateAssertions` ([61e9769](https://github.com/flex-development/mlly/commit/61e9769ef7d9471e7c7732faa955a8c21a23b877))
158
- * **utils:** `validateExports` ([a2b14ea](https://github.com/flex-development/mlly/commit/a2b14ea2341ea1044be71e11fffd36619e6fdb83))
298
+ - [[`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))
299
+ - [[`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))
300
+ - [[`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))
301
+ - [[`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))
302
+ - [[`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))
303
+ - [[`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))
304
+ - [[`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))
305
+ - [[`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))
306
+ - [[`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))
307
+ - [[`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))
308
+ - [[`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))
309
+ - [[`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))
310
+ - [[`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))
311
+ - [[`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))
312
+ - [[`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))
313
+ - [[`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))
314
+ - [[`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))
315
+ - [[`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))
316
+ - [[`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))
317
+ - [[`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))
318
+ - [[`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))
319
+ - [[`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))
320
+ - [[`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))
321
+ - [[`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))
322
+ - [[`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))
323
+ - [[`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))
324
+ - [[`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))
325
+ - [[`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))
326
+ - [[`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))
327
+ - [[`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))
328
+ - [[`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))
329
+ - [[`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))
330
+ - [[`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))
331
+ - [[`88c454f`](https://github.com/flex-development/mlly/commit/88c454fc125ed54aa6359525de821163f21e6483)] **workflows:** [`ci`] fix `gitguardian` job
332
+ - [[`15c6b9c`](https://github.com/flex-development/mlly/commit/15c6b9cfddf2bf87311784a8ff8ad733e9181f5a)] **workflows:** [`ci`] fix coverage failure check
159
333
 
334
+ ### :sparkles: Features
160
335
 
161
- ### :bug: Fixes
336
+ - [[`b5bfc6d`](https://github.com/flex-development/mlly/commit/b5bfc6ddb453beccd8589f089335b9730f71ecc4)] empty subpath pattern matches
337
+ - [[`ae7b2ec`](https://github.com/flex-development/mlly/commit/ae7b2ecb5ec6e609f5a069977d4fa82d414f8e5f)] **lib:** `toUrl`
338
+ - [[`b5ab3dc`](https://github.com/flex-development/mlly/commit/b5ab3dc4cbdc990184409d1eb2aa5a6f3d881014)] **utils:** `getSource`
162
339
 
163
- * **ts:** `Type '{ '.' Exports | undefined; }' is not assignable to type 'Exports | undefined'` ([de20179](https://github.com/flex-development/mlly/commit/de20179e1b9d9ec68a426814999a9304f9fa2e73))
164
- * **ts:** missing types in build output ([a5d2226](https://github.com/flex-development/mlly/commit/a5d2226c352269795399bc14742e49c845c955f6))
165
- * **utils:** specifier replacement ([e29520b](https://github.com/flex-development/mlly/commit/e29520bf74cbba11c567cc13257a84252777403a))
340
+ ### :bug: Fixes
166
341
 
342
+ - [[`23ddb81`](https://github.com/flex-development/mlly/commit/23ddb81217d50ca72bc1116abc757510abb1e534)] **utils:** [`isDirectory`] convert file url strings to `URL` instances
343
+ - [[`e4e68c7`](https://github.com/flex-development/mlly/commit/e4e68c7cae0c6f1b9c003474201757e42a3d3f4a)] **utils:** [`isFile`] convert file url strings to `URL` instances
167
344
 
168
345
  ### :house_with_garden: Housekeeping
169
346
 
170
- * fix lint-staged config ([bda813d](https://github.com/flex-development/mlly/commit/bda813db0922faa93d0543e34d11e290bbd52967))
171
- * project qa ([d3a571d](https://github.com/flex-development/mlly/commit/d3a571d38626b0cfd2affb3987bd583813bd9b35))
172
- * update eslint config ([b1d716c](https://github.com/flex-development/mlly/commit/b1d716cb29c95734f974e703fe88f4d150827abf))
173
- * update project architecture ([60b2c77](https://github.com/flex-development/mlly/commit/60b2c771614cc13e892a8814ad644d6095112ba4))
174
- * update project architecture ([7d0571b](https://github.com/flex-development/mlly/commit/7d0571bb660770640963d7ec550d91b7aa6c7a0d))
175
- * **esm:** use package in custom loader ([a6e07d0](https://github.com/flex-development/mlly/commit/a6e07d0487b2734bc1dac6bcd22c6ff2b3e09380))
176
- * **github:** add "typescript version" input to bug report template ([d6de153](https://github.com/flex-development/mlly/commit/d6de15302d1355a7ffbb680b4059fb42a0b6a0af))
177
- * **github:** add commit scope `utils` ([4af0c3d](https://github.com/flex-development/mlly/commit/4af0c3d3c0ca38594683586948524faa316ddaf8))
178
- * **github:** add label `scope:utils` ([169ec14](https://github.com/flex-development/mlly/commit/169ec14abcd9735a8c00e1ce76b5c33f3e0f01cf))
179
- * **github:** configure sponsor button ([b9e4bf5](https://github.com/flex-development/mlly/commit/b9e4bf5d5a73ce467ed1047737ff8fe9b9de9248))
180
- * **github:** set `LINT_STAGED` before running `lint-staged` ([4c49124](https://github.com/flex-development/mlly/commit/4c49124b454e7776d7dc11b34482756bca7ef35e))
181
- * **pkg:** update keywords ([8ddf224](https://github.com/flex-development/mlly/commit/8ddf224485aa19b8ad706f0b3b8c0bdbba3151ed))
182
- * **tests:** update codecov config ([226b49c](https://github.com/flex-development/mlly/commit/226b49c712ae56dc3f09bd0016df0edc34608900))
183
- * **tests:** update lint-staged integration ([9b6b530](https://github.com/flex-development/mlly/commit/9b6b53076be0e2240cf8dec3fcb08cef45527cc9))
184
- * **vscode:** update settings ([aac433c](https://github.com/flex-development/mlly/commit/aac433c9d42d9794b2fd9303df331f8ee70b0786))
185
-
186
-
187
- ### :zap: Refactors
188
-
189
- * move constants to `utils` dir ([e6db385](https://github.com/flex-development/mlly/commit/e6db385058fc810e7be6bb79acac9c7e92bc7aaa))
190
- * rename `lib` directory to `utils` ([c84a231](https://github.com/flex-development/mlly/commit/c84a23160738d322e8db7bd1b2a0927efefc1c2f))
191
- * **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
192
- * **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
193
- * **esm:** improve loaders compatibility ([505e211](https://github.com/flex-development/mlly/commit/505e211531ed6b216567d2b156b42637d292579f))
194
- * **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
195
- * **internal:** [`validateString`] convert to type guard ([789f2cf](https://github.com/flex-development/mlly/commit/789f2cf7c2ecf27fed86f64640c6c7806ef257f9))
196
- * **ts:** catch build output errors early ([7cb4c38](https://github.com/flex-development/mlly/commit/7cb4c3899387b67f9d7c9b160e091da9e9613403))
197
- * **types:** `MIMEType` -> `MimeType` ([1df5622](https://github.com/flex-development/mlly/commit/1df56226dfdc6534b40c64d1b33e6ab57b13c901))
198
- * **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
199
- * **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
347
+ - [[`ca57108`](https://github.com/flex-development/mlly/commit/ca57108ca7246c5b8f733e7a3a7fc85cfb7e445e)] [tsconfig] extend `@tsconfig/strictest/tsconfig`
348
+ - [[`402bed6`](https://github.com/flex-development/mlly/commit/402bed6eb6ccd3ca6f13595e1a05fe04be84c56c)] `.mts` migration
349
+ - [[`484eebf`](https://github.com/flex-development/mlly/commit/484eebf97b387337aec5d6f6d374e14f39b9ebcc)] refactor project architecture
350
+ - [[`b93a82c`](https://github.com/flex-development/mlly/commit/b93a82cad0751e98ea4a8f86162dbff58d87df66)] update project architecture
200
351
 
352
+ ### :mechanical_arm: Refactors
201
353
 
202
- ### :white_check_mark: Testing
354
+ - [[`711d283`](https://github.com/flex-development/mlly/commit/711d2837e427d008c8e7f560eba24ca68eb62dc1)] async api
355
+ - [[`eea308c`](https://github.com/flex-development/mlly/commit/eea308ce4d2485fd2833053f10b09f418684e04d)] api
356
+ - [[`2f77c6e`](https://github.com/flex-development/mlly/commit/2f77c6ebb4a0997251b63cada0979f0eb1c957eb)] **lib:** `toRelativeSpecifier`
357
+ - [[`b6dfec6`](https://github.com/flex-development/mlly/commit/b6dfec64279fa0f54389bf204c69b2dbe0778871)] **utils:** use native `fetch`
203
358
 
204
- * **utils:** [`findStaticImports`] 100% isolated coverage ([aca9212](https://github.com/flex-development/mlly/commit/aca9212bf77bfc58b5a050d136cafd622866526f))
359
+ ## [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)
205
360
 
206
- ## [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)
361
+ ### BREAKING CHANGES
207
362
 
363
+ - **ts:** use `export type *`
208
364
 
209
365
  ### :package: Build
210
366
 
211
- * **deps-dev:** bump vue-tsc from 1.0.17 to 1.0.18 ([68255dc](https://github.com/flex-development/mlly/commit/68255dc3ad4be30eae7ea61598d4494d1913717b))
212
- * **deps:** bump import-meta-resolve from 2.1.0 to 2.2.0 ([8ce9cfc](https://github.com/flex-development/mlly/commit/8ce9cfc6a49b3b69c4b129b42b171d60ce3d2b91))
213
- * **deps:** bump tsconfig-paths from 4.1.0 to 4.1.1 ([6cb2847](https://github.com/flex-development/mlly/commit/6cb2847c229d0d0ba0715a725da4689752a5a899))
367
+ - [[`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))
368
+ - [[`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))
369
+ - [[`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))
370
+ - [[`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))
371
+ - [[`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))
372
+ - [[`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))
373
+ - [[`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))
374
+ - [[`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))
375
+ - [[`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))
376
+ - [[`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))
377
+ - [[`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))
378
+ - [[`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))
379
+ - [[`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
380
+ - [[`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))
381
+ - [[`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))
382
+ - [[`e0a1dce`](https://github.com/flex-development/mlly/commit/e0a1dce59094797a7bc0ddf7b26840a43765155c)] **ts:** use `export type *`
383
+
384
+ ### :robot: Continuous Integration
214
385
 
386
+ - [[`5a4e169`](https://github.com/flex-development/mlly/commit/5a4e169100278e773d78c8e2b1c3b921fb240394)] [[@dependabot](https://github.com/dependabot)] add group `flex-development`
387
+ - [[`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))
388
+
389
+ ### :pencil: Documentation
390
+
391
+ - [[`e869100`](https://github.com/flex-development/mlly/commit/e8691007ada207792915130997917d98d5aebc19)] **utils:** [`resolveModule`] fix valid npm package name note
215
392
 
216
393
  ### :bug: Fixes
217
394
 
218
- * **specifiers:** `toRelativeSpecifier` logic ([#27](https://github.com/flex-development/mlly/issues/27)) ([a34d974](https://github.com/flex-development/mlly/commit/a34d97448135da0e0f46654b720ba60fc84abcea))
395
+ - [[`4d9fdaf`](https://github.com/flex-development/mlly/commit/4d9fdaff221109a6fd90fc046fdcf61296bccbd0)] **utils:** [`toBareSpecifier`] specifier conversion
396
+
397
+ ### :house_with_garden: Housekeeping
398
+
399
+ - [[`7e6d3b8`](https://github.com/flex-development/mlly/commit/7e6d3b8cfb0915cb0ed4dfd37f4d21c3da926545)] **tests:** remove `serve.json`
400
+
401
+ ## [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)
402
+
403
+ ### :package: Build
404
+
405
+ - [[`1c2f10d`](https://github.com/flex-development/mlly/commit/1c2f10d50b305a6beaab9fd526da2a008dd753fc)] ensure resolved source map url is absolute
406
+ - [[`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))
407
+ - [[`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))
408
+ - [[`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))
409
+ - [[`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))
410
+ - [[`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))
411
+ - [[`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))
412
+ - [[`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
413
+
414
+ ## [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)
415
+
416
+ ### ⚠ BREAKING CHANGES
417
+
418
+ - **nvm:** require `>=16.20.0`
419
+
420
+ ### :package: Build
421
+
422
+ - [[`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))
423
+ - [[`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))
424
+ - [[`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))
425
+ - [[`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))
426
+ - [[`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))
427
+ - [[`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))
428
+ - [[`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))
429
+ - [[`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))
430
+ - [[`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))
431
+ - [[`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))
432
+ - [[`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))
433
+ - [[`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))
434
+ - [[`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))
435
+ - [[`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
436
+ - [[`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))
437
+ - [[`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))
438
+ - [[`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))
439
+ - [[`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))
440
+ - [[`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))
441
+ - [[`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))
442
+ - [[`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))
443
+ - [[`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))
444
+ - [[`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))
445
+ - [[`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))
446
+ - [[`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))
447
+ - [[`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))
448
+ - [[`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))
449
+ - [[`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))
450
+ - [[`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))
451
+ - [[`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))
452
+ - [[`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))
453
+ - [[`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))
454
+ - [[`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))
455
+ - [[`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))
456
+ - [[`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))
457
+ - [[`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))
458
+ - [[`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))
459
+ - [[`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))
460
+ - [[`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))
461
+ - [[`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))
462
+ - [[`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))
463
+ - [[`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))
464
+ - [[`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))
465
+ - [[`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))
466
+ - [[`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))
467
+ - [[`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))
468
+ - [[`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))
469
+ - [[`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))
470
+ - [[`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))
471
+ - [[`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))
472
+ - [[`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))
473
+ - [[`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))
474
+ - [[`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))
475
+ - [[`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))
476
+ - [[`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))
477
+ - [[`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))
478
+ - [[`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))
479
+ - [[`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))
480
+ - [[`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))
481
+ - [[`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))
482
+ - [[`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))
483
+ - [[`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))
484
+ - [[`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))
485
+ - [[`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))
486
+ - [[`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))
487
+ - [[`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))
488
+ - [[`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))
489
+ - [[`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))
490
+ - [[`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))
491
+ - [[`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))
492
+ - [[`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))
493
+ - [[`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))
494
+ - [[`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))
495
+ - [[`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))
496
+ - [[`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))
497
+ - [[`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))
498
+ - [[`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))
499
+ - [[`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))
500
+ - [[`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))
501
+ - [[`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))
502
+ - [[`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))
503
+ - [[`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))
504
+ - [[`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))
505
+ - [[`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))
506
+ - [[`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))
507
+ - [[`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))
508
+ - [[`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))
509
+ - [[`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))
510
+ - [[`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))
511
+ - [[`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))
512
+ - [[`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))
513
+ - [[`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))
514
+ - [[`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))
515
+ - [[`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))
516
+ - [[`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))
517
+ - [[`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))
518
+ - [[`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))
519
+ - [[`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))
520
+ - [[`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))
521
+ - [[`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))
522
+ - [[`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))
523
+ - [[`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))
524
+ - [[`a819ecf`](https://github.com/flex-development/mlly/commit/a819ecf23b476519ec59fb81ccbd7da4206e28b2)] **deps-dev:** downgrade vue-tsc from 1.8.8 to 1.7.8
525
+ - [[`08b2b30`](https://github.com/flex-development/mlly/commit/08b2b3045e01502f6678a7827f264c68ff68233f)] **deps:** bump @flex-development/errnode from 1.5.0 to 2.0.0
526
+ - [[`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))
527
+ - [[`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))
528
+ - [[`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))
529
+ - [[`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))
530
+ - [[`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))
531
+ - [[`52c6b4a`](https://github.com/flex-development/mlly/commit/52c6b4ab35e6f7eab281dbb6b2580e2e39042e83)] **nvm:** require `>=16.20.0`
532
+
533
+ ### :robot: Continuous Integration
534
+
535
+ - [[`aa7ce00`](https://github.com/flex-development/mlly/commit/aa7ce00bb85ec023de450e712bab07b1865f5644)] [[@dependabot](https://github.com/dependabot)] configure grouped version updates
536
+ - [[`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))
537
+ - [[`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))
538
+ - [[`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))
539
+ - [[`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))
540
+ - [[`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))
541
+ - [[`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))
542
+ - [[`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))
543
+ - [[`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))
544
+ - [[`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))
545
+ - [[`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))
546
+ - [[`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))
547
+ - [[`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))
548
+ - [[`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))
549
+ - [[`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))
550
+ - [[`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))
551
+ - [[`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))
552
+ - [[`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))
553
+ - [[`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))
554
+ - [[`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))
555
+ - [[`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))
556
+ - [[`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))
557
+ - [[`bc1bc20`](https://github.com/flex-development/mlly/commit/bc1bc2025b4d4ddb601ac10d604428f269d792d8)] **workflows:** [`approve-pr`] remove `dependabot-metadata` condition
558
+ - [[`ed64d9c`](https://github.com/flex-development/mlly/commit/ed64d9c3b2689e6bf379043254e9178e78029183)] **workflows:** [`ci`] add `github.run_number` check to `commitlint` job
559
+ - [[`c071fd9`](https://github.com/flex-development/mlly/commit/c071fd9710cbacfa2815f9dadba4c616144a6466)] **workflows:** [`ci`] add `lcov.info` file check to `codecov` job
560
+ - [[`586421d`](https://github.com/flex-development/mlly/commit/586421d962bdb69c78895c04315ae069e9a3b883)] **workflows:** [`ci`] add `pkg-size-report`
561
+ - [[`676186b`](https://github.com/flex-development/mlly/commit/676186bd1426cb67ab9eefd61198a5f127cb4c79)] **workflows:** [`ci`] add `pkg-size-report` step to `build` job
562
+ - [[`5277fa9`](https://github.com/flex-development/mlly/commit/5277fa9912a8e44d5b3667fb7243049d2f768005)] **workflows:** [`pkg-size-report`] add missing `yarn` step
563
+ - [[`c24c816`](https://github.com/flex-development/mlly/commit/c24c81671c18d8cd39b313d2010e5c8a5702bee6)] **workflows:** [`pkg-size-report`] allow [@dependabot](https://github.com/dependabot) pull requests
564
+ - [[`d2e67fa`](https://github.com/flex-development/mlly/commit/d2e67faf1dbc8c7e6540191f55e6585b842b06af)] **workflows:** [`pkg-size-report`] fix `build-command`
565
+ - [[`303eb54`](https://github.com/flex-development/mlly/commit/303eb54baff7745e5c93b778b7fa754e8220f6ce)] **workflows:** [`pkg-size-report`] set report mode to `head-only`
566
+ - [[`94dc35e`](https://github.com/flex-development/mlly/commit/94dc35e5a5ec58c89f6aa95c29454505fe8efc19)] **workflows:** add `cache-cleanup`
567
+ - [[`0308409`](https://github.com/flex-development/mlly/commit/03084099723cb7f3b1e015f134e3ce40bb34e29b)] **workflows:** add `infrastructure`
568
+ - [[`c29f74c`](https://github.com/flex-development/mlly/commit/c29f74c825e92592e29073e8e98a8b5896325f00)] **workflows:** remove `pkg-size-report`
569
+
570
+ ### :pencil: Documentation
219
571
 
572
+ - [[`7c64268`](https://github.com/flex-development/mlly/commit/7c64268eb92a0409c4c26f6214ddf20ccb6fd80d)] [site] configure vercel web analytics
573
+ - [[`d56e322`](https://github.com/flex-development/mlly/commit/d56e322a6ca8efbff1ce71d39babd5a394d63f77)] [site] remove duplicate algolia preconnect link
574
+ - [[`d047114`](https://github.com/flex-development/mlly/commit/d0471140af56d3cd5e47c81444347cc05dbaa5f7)] [site] use `themeConfig.search`
575
+ - [[`aab231d`](https://github.com/flex-development/mlly/commit/aab231d2742a9150b65904e5554f4a1e5230d84b)] [site] use vitepress sitemap generator
576
+ - [[`380dd8e`](https://github.com/flex-development/mlly/commit/380dd8e7c3a7abdc02a10606e9e3a7436d0c85a0)] **pkg:** set `homepage` to https://mlly.vercel.app
577
+ - [[`70fb096`](https://github.com/flex-development/mlly/commit/70fb0967de7b8d3b95af43fa4bd8db10dc5babb1)] **workflows:** update reference links
578
+
579
+ ### :sparkles: Features
580
+
581
+ - [[`920c24f`](https://github.com/flex-development/mlly/commit/920c24f876d16f25b41c459ed065efd19435131b)] **utils:** `isDirectory`, `isFile`
220
582
 
221
583
  ### :house_with_garden: Housekeeping
222
584
 
223
- * **github:** add "package manager" dropdown to bug report template ([2942a31](https://github.com/flex-development/mlly/commit/2942a312411de0a2b4113e163214ca8ef064c87b))
224
- * **github:** add label `scope:analyze` ([241ac69](https://github.com/flex-development/mlly/commit/241ac6992361ee57631779f48cc87525d4e3f220))
225
- * **github:** add label `scope:lib` ([25b2d67](https://github.com/flex-development/mlly/commit/25b2d679f9d400afdef52bd159afd477daf60077))
226
- * **github:** add label `scope:resolve` ([36159e6](https://github.com/flex-development/mlly/commit/36159e688680db513417a9d9f7ce0cf72a45695c))
227
- * **github:** add label `scope:specifiers` ([5ca8266](https://github.com/flex-development/mlly/commit/5ca8266c8c3a7f5448eadad734530837bdeae434))
228
- * **github:** add label `scope:syntax` ([54b2585](https://github.com/flex-development/mlly/commit/54b25854b8da7875087d42f79164ec73794c054f))
229
- * **github:** add label `status:triaged` ([35523e0](https://github.com/flex-development/mlly/commit/35523e06028b34b8c82f9b5ba2553fd0bd28b7e7))
585
+ - [[`cc34d88`](https://github.com/flex-development/mlly/commit/cc34d88a38f297974591e6b611b98d0926b30174)] analyze types distribution
586
+ - [[`9054ed8`](https://github.com/flex-development/mlly/commit/9054ed85a517539e8fb12df32bef6f6a63ffc54c)] eslint-plugin-import@2.28.0 prep
587
+ - [[`cbbde6e`](https://github.com/flex-development/mlly/commit/cbbde6e030e095938ddf84e9e070a3bcd50bc393)] sync config files
588
+ - [[`037e2c0`](https://github.com/flex-development/mlly/commit/037e2c0f31df5c39ef8eeeb5e19e01eeb48726ea)] update dev and test environments
230
589
 
231
- ## [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)
590
+ ## [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)
232
591
 
592
+ ### :package: Build
593
+
594
+ - [[`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))
233
595
 
234
596
  ### :robot: Continuous Integration
235
597
 
236
- * **workflows:** [`publish`] remove stale `.npmrc` file from checkout ([da570a6](https://github.com/flex-development/mlly/commit/da570a6ce355c267ab09fd94c41c99eaef892f2e))
237
- * **workflows:** use environment files ([03f8097](https://github.com/flex-development/mlly/commit/03f8097c0213f46fc110c61265345d21b09dee76))
598
+ - [[`5c93310`](https://github.com/flex-development/mlly/commit/5c933108f98316c1092e7c90824ddccef798c685)] **workflows:** add `auto-merge`
238
599
 
239
- ## [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)
600
+ ### :bug: Fixes
601
+
602
+ - [[`29120fa`](https://github.com/flex-development/mlly/commit/29120faadeb97e3c2a711ede8b8dcbc35951279a)] **utils:** [`toBareSpecifier`] remove `[@types](https://github.com/types)/` prefix
603
+
604
+ ### :white_check_mark: Testing
605
+
606
+ - [[`7b665ee`](https://github.com/flex-development/mlly/commit/7b665eed3d02fae2109095e047c74092b30ef55a)] **ts:** cleanup base tsconfig file
240
607
 
608
+ ## [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)
609
+
610
+ ### :package: Build
611
+
612
+ - [[`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))
613
+ - [[`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))
614
+ - [[`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))
615
+ - [[`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))
616
+ - [[`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))
617
+ - [[`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))
618
+ - [[`cd84623`](https://github.com/flex-development/mlly/commit/cd84623cc613636b06d6e9351842fd8d1d699466)] **deps:** bump @flex-development/export-regex from 1.0.0 to 1.0.2
619
+ - [[`69f65f9`](https://github.com/flex-development/mlly/commit/69f65f975beaf093fed8fee88d1b753ee3df7d86)] **deps:** bump @flex-development/import-regex from 2.0.1 to 2.0.3
241
620
 
242
621
  ### :robot: Continuous Integration
243
622
 
244
- * **workflows:** [`publish`] fix registry url ([c06d3ca](https://github.com/flex-development/mlly/commit/c06d3ca72de415e507d901864afc410c9f5239b3))
623
+ - [[`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))
624
+ - [[`7d0326a`](https://github.com/flex-development/mlly/commit/7d0326a72044474e1adbc0980bc1098157263770)] **workflows:** [`ci`] add `commitlint` job
625
+ - [[`ff5905b`](https://github.com/flex-development/mlly/commit/ff5905baba1bf379a8a9093a9ec4d66470e61005)] **workflows:** [`ci`] make jobs dependant on `gitguardian`
626
+ - [[`5faf6bd`](https://github.com/flex-development/mlly/commit/5faf6bd14189cc293de4bad3f76fda1b63666918)] **workflows:** [`dependabot-auto`] ensure lockfile fix commit meets commit standards
627
+
628
+ ### :house_with_garden: Housekeeping
245
629
 
630
+ - [[`5bbf830`](https://github.com/flex-development/mlly/commit/5bbf83084f8c4c0d1e7c7c133dad96201b59e953)] sync config files
246
631
 
247
- ### :pencil: Documentation
632
+ ### :mechanical_arm: Refactors
248
633
 
249
- * fix changelog entries ([128f8f4](https://github.com/flex-development/mlly/commit/128f8f450eda1fc10ff89ac272fbe8bde870c516))
634
+ - [[`7926a01`](https://github.com/flex-development/mlly/commit/7926a010729d99d109df475068703b22e7073920)] **utils:** [`findExports`] sort statements by `start` location
250
635
 
251
- ## [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)
636
+ ## [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)
637
+
638
+ ### :package: Build
639
+
640
+ - [[`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))
641
+
642
+ ### :bug: Fixes
643
+
644
+ - [[`81b55ca`](https://github.com/flex-development/mlly/commit/81b55caa8533ad174ec009535e5a030be21e6cc1)] **ts:** ensure typechecks pass without peer deps installed
252
645
 
646
+ ## [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)
253
647
 
254
648
  ### ⚠ BREAKING CHANGES
255
649
 
256
- * **types:** remove `Ext`
257
- * **types:** `SpecifierType` -> `ModuleSpecifierType`
258
- * statements
650
+ - **utils:** [`getSource`] enforce absolute module id
651
+ - **utils:** [`getFormat`] enforce absolute module id
259
652
 
260
653
  ### :package: Build
261
654
 
262
- * **deps-dev:** add @flex-development/docast ([42b8ed2](https://github.com/flex-development/mlly/commit/42b8ed2360e8b4478202ba7db7e2b5cacae9ec90))
263
- * **deps-dev:** bump @flex-development/docast-parse to 1.0.0-alpha.4 ([9634f8d](https://github.com/flex-development/mlly/commit/9634f8d4ec4375e7d29ad709c36ce1d398293718))
264
- * **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))
265
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([ab0b8ce](https://github.com/flex-development/mlly/commit/ab0b8ced1e664a9bb6a9f4a7189d870bdf76c8c0))
266
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([bddfa7c](https://github.com/flex-development/mlly/commit/bddfa7c3f8864ab38fe35dc295ab46e472df187e))
267
- * **deps:** add @flex-development/tsconfig-types ([a7c38e5](https://github.com/flex-development/mlly/commit/a7c38e50ea583dde948078569b41e0aebde8cfbf))
268
- * **deps:** replace upath with @flex-development/pathe ([8a584d6](https://github.com/flex-development/mlly/commit/8a584d6dc2fed8c4cae491c290cf58ded9ca038e))
269
- * **docs:** [site] use flex-development/docast-parse@27c73c7c03df4d92585c538c1f8214886b1fd0a9 ([b696cf6](https://github.com/flex-development/mlly/commit/b696cf676ecb0ace14647727415a49d03092d0d5))
655
+ - [[`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))
656
+ - [[`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))
657
+ - [[`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
658
+ - [[`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
659
+ - [[`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))
660
+ - [[`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))
661
+ - [[`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))
662
+ - [[`93d7e1c`](https://github.com/flex-development/mlly/commit/93d7e1c141d492d0ea4ad40fa152ce7e0c38763e)] **deps-dev:** bump @vitest/coverage-c8 from 0.28.4 to 0.28.5
663
+ - [[`2e52ac4`](https://github.com/flex-development/mlly/commit/2e52ac405fba671168aad1143dfbc36f12b1e092)] **deps-dev:** bump @vitest/ui from 0.28.4 to 0.28.5
664
+ - [[`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))
665
+ - [[`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))
666
+ - [[`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))
667
+ - [[`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))
668
+ - [[`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))
669
+ - [[`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
670
+ - [[`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))
671
+ - [[`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))
672
+ - [[`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))
673
+ - [[`1aeb03c`](https://github.com/flex-development/mlly/commit/1aeb03c2b28e874e2677c67f77d21769f19b1048)] **deps-dev:** bump vitest from 0.28.4 to 0.28.5
674
+ - [[`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))
675
+ - [[`8a93c2b`](https://github.com/flex-development/mlly/commit/8a93c2b39e4aa402beed9ff8ccf6249d19b1ec1d)] **deps-dev:** remove `@commitlint/types`
676
+ - [[`606c796`](https://github.com/flex-development/mlly/commit/606c796b5b1ad4a30b6271e146c845338b74cd4f)] **deps:** bump @flex-development/errnode from 1.4.0 to 1.5.0
677
+ - [[`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
678
+ - [[`34be9cc`](https://github.com/flex-development/mlly/commit/34be9cccebc974ced5ff089442d025c43d0c1737)] **yarn:** bump yarn from 4.0.0-rc.34 to 4.0.0-rc.39
270
679
 
680
+ ### :robot: Continuous Integration
681
+
682
+ - [[`f42ef3e`](https://github.com/flex-development/mlly/commit/f42ef3e10bc7b2ca2d9e6301e08d3092214fa0cc)] [[@dependabot](https://github.com/dependabot)] fix private registry updates
683
+ - [[`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))
684
+ - [[`f1bd699`](https://github.com/flex-development/mlly/commit/f1bd69969a365e41f0c199b3d57439031d683b6b)] **workflows:** [`ci`] use `env.GITHUB_SHA` for codecov override commit
685
+ - [[`2fda03f`](https://github.com/flex-development/mlly/commit/2fda03f9064f0203e93723c53e9511a156d69e7c)] **workflows:** [`ci`] use `github.event.pull_request.head.sha` for codecov
686
+ - [[`437f053`](https://github.com/flex-development/mlly/commit/437f0535ad8d8701ce13a0001877d157639fa57e)] **workflows:** [`dependabot-auto`] remove `enable-auto-merge` job conditional
687
+
688
+ ### :pencil: Documentation
689
+
690
+ - [[`58b6377`](https://github.com/flex-development/mlly/commit/58b6377612b9c9454c98478de8912df67fc04d86)] organize badges
691
+
692
+ ### :sparkles: Features
693
+
694
+ - [[`a956cb1`](https://github.com/flex-development/mlly/commit/a956cb10b27f63f683a64b5028bef87170862e44)] `ParsedSubpath#target`
695
+ - [[`b8dd2d0`](https://github.com/flex-development/mlly/commit/b8dd2d03776959e374dc242b3d7189e20742f6fa)] **internal:** `invalidSegmentRegex`
696
+ - [[`045c4c6`](https://github.com/flex-development/mlly/commit/045c4c614ebf8eb213f6801f24f6759de527c796)] **internal:** `validateArraySet`
697
+ - [[`82c63b4`](https://github.com/flex-development/mlly/commit/82c63b467615c0e799c4bb9d4bd1d35c5ac2ca1e)] **internal:** `validateMap`
698
+ - [[`8f68ae8`](https://github.com/flex-development/mlly/commit/8f68ae8b300bbe507eb6a401d21d9a30cf010115)] **utils:** [`findSubpath`] support `/index`-less targets
699
+
700
+ ### :bug: Fixes
701
+
702
+ - [[`cde6441`](https://github.com/flex-development/mlly/commit/cde64411035c40e927e778158e27f673257821e8)] **internal:** [`Resolver#resolvePackageTarget`] `package.json` url for numeric property key error
703
+ - [[`779cddf`](https://github.com/flex-development/mlly/commit/779cddf91f6d4e0e04ecebab0e0c6942aeaa9286)] **ts:** ensure typechecks pass without peer deps installed
704
+ - [[`e719d34`](https://github.com/flex-development/mlly/commit/e719d34b36cf7c68ed240eee2e0a6f55194e349a)] **utils:** [`findRequires`] array item extraction
705
+ - [[`cffba6b`](https://github.com/flex-development/mlly/commit/cffba6b113cb85430d54a131a742c03bedb62d5b)] **utils:** [`findRequires`] object value extraction
706
+ - [[`9af669b`](https://github.com/flex-development/mlly/commit/9af669b02a1153381d3382d74ff79fbc8e41525d)] **utils:** [`findRequires`] parameter extraction
707
+ - [[`beeadeb`](https://github.com/flex-development/mlly/commit/beeadebbc959bc16ef7eded8a14a450616297640)] **utils:** [`resolveModule`] `[@types](https://github.com/types)` resolution
708
+
709
+ ### :house_with_garden: Housekeeping
710
+
711
+ - [[`395e355`](https://github.com/flex-development/mlly/commit/395e355d17c7b977020612443e93dd49b44c4b1f)] move changelog config to `config` directory
712
+ - [[`8d8ccef`](https://github.com/flex-development/mlly/commit/8d8ccefd878b68773bdbaaece9cd738e131208b5)] sync updated config files
713
+ - [[`f85bf43`](https://github.com/flex-development/mlly/commit/f85bf43db9eb8c26d36c77e8804d8f1c8d023736)] update config files
714
+ - [[`e12e977`](https://github.com/flex-development/mlly/commit/e12e97726152df1249b6cf3637949d573105c166)] **github:** merge `pre-push` workflow into `commit-msg` workflow
715
+
716
+ ### :mechanical_arm: Refactors
717
+
718
+ - [[`a7c2682`](https://github.com/flex-development/mlly/commit/a7c26827b747027d2b82be0361a42e46c17277c1)] **utils:** schema validation
719
+ - [[`41e0901`](https://github.com/flex-development/mlly/commit/41e09016cb3cfdff9a9afa900802969a6e52fb3a)] **utils:** [`getFormat`] enforce absolute module id
720
+ - [[`b9180cc`](https://github.com/flex-development/mlly/commit/b9180cc0ac378d0eedc1724eb7115e7bab63ed08)] **utils:** [`getSource`] enforce absolute module id
721
+
722
+ ### :white_check_mark: Testing
723
+
724
+ - [[`187384b`](https://github.com/flex-development/mlly/commit/187384b197fd91a723c9feccc9baa3c206c28008)] stablize package `exports` / `imports` tests
725
+ - [[`3621201`](https://github.com/flex-development/mlly/commit/3621201258c3f10c407546741c347afb427d523d)] **utils:** [`toBareSpecifier`] stabilize tests
726
+
727
+ ## [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)
728
+
729
+ ### :package: Build
730
+
731
+ - [[`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))
732
+ - [[`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))
733
+ - [[`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))
271
734
 
272
735
  ### :robot: Continuous Integration
273
736
 
274
- * configure private package registry for [@dependabot](https://github.com/dependabot) ([e188761](https://github.com/flex-development/mlly/commit/e1887618c8a2c5fe9cb69babd15498b618e64e66))
275
- * fix [@dependabot](https://github.com/dependabot) npm package-ecosystem x yarn integration ([126dfab](https://github.com/flex-development/mlly/commit/126dfab8d937f3526ea109acc91565accf3b2653))
276
- * **deps:** bump actions/add-to-project from 0.3.0 to 0.4.0 ([b5e8279](https://github.com/flex-development/mlly/commit/b5e8279269f75cee5076d86b7c34578b74f306df))
277
- * **deps:** bump actions/checkout from 3.1.0 to 3.2.0 ([0637831](https://github.com/flex-development/mlly/commit/063783140fb475f29f821408837389219c471625))
278
- * **deps:** bump dessant/lock-threads from 3.0.0 to 4.0.0 ([ba6063c](https://github.com/flex-development/mlly/commit/ba6063cb88556d106fb01c3948ba03d8f4848a47))
279
- * **deps:** bump flex-development/dist-tag-action from 1.1.1 to 1.1.2 ([e19b975](https://github.com/flex-development/mlly/commit/e19b97514d655b2c89e7fa4b09aa3ea93a0f8415))
280
- * **workflows:** [`add-to-project`] add items from repo admin account ([e271e8a](https://github.com/flex-development/mlly/commit/e271e8afe22244e3d270aa02a833ccb4b077f296))
281
- * **workflows:** [`ci`] add node.js matrix ([28a0fa6](https://github.com/flex-development/mlly/commit/28a0fa6d809c94af458c6d5c9b661bb9d564b70a))
282
- * **workflows:** [`ci`] archive production artifacts ([701caea](https://github.com/flex-development/mlly/commit/701caea0edc1e2d36d7a1323a88e1e714e88743d))
283
- * **workflows:** [`ci`] let [@dependabot](https://github.com/dependabot) modify lockfile ([74ec538](https://github.com/flex-development/mlly/commit/74ec5381fd5339d0d29b1a5529e48d8b86fc2419))
284
- * **workflows:** [`ci`] re-add node14 to matrix ([44801d8](https://github.com/flex-development/mlly/commit/44801d803774588c46299050ff858027605a2079))
285
- * **workflows:** [`ci`] update codecov environment ([32518bd](https://github.com/flex-development/mlly/commit/32518bdd2650e01bc92dd6e212ef9420f239ac9f))
286
- * **workflows:** [`ci`] update node setup ([b326f5d](https://github.com/flex-development/mlly/commit/b326f5d35c968fd4f1145a50a769e8d645190941))
287
- * **workflows:** [`ci`] upload coverage reports to codecov ([a24776b](https://github.com/flex-development/mlly/commit/a24776ba0c3aad87e36881f5558eba58f5f7a866))
288
- * **workflows:** [`publish`] cleanup registry scope ([ba5b355](https://github.com/flex-development/mlly/commit/ba5b355f30e62cb863abd35eddaa28b5b0885f56))
289
- * **workflows:** [`publish`] print contents of `.npmrc` file ([2c16ff6](https://github.com/flex-development/mlly/commit/2c16ff62786d8ecc1f403d364af4d6db372e5a75))
290
- * **workflows:** [`publish`] use node version file ([80d68c1](https://github.com/flex-development/mlly/commit/80d68c13aac5cdb0005c236d56bb8db90bd831a0))
291
- * **workflows:** [`release`] publish releases from repo admin account ([bbda19c](https://github.com/flex-development/mlly/commit/bbda19ca37155411a0a4e9bf4e734a7b7ad959c8))
737
+ - [[`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))
738
+
739
+ ### :bug: Fixes
292
740
 
741
+ - [[`2be2adb`](https://github.com/flex-development/mlly/commit/2be2adbfb1bde578898cd4fa4707e29c90b43254)] **utils:** [`fillModules`] `dot.case` specifier support
293
742
 
294
- ### :pencil: Documentation
743
+ ## [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)
295
744
 
296
- * add "contributor covenant code of conduct" ([8f1285b](https://github.com/flex-development/mlly/commit/8f1285b12b7c74401c962d614e2c79a6a0c89585))
745
+ ### :package: Build
297
746
 
747
+ - [[`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))
748
+ - [[`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))
749
+ - [[`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))
750
+ - [[`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))
751
+ - [[`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))
752
+ - [[`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))
753
+ - [[`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))
754
+ - [[`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))
755
+ - [[`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))
756
+ - [[`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))
757
+ - [[`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))
758
+ - [[`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))
759
+ - [[`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))
760
+ - [[`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))
761
+ - [[`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))
762
+ - [[`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))
763
+ - [[`ada4cfb`](https://github.com/flex-development/mlly/commit/ada4cfbc4ef52fec3038dbd9c98ead0f37afa565)] **pkg:** include `src` files in distribution
764
+
765
+ ### :robot: Continuous Integration
766
+
767
+ - [[`e4d44f1`](https://github.com/flex-development/mlly/commit/e4d44f1b4d728f2511b1a68936045a4fc700ddca)] **deps:** bump GitGuardian/ggshield-action from 1.1.0 to master
768
+
769
+ ### :pencil: Documentation
770
+
771
+ - [[`49b83b8`](https://github.com/flex-development/mlly/commit/49b83b8922738abdbcd3bff3e4500de0b996eb9d)] **loader:** fix jsdoc annotations
772
+ - [[`9e82d4e`](https://github.com/flex-development/mlly/commit/9e82d4e76afeb29ac9b9187628296698a26b361d)] **loader:** update descriptions and reference links
298
773
 
299
774
  ### :bug: Fixes
300
775
 
301
- * **install:** [git] make `postinstall` script work with git install ([1a70af2](https://github.com/flex-development/mlly/commit/1a70af2bed20cbb6667ca0dd3e8d2e7d6a38da4b))
776
+ - [[`a9221ff`](https://github.com/flex-development/mlly/commit/a9221ffb22bbcac90b22180a9c9b9147464029b8)] **utils:** [`fillModules`] specifier replacement
777
+ - [[`e60a9f8`](https://github.com/flex-development/mlly/commit/e60a9f82ab0cbe5e1c40be01cc7b47719823b7af)] **utils:** [`toBareSpecifier`] package directory regex
778
+
779
+ ## [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)
302
780
 
781
+ ### :package: Build
782
+
783
+ - [[`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))
784
+ - [[`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))
785
+ - [[`64c4452`](https://github.com/flex-development/mlly/commit/64c44523dd60f804d0e60f7f6cf4668084891575)] **deps-dev:** bump @types/node from 16.18.11 to 18.11.18
786
+ - [[`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))
787
+ - [[`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))
788
+ - [[`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))
789
+ - [[`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))
790
+ - [[`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))
791
+ - [[`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))
792
+ - [[`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))
793
+ - [[`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))
794
+
795
+ ### :robot: Continuous Integration
796
+
797
+ - [[`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))
798
+ - [[`d74b1f7`](https://github.com/flex-development/mlly/commit/d74b1f7851c46e763a6e70a790f7b0f6ec5425d8)] **workflows:** [`ci`] add `gitguardian` job
799
+
800
+ ### :bug: Fixes
801
+
802
+ - [[`26523ef`](https://github.com/flex-development/mlly/commit/26523ef7e8a2398978badc6f4fffccfeec806575)] **resolve:** unhoisted package resolution
303
803
 
304
804
  ### :house_with_garden: Housekeeping
305
805
 
306
- * project qa ([4acf639](https://github.com/flex-development/mlly/commit/4acf639b6b28c20a782e39d6f4a8c4b2adb0ae20))
307
- * project qa ([3120990](https://github.com/flex-development/mlly/commit/312099035d0a90f044688e6619ec84dd6049d8bb))
308
- * **github:** add commit scope `install` ([065dbbb](https://github.com/flex-development/mlly/commit/065dbbbfd271e576d5031fcd155e91007cb95f62))
309
- * **github:** add label `scope:install` ([3ddc9c2](https://github.com/flex-development/mlly/commit/3ddc9c29e92e0e254f48f87ce7052196b79c9cc1))
310
- * **internal:** remove barrel file ([e0ba89c](https://github.com/flex-development/mlly/commit/e0ba89cceee97e99111dd4ab7c63601b593a24d5))
311
- * **pkg:** add keywords `ecmascript-modules` and `esmodules` ([e994f4b](https://github.com/flex-development/mlly/commit/e994f4bb182f0861f3c1c3c68c1a9d0a9a3d6631))
312
- * **tests:** local codecov integration ([bdbae1d](https://github.com/flex-development/mlly/commit/bdbae1d44cc60409a3dabb23acae79f8180b187a))
313
- * **yarn:** bump yarn from 4.0.0-rc.14 to 4.0.0-rc.34 ([045ee62](https://github.com/flex-development/mlly/commit/045ee6252342027657771d7bbdab6748fbb9a36a))
806
+ - [[`143a34a`](https://github.com/flex-development/mlly/commit/143a34ad2141ddec495bd45bc92501be7642a949)] [eslint] update rules for test files
807
+ - [[`5c75139`](https://github.com/flex-development/mlly/commit/5c7513977985c0e4422e895d65512f37af451f64)] **github:** cleanup reference link in `.github/funding.yml`
808
+ - [[`155f6d8`](https://github.com/flex-development/mlly/commit/155f6d87f5f623121b40398e87913d89ce4266f9)] **github:** remove `git@bitbucket.org` alias from sample `.gitconfig`
809
+ - [[`e54635a`](https://github.com/flex-development/mlly/commit/e54635afdbaf846364d28cca86162bcc3c17e7a0)] **github:** update `.env` rule in `.gitignore`
810
+
811
+ ## [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)
314
812
 
813
+ ### :package: Build
315
814
 
316
- ### :zap: Refactors
815
+ - [[`9464965`](https://github.com/flex-development/mlly/commit/9464965223415264301b2370e56f103f7202399a)] **deps-dev:** bump eslint from 8.32.0 to 8.33.0
816
+ - [[`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))
817
+ - [[`e899dd5`](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8)] **deps-dev:** cleanup changelog deps
818
+ - [[`c39f63c`](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd)] **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0
819
+ - [[`4442dbb`](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308)] **nvm:** bump node from 16 to 19
820
+ - [[`f0a512f`](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc)] **ts:** update file exclusion list
317
821
 
318
- * statements ([731bd2a](https://github.com/flex-development/mlly/commit/731bd2a770671ad771ff38e8b12fce513034db27))
319
- * **ts:** enforce `exactOptionalPropertyTypes` ([f3109b4](https://github.com/flex-development/mlly/commit/f3109b4cb6b33528ac2655e9c90eb86a2512b00d))
320
- * **types:** `SpecifierType` -> `ModuleSpecifierType` ([263e98b](https://github.com/flex-development/mlly/commit/263e98b4e8189315157dfb4940df76e61a661922))
321
- * **types:** remove `Ext` ([303de20](https://github.com/flex-development/mlly/commit/303de200e3eddf4c6c33fd41db6f6f0ad84fe8ec))
822
+ ### :robot: Continuous Integration
322
823
 
824
+ - [[`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))
825
+ - [[`c909436`](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c)] **workflows:** [`ci`] refactor `metadata` job conditional
323
826
 
324
- ### :white_check_mark: Testing
827
+ ### :house_with_garden: Housekeeping
325
828
 
326
- * **ts:** add remaining type tests ([7a5430f](https://github.com/flex-development/mlly/commit/7a5430f4d95392b9fa6637d09765dcdd79d275b4))
829
+ - [[`8b57984`](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46)] **github:** add commit scope `loader`
830
+ - [[`905e7d1`](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf)] **github:** add commit scope `nvm`
831
+ - [[`7a111d0`](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359)] **github:** add commit scope `spelling`
832
+ - [[`3ade2df`](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20)] **spelling:** add "infile" to dictionary
833
+ - [[`ccd9bbe`](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888)] **tests:** [mocks] remove `@flex-development/pathe`
834
+ - [[`41a9097`](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827)] **vscode:** add todo tree settings to `settings.json`
835
+ - [[`6998a8c`](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1)] **vscode:** remove stale `volar` settings
836
+ - [[`8e519fd`](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b)] **yarn:** disable transparent workspaces
327
837
 
328
- ## [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)
838
+ ## [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)
839
+
840
+ ### ⚠ BREAKING CHANGES
329
841
 
842
+ - **types:** `MIMEType` -> `MimeType`
843
+ - **exports:** remove subpath `"./lib/*"`
844
+
845
+ ### :package: Build
846
+
847
+ - [[`8e05a0d`](https://github.com/flex-development/mlly/commit/8e05a0d70ba6bc972947a04bcceb3dd7304bd768)] output `.d.mts` and `.mjs` files separately
848
+ - [[`9f70d1a`](https://github.com/flex-development/mlly/commit/9f70d1aa397ec52738584c08d209472340d8f628)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
849
+ - [[`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))
850
+ - [[`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))
851
+ - [[`f8b753b`](https://github.com/flex-development/mlly/commit/f8b753b086be2bbb3506e21e7ecd86d5c94fdc85)] **deps-dev:** bump typescript from 4.9.4 to 5.0.0-dev.20230102
852
+ - [[`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))
853
+ - [[`5ccce0b`](https://github.com/flex-development/mlly/commit/5ccce0bc4f06871594ede77238db38c11917b0fd)] **deps-dev:** remove vitest patch
854
+ - [[`67899e3`](https://github.com/flex-development/mlly/commit/67899e3a632bd048f5ec90ce2732bf87b57f873b)] **deps-peer:** add `@types/node>=14.17.0`
855
+ - [[`c95b3c8`](https://github.com/flex-development/mlly/commit/c95b3c8a8343474840eab1afefb1c0e57a2a3d90)] **deps:** bump @flex-development/errnode from 1.2.0 to 1.3.0
856
+ - [[`e868cae`](https://github.com/flex-development/mlly/commit/e868cae9130d68105b35d45e7c750bbf26f824ed)] **deps:** bump @flex-development/import-regex from 2.0.0 to 2.0.1
857
+ - [[`8954b4a`](https://github.com/flex-development/mlly/commit/8954b4aed63e0523964faf1b85b9d9ac07c338bd)] **deps:** bump @flex-development/pathe from 1.0.1 to 1.0.2
858
+ - [[`3910fcf`](https://github.com/flex-development/mlly/commit/3910fcfb8e778cd5dd0af5a3b355a93378d5e2b8)] **deps:** bump @flex-development/pathe from 1.0.2 to 1.0.3
859
+ - [[`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
860
+ - [[`d748039`](https://github.com/flex-development/mlly/commit/d74803951eaf1b71d1d3ff3680b52adf63861b8f)] **exports:** remove subpath `"./lib/*"`
330
861
 
331
862
  ### :robot: Continuous Integration
332
863
 
333
- * **workflows:** fix production docs deployment ([511fb53](https://github.com/flex-development/mlly/commit/511fb53ae423fe6d77b0447427affb0a1c0e2802))
864
+ - [[`d500b0a`](https://github.com/flex-development/mlly/commit/d500b0ac3764fe27c7e9fe2218edc723f562021f)] [[@dependabot](https://github.com/dependabot)] update ignore list for npm ecosystem
865
+ - [[`7781b0f`](https://github.com/flex-development/mlly/commit/7781b0f5203e7f625947d78fb85f511a4dc8fa05)] **deps:** bump actions/cache from 3.2.2 to 3.2.3
866
+ - [[`e8719e2`](https://github.com/flex-development/mlly/commit/e8719e2b8c3e4631193614b46f99c0fe0f918f67)] **deps:** bump actions/checkout from 3.2.0 to 3.3.0
867
+ - [[`b36ee40`](https://github.com/flex-development/mlly/commit/b36ee40e2ef3cd7050fe712a7cdb89ac0701d063)] **deps:** bump actions/setup-node from 3.5.1 to 3.6.0
868
+ - [[`51db5a6`](https://github.com/flex-development/mlly/commit/51db5a694c9d1aadc17b9eda4cd06f3f5e93077a)] **deps:** bump actions/upload-artifact from 3.1.1 to 3.1.2
869
+ - [[`47f3668`](https://github.com/flex-development/mlly/commit/47f3668649292627bb50d82412789ab3bf036f92)] **deps:** bump dependabot/fetch-metadata from 1.3.5 to 1.3.6
870
+ - [[`06d8846`](https://github.com/flex-development/mlly/commit/06d8846efdb681da4b2a2ce6c83df663f266b027)] **workflows:** [`add-to-project`] run workflow when pr is synchronized
871
+ - [[`e130bed`](https://github.com/flex-development/mlly/commit/e130bedeab8dd640b1a8cf6debdb8e6e1f92cbfb)] **workflows:** [`approve-pr`] add debug step
872
+ - [[`8afe058`](https://github.com/flex-development/mlly/commit/8afe0581fb8d61bf21faa1b03b638aad84c8ff27)] **workflows:** [`approve-pr`] refactor approval step conditional
873
+ - [[`8e9f672`](https://github.com/flex-development/mlly/commit/8e9f67249c1e704c3e7aa8f31297170b0b8a3346)] **workflows:** [`ci`] add `docs` job
874
+ - [[`659629c`](https://github.com/flex-development/mlly/commit/659629cc3b477ecb454914bc82e67080ad171515)] **workflows:** [`ci`] add typescript matrix
875
+ - [[`825142e`](https://github.com/flex-development/mlly/commit/825142ecd92688ce01ea0d0ee0b6a662dfa29f18)] **workflows:** [`ci`] make typescript matrix dynamic
876
+ - [[`4e9c1ca`](https://github.com/flex-development/mlly/commit/4e9c1cab80c2e7a8909742891eba5cd22b564be4)] **workflows:** [`ci`] skip workflow run for [@dependabot](https://github.com/dependabot) on `push`
877
+ - [[`70e6ee2`](https://github.com/flex-development/mlly/commit/70e6ee20ffd7be96f4c98344d35b627f3a4fc2ec)] **workflows:** [`ci`] split ci job into multiple jobs
878
+ - [[`635adcd`](https://github.com/flex-development/mlly/commit/635adcd3269b2e9ae48b3eb801376ffe5c5458f6)] **workflows:** [`ci`] update codecov config
879
+ - [[`a520d77`](https://github.com/flex-development/mlly/commit/a520d778317f94800e2b08d622f045b12aa71d38)] **workflows:** [`dependabot-auto`] sign lockfile fix commit
880
+ - [[`9d5569d`](https://github.com/flex-development/mlly/commit/9d5569d2dabdb1c0d9f8aa652743fe7e7888a4c3)] **workflows:** [`integrity`] update `pull_request` event activity types
881
+ - [[`8bcc613`](https://github.com/flex-development/mlly/commit/8bcc613c2b207efffa9964b07c15ffc76a786a5a)] **workflows:** [`typescript-canary`] print typescript version
882
+ - [[`22feb88`](https://github.com/flex-development/mlly/commit/22feb88b8d1784a3acea5be91f814c8d7ece9b50)] **workflows:** [`typescript-canary`] run workflow daily
883
+ - [[`87d8a0d`](https://github.com/flex-development/mlly/commit/87d8a0d46632b95ae0bfecd08659f91a78a8407f)] **workflows:** add `typescript-canary`
884
+ - [[`c021970`](https://github.com/flex-development/mlly/commit/c021970fa53907c419897aa79f8028bd64d29fd5)] **yarn:** fix typescript matrix testing
334
885
 
335
- ## 1.0.0-alpha.1 (2022-11-06)
886
+ ### :pencil: Documentation
887
+
888
+ - [[`11682d3`](https://github.com/flex-development/mlly/commit/11682d3aa348e5d2cfc674e2ca8f17e4d7929ae5)] [site] add `/api/enums`
889
+ - [[`0915c3f`](https://github.com/flex-development/mlly/commit/0915c3f6367e263fee2212ac83b4daa57d1b49c0)] [site] fix "params" table rendering
890
+ - [[`1bc5801`](https://github.com/flex-development/mlly/commit/1bc5801df3a0d8e19186d99219b5cd550ad4f989)] [site] fix "throws" description rendering
891
+ - [[`e0e2b2f`](https://github.com/flex-development/mlly/commit/e0e2b2f6e90a6ebd277b9ad4d1cddf5da57fc0b0)] [site] fix `[@link](https://github.com/link)` and `[@linkcode](https://github.com/linkcode)` tag replacements
892
+ - [[`2dcb01b`](https://github.com/flex-development/mlly/commit/2dcb01bd3309363b28587da5e752d55d019da6b1)] [site] show title-only "throws" sections
893
+ - [[`c799a80`](https://github.com/flex-development/mlly/commit/c799a809a88d1c82dd6b24c3bb925db4ad81e89f)] [site] update homepage
894
+ - [[`89f407c`](https://github.com/flex-development/mlly/commit/89f407cb81b32969bf87b9f18da635438bab7943)] [site] update vercel install command
895
+ - [[`7479aa8`](https://github.com/flex-development/mlly/commit/7479aa8df76d17d91d082e55bedbabdaf189be10)] **tests:** organize file overviews
896
+ - [[`ae357e8`](https://github.com/flex-development/mlly/commit/ae357e8cd949db0ffbb228b34c29446be277e043)] **utils:** [`resolveModule`] other differences between node.js
897
+
898
+ ### :sparkles: Features
899
+
900
+ - [[`f4ab669`](https://github.com/flex-development/mlly/commit/f4ab6691df8f102d5dadba755ccd1dc2f66df16b)] **enums:** `AssertType`
901
+ - [[`bd79b6a`](https://github.com/flex-development/mlly/commit/bd79b6a059918f83b88a2ebe6789e0d68fbcb7ca)] **enums:** `Format`
902
+ - [[`077a6ab`](https://github.com/flex-development/mlly/commit/077a6abd2676fed01e3aa46bafeefd22d2b43ce2)] **enums:** `SpecifierKind`
903
+ - [[`ffb0481`](https://github.com/flex-development/mlly/commit/ffb04816e0788b5802a1880ace3b53fa9d90c10a)] **interfaces:** `FillModuleOptions`
904
+ - [[`b5fd706`](https://github.com/flex-development/mlly/commit/b5fd7067575007c00f85e17fbe9c4404d21ab941)] **interfaces:** `FindSubpathOptions`
905
+ - [[`0e7e861`](https://github.com/flex-development/mlly/commit/0e7e861770b93520967801951bdea5654f4d9922)] **interfaces:** `GetFormatOptions`
906
+ - [[`dae9081`](https://github.com/flex-development/mlly/commit/dae9081166c2af8710faef2b737d45420dd05ce4)] **interfaces:** `GetSourceOptions`
907
+ - [[`7a51c62`](https://github.com/flex-development/mlly/commit/7a51c62d68240025402a490b94ab44f14deb2259)] **interfaces:** `ImportAssertions`
908
+ - [[`52c16ad`](https://github.com/flex-development/mlly/commit/52c16ad141d1956f53d93f057254d2438ce08492)] **interfaces:** `PackageScope`
909
+ - [[`529b3c5`](https://github.com/flex-development/mlly/commit/529b3c5093f85b03351dbdb95dbe3f9277a884fb)] **interfaces:** `ParsedDataUrl`
910
+ - [[`194b14e`](https://github.com/flex-development/mlly/commit/194b14ef0fc047190980c3b92f48b9e5c53832fb)] **interfaces:** `ParsedModuleId`
911
+ - [[`7bc8031`](https://github.com/flex-development/mlly/commit/7bc803152d8b57116d5fa2fdaa67096e09a13f64)] **interfaces:** `ParsedSubpath`
912
+ - [[`97ee265`](https://github.com/flex-development/mlly/commit/97ee26526c89e5a42d7a64431a4a3d49127414df)] **interfaces:** `ParseModuleIdOptions`
913
+ - [[`f5150fd`](https://github.com/flex-development/mlly/commit/f5150fd322b3b96e919756d4e0a4aa0143a0ef58)] **interfaces:** `ParseSubpathOptions`
914
+ - [[`db39187`](https://github.com/flex-development/mlly/commit/db39187d5883890fafcf1b3a9827c2ca6811e477)] **interfaces:** `Statement#specifier_kind`
915
+ - [[`22ff22f`](https://github.com/flex-development/mlly/commit/22ff22f48113b9c3570ad5b982a300fe3b079734)] **internal:** `ENCODED_SEP_REGEX`
916
+ - [[`f00836b`](https://github.com/flex-development/mlly/commit/f00836b8a1d6ef94917ea0b39884585b1a29de31)] **internal:** `escapeRegExp`
917
+ - [[`a442b8d`](https://github.com/flex-development/mlly/commit/a442b8d3a4fccde4814a6437f9cfaf1a3e9797e4)] **internal:** `FORMAT_TYPE_MAP`
918
+ - [[`be30ba7`](https://github.com/flex-development/mlly/commit/be30ba71f28f1bd677ffc251d3c578e2ffa37c62)] **internal:** `getSpecifierKind`
919
+ - [[`f9f5f37`](https://github.com/flex-development/mlly/commit/f9f5f37d2703e6b2dd1d7469a5ffa92a01cba308)] **internal:** `getSubpaths`
920
+ - [[`6f1b8be`](https://github.com/flex-development/mlly/commit/6f1b8be5ea341c279c57176d1af8eb9effca0c7a)] **internal:** `INTERNAL_SPECIFIER_REGEX`
921
+ - [[`c4793a0`](https://github.com/flex-development/mlly/commit/c4793a0f815aefd13f0f0fc20cab32d8dfd42dcc)] **internal:** `isArrayIndex`
922
+ - [[`ec91d08`](https://github.com/flex-development/mlly/commit/ec91d08a8c4418a3c510dbc55e07d59293670bc0)] **internal:** `isDirectory`
923
+ - [[`d06b9ac`](https://github.com/flex-development/mlly/commit/d06b9acae46eada86fd866b09c316d61d04ca69d)] **internal:** `isFile`
924
+ - [[`e01911a`](https://github.com/flex-development/mlly/commit/e01911af8417177b24bd9d42a2c05d1eb70ea3cc)] **internal:** `isFunction`
925
+ - [[`3f43f95`](https://github.com/flex-development/mlly/commit/3f43f950321006997853231a5054e878d375fdd1)] **internal:** `PACKAGE_NAME_REGEX`
926
+ - [[`375f356`](https://github.com/flex-development/mlly/commit/375f356811b2f3537436000d23b0414aa59164d4)] **internal:** `PACKAGE_PATH_REGEX`
927
+ - [[`4c4f900`](https://github.com/flex-development/mlly/commit/4c4f900d918c01f05ff69f9d998c0d8510530d41)] **internal:** `Resolver`
928
+ - [[`76166af`](https://github.com/flex-development/mlly/commit/76166af9edb580d7271f2a60c3b052767c4b5e54)] **internal:** `validateBoolean`
929
+ - [[`c961376`](https://github.com/flex-development/mlly/commit/c961376bd3ec592adea916e49d186021859e1f12)] **internal:** `validateObject`
930
+ - [[`d9b6595`](https://github.com/flex-development/mlly/commit/d9b6595a45ba7e2644914b2d63b0b8e149d63165)] **internal:** `validateSet`
931
+ - [[`c66025d`](https://github.com/flex-development/mlly/commit/c66025d576c4f37f44944517ff9787d9946696d0)] **internal:** `validateString`
932
+ - [[`ba49e9b`](https://github.com/flex-development/mlly/commit/ba49e9b03af440d5d07393c8d1b19dacaafba3fa)] **internal:** `validateURLString`
933
+ - [[`b906e6b`](https://github.com/flex-development/mlly/commit/b906e6b30c47cde9628788c9280582d693c00c6a)] **types:** `ChangeExtFn`
934
+ - [[`5cb0b1b`](https://github.com/flex-development/mlly/commit/5cb0b1b074fdee44ea03e32b4128780afbe86667)] **types:** `Format`
935
+ - [[`1f3a500`](https://github.com/flex-development/mlly/commit/1f3a500b96f43ea055bccdcb6815bc8e697dc140)] **types:** `ModuleId`
936
+ - [[`6380ea8`](https://github.com/flex-development/mlly/commit/6380ea8869a9ac540a517ff6cedb8be36d6f73d4)] **types:** `Protocol`
937
+ - [[`66f2137`](https://github.com/flex-development/mlly/commit/66f2137ef8b938a84c7d273bdc45299de14073b0)] **utils:** `compareSubpaths`
938
+ - [[`d4720d7`](https://github.com/flex-development/mlly/commit/d4720d703b64fe623f95cb811a006c390806e8c6)] **utils:** `EXTENSION_FORMAT_MAP`
939
+ - [[`7b9d1e7`](https://github.com/flex-development/mlly/commit/7b9d1e7874e2f43b91f90963c26c83c7bc651e25)] **utils:** `fillModules`
940
+ - [[`4fd48f6`](https://github.com/flex-development/mlly/commit/4fd48f6ab8415d50214de5d10ff608152bc8c6b8)] **utils:** `findSubpath`
941
+ - [[`a1cae6f`](https://github.com/flex-development/mlly/commit/a1cae6f80c88c007d7ac4736de54454d17192d84)] **utils:** `getFormat`
942
+ - [[`017eadb`](https://github.com/flex-development/mlly/commit/017eadb7b2d58eac080dfe4865dc597671ede992)] **utils:** `getSource`
943
+ - [[`4bd443c`](https://github.com/flex-development/mlly/commit/4bd443ce9391fc6dcf1889edb9c3a7c6ef7768b7)] **utils:** `isAbsoluteSpecifier`
944
+ - [[`feda82b`](https://github.com/flex-development/mlly/commit/feda82b8a088bf9b889e20f92c614d810acbe14f)] **utils:** `isBareSpecifier`
945
+ - [[`0c9f954`](https://github.com/flex-development/mlly/commit/0c9f954cf69b6dfbf821fdee8966f2b0a31de759)] **utils:** `isExportsSugar`
946
+ - [[`92b8846`](https://github.com/flex-development/mlly/commit/92b8846acefed82187afef8503bf5e7c4cbb953f)] **utils:** `isRelativeSpecifier`
947
+ - [[`46cb852`](https://github.com/flex-development/mlly/commit/46cb8524c01528cf8310caab7944e6704d66ea97)] **utils:** `lookupPackageScope`
948
+ - [[`93fd382`](https://github.com/flex-development/mlly/commit/93fd38292d07961425f6b394018578fb9933320e)] **utils:** `parseDataURL`
949
+ - [[`a315dd0`](https://github.com/flex-development/mlly/commit/a315dd0aef9238fb107ea07ad27214838e144451)] **utils:** `parseModuleId`
950
+ - [[`8479781`](https://github.com/flex-development/mlly/commit/84797816490736fc2078ff34f42b2cf1f43e31a2)] **utils:** `parseSubpath`
951
+ - [[`7a8f04b`](https://github.com/flex-development/mlly/commit/7a8f04bc06a281c6357dc14f3e8af9f63678ca60)] **utils:** `PATTERN_CHARACTER`
952
+ - [[`b2f9a18`](https://github.com/flex-development/mlly/commit/b2f9a180f0bce61215ac2d23d4be83a91b657f81)] **utils:** `readPackageJson`
953
+ - [[`a536567`](https://github.com/flex-development/mlly/commit/a536567dbd177a033b5e40069009dadbfc06ab30)] **utils:** `toNodeURL`
954
+ - [[`165d8b0`](https://github.com/flex-development/mlly/commit/165d8b0695c85b956e06ddf8a8d0c08f7d58a9a0)] **utils:** `toURL`
955
+ - [[`61e9769`](https://github.com/flex-development/mlly/commit/61e9769ef7d9471e7c7732faa955a8c21a23b877)] **utils:** `validateAssertions`
956
+ - [[`a2b14ea`](https://github.com/flex-development/mlly/commit/a2b14ea2341ea1044be71e11fffd36619e6fdb83)] **utils:** `validateExports`
336
957
 
958
+ ### :bug: Fixes
959
+
960
+ - [[`de20179`](https://github.com/flex-development/mlly/commit/de20179e1b9d9ec68a426814999a9304f9fa2e73)] **ts:** `Type '{ '.' Exports | undefined; }' is not assignable to type 'Exports | undefined'`
961
+ - [[`a5d2226`](https://github.com/flex-development/mlly/commit/a5d2226c352269795399bc14742e49c845c955f6)] **ts:** missing types in build output
962
+ - [[`e29520b`](https://github.com/flex-development/mlly/commit/e29520bf74cbba11c567cc13257a84252777403a)] **utils:** specifier replacement
963
+
964
+ ### :house_with_garden: Housekeeping
965
+
966
+ - [[`bda813d`](https://github.com/flex-development/mlly/commit/bda813db0922faa93d0543e34d11e290bbd52967)] fix lint-staged config
967
+ - [[`d3a571d`](https://github.com/flex-development/mlly/commit/d3a571d38626b0cfd2affb3987bd583813bd9b35)] project qa
968
+ - [[`b1d716c`](https://github.com/flex-development/mlly/commit/b1d716cb29c95734f974e703fe88f4d150827abf)] update eslint config
969
+ - [[`60b2c77`](https://github.com/flex-development/mlly/commit/60b2c771614cc13e892a8814ad644d6095112ba4)] update project architecture
970
+ - [[`7d0571b`](https://github.com/flex-development/mlly/commit/7d0571bb660770640963d7ec550d91b7aa6c7a0d)] update project architecture
971
+ - [[`a6e07d0`](https://github.com/flex-development/mlly/commit/a6e07d0487b2734bc1dac6bcd22c6ff2b3e09380)] **esm:** use package in custom loader
972
+ - [[`d6de153`](https://github.com/flex-development/mlly/commit/d6de15302d1355a7ffbb680b4059fb42a0b6a0af)] **github:** add "typescript version" input to bug report template
973
+ - [[`4af0c3d`](https://github.com/flex-development/mlly/commit/4af0c3d3c0ca38594683586948524faa316ddaf8)] **github:** add commit scope `utils`
974
+ - [[`169ec14`](https://github.com/flex-development/mlly/commit/169ec14abcd9735a8c00e1ce76b5c33f3e0f01cf)] **github:** add label `scope:utils`
975
+ - [[`b9e4bf5`](https://github.com/flex-development/mlly/commit/b9e4bf5d5a73ce467ed1047737ff8fe9b9de9248)] **github:** configure sponsor button
976
+ - [[`4c49124`](https://github.com/flex-development/mlly/commit/4c49124b454e7776d7dc11b34482756bca7ef35e)] **github:** set `LINT_STAGED` before running `lint-staged`
977
+ - [[`8ddf224`](https://github.com/flex-development/mlly/commit/8ddf224485aa19b8ad706f0b3b8c0bdbba3151ed)] **pkg:** update keywords
978
+ - [[`226b49c`](https://github.com/flex-development/mlly/commit/226b49c712ae56dc3f09bd0016df0edc34608900)] **tests:** update codecov config
979
+ - [[`9b6b530`](https://github.com/flex-development/mlly/commit/9b6b53076be0e2240cf8dec3fcb08cef45527cc9)] **tests:** update lint-staged integration
980
+ - [[`aac433c`](https://github.com/flex-development/mlly/commit/aac433c9d42d9794b2fd9303df331f8ee70b0786)] **vscode:** update settings
981
+
982
+ ### :mechanical_arm: Refactors
983
+
984
+ - [[`e6db385`](https://github.com/flex-development/mlly/commit/e6db385058fc810e7be6bb79acac9c7e92bc7aaa)] move constants to `utils` dir
985
+ - [[`c84a231`](https://github.com/flex-development/mlly/commit/c84a23160738d322e8db7bd1b2a0927efefc1c2f)] rename `lib` directory to `utils`
986
+ - [[`1a24b13`](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5)] **enums:** `SpecifierKind` -> `SpecifierSyntaxKind`
987
+ - [[`02c1456`](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7)] **enums:** `SyntaxKind` -> `StatementSyntaxKind`
988
+ - [[`505e211`](https://github.com/flex-development/mlly/commit/505e211531ed6b216567d2b156b42637d292579f)] **esm:** improve loaders compatibility
989
+ - [[`734edd2`](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d)] **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax`
990
+ - [[`789f2cf`](https://github.com/flex-development/mlly/commit/789f2cf7c2ecf27fed86f64640c6c7806ef257f9)] **internal:** [`validateString`] convert to type guard
991
+ - [[`7cb4c38`](https://github.com/flex-development/mlly/commit/7cb4c3899387b67f9d7c9b160e091da9e9613403)] **ts:** catch build output errors early
992
+ - [[`1df5622`](https://github.com/flex-development/mlly/commit/1df56226dfdc6534b40c64d1b33e6ab57b13c901)] **types:** `MIMEType` -> `MimeType`
993
+ - [[`b4ed0b1`](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438)] **utils:** `resolveAlias`
994
+ - [[`b0caca0`](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1)] **utils:** `toBareSpecifier`
995
+
996
+ ### :white_check_mark: Testing
997
+
998
+ - [[`aca9212`](https://github.com/flex-development/mlly/commit/aca9212bf77bfc58b5a050d136cafd622866526f)] **utils:** [`findStaticImports`] 100% isolated coverage
999
+
1000
+ ## [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)
337
1001
 
338
1002
  ### :package: Build
339
1003
 
340
- * cleanup build target settings ([b809be9](https://github.com/flex-development/mlly/commit/b809be9934c6661c98bdcfd3a568e7d34c0fe445))
341
- * remove `src` files from distribution ([0603ebe](https://github.com/flex-development/mlly/commit/0603ebefae0002c13f7d255ff2cc20cdf4057c7e))
342
- * require node `>=14.16` ([cd0dda9](https://github.com/flex-development/mlly/commit/cd0dda9dfae0bd205875f34d8fd8f2022e36d303))
343
- * **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))
344
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([e3649d4](https://github.com/flex-development/mlly/commit/e3649d4d98a59562a0ee27800eb33d1f6cc73c03))
345
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([cdfc9af](https://github.com/flex-development/mlly/commit/cdfc9af3bbce508aceb0fa80d41b9de567383a14))
346
- * **deps-dev:** bump deps according to `yarn upgrade-interactive` ([24ee68b](https://github.com/flex-development/mlly/commit/24ee68b94523fca0ea9498068efc1765eb8f0a97))
347
- * **deps:** replace `pathe` with `upath` ([f705671](https://github.com/flex-development/mlly/commit/f705671f193a7c3a0d24e49e7769683b5876aeae))
348
- * **docs:** [site] use flex-development/docast@48367224ce9b9aa804d872071fc7e6fc6a2f38b3 ([06324f7](https://github.com/flex-development/mlly/commit/06324f723d88320e0de86563b2b78e7d3d02618c))
349
- * **docs:** [site] use flex-development/docast@dd4b6c3b2d4e770df99f3a2b90032f228dcd76a8 ([3de807d](https://github.com/flex-development/mlly/commit/3de807d36c5b06760c9cd8d72b98ca4b0a7233ff))
350
- * **pkg:** remove extraneous `bin` field ([b56c209](https://github.com/flex-development/mlly/commit/b56c2098cf328b89f8e6c34862ebc63668f9e348))
351
- * **syntax:** export `detectSyntax` ([4f3850f](https://github.com/flex-development/mlly/commit/4f3850f60fe9c4981337452d377f29cb6bcceb6d))
352
- * **syntax:** export `hasESMSyntax` ([64a89b2](https://github.com/flex-development/mlly/commit/64a89b235e8ae23c0e63fa013c110a3ca173785a))
353
- * **ts:** reorganize `typesVersions` ([53430fe](https://github.com/flex-development/mlly/commit/53430fe8d4e99a0792e4b64a136d8ba779d51e21))
1004
+ - [[`68255dc`](https://github.com/flex-development/mlly/commit/68255dc3ad4be30eae7ea61598d4494d1913717b)] **deps-dev:** bump vue-tsc from 1.0.17 to 1.0.18
1005
+ - [[`8ce9cfc`](https://github.com/flex-development/mlly/commit/8ce9cfc6a49b3b69c4b129b42b171d60ce3d2b91)] **deps:** bump import-meta-resolve from 2.1.0 to 2.2.0
1006
+ - [[`6cb2847`](https://github.com/flex-development/mlly/commit/6cb2847c229d0d0ba0715a725da4689752a5a899)] **deps:** bump tsconfig-paths from 4.1.0 to 4.1.1
354
1007
 
1008
+ ### :bug: Fixes
1009
+
1010
+ - [[`a34d974`](https://github.com/flex-development/mlly/commit/a34d97448135da0e0f46654b720ba60fc84abcea)] **specifiers:** `toRelativeSpecifier` logic ([#27](https://github.com/flex-development/mlly/issues/27))
1011
+
1012
+ ### :house_with_garden: Housekeeping
1013
+
1014
+ - [[`2942a31`](https://github.com/flex-development/mlly/commit/2942a312411de0a2b4113e163214ca8ef064c87b)] **github:** add "package manager" dropdown to bug report template
1015
+ - [[`241ac69`](https://github.com/flex-development/mlly/commit/241ac6992361ee57631779f48cc87525d4e3f220)] **github:** add label `scope:analyze`
1016
+ - [[`25b2d67`](https://github.com/flex-development/mlly/commit/25b2d679f9d400afdef52bd159afd477daf60077)] **github:** add label `scope:lib`
1017
+ - [[`36159e6`](https://github.com/flex-development/mlly/commit/36159e688680db513417a9d9f7ce0cf72a45695c)] **github:** add label `scope:resolve`
1018
+ - [[`5ca8266`](https://github.com/flex-development/mlly/commit/5ca8266c8c3a7f5448eadad734530837bdeae434)] **github:** add label `scope:specifiers`
1019
+ - [[`54b2585`](https://github.com/flex-development/mlly/commit/54b25854b8da7875087d42f79164ec73794c054f)] **github:** add label `scope:syntax`
1020
+ - [[`35523e0`](https://github.com/flex-development/mlly/commit/35523e06028b34b8c82f9b5ba2553fd0bd28b7e7)] **github:** add label `status:triaged`
1021
+
1022
+ ## [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)
355
1023
 
356
1024
  ### :robot: Continuous Integration
357
1025
 
358
- * add [@dependabot](https://github.com/dependabot) config ([ca31ac5](https://github.com/flex-development/mlly/commit/ca31ac58e4fcedb5feb2a86a134503ef2819fe00))
359
- * **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))
360
- * **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))
361
- * **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))
362
- * **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))
363
- * **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))
364
- * **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))
365
- * **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))
366
- * **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))
367
- * **workflows:** `preview` ([2936463](https://github.com/flex-development/mlly/commit/2936463896eec04a5f5025c981d74361f0ee13df))
368
- * **workflows:** deploy docs to production on github release ([876e5b0](https://github.com/flex-development/mlly/commit/876e5b09fe5b8f076133d1bbd78bf02eed206036))
369
- * **workflows:** ensure docs preview is deployed with all `src` updates ([74bdb73](https://github.com/flex-development/mlly/commit/74bdb73a81ebf38fa606f63245140c2c437d20e3))
1026
+ - [[`da570a6`](https://github.com/flex-development/mlly/commit/da570a6ce355c267ab09fd94c41c99eaef892f2e)] **workflows:** [`publish`] remove stale `.npmrc` file from checkout
1027
+ - [[`03f8097`](https://github.com/flex-development/mlly/commit/03f8097c0213f46fc110c61265345d21b09dee76)] **workflows:** use environment files
370
1028
 
1029
+ ## [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)
1030
+
1031
+ ### :robot: Continuous Integration
1032
+
1033
+ - [[`c06d3ca`](https://github.com/flex-development/mlly/commit/c06d3ca72de415e507d901864afc410c9f5239b3)] **workflows:** [`publish`] fix registry url
371
1034
 
372
1035
  ### :pencil: Documentation
373
1036
 
374
- * [`hasESMSyntax`] fix typo in `@return` description ([c9f6a85](https://github.com/flex-development/mlly/commit/c9f6a8571034c82a2ac801db62632f7fc7033efc))
375
- * [site] add `/api/interfaces` ([95eebeb](https://github.com/flex-development/mlly/commit/95eebeb47adc9cbf8e0dc576dbb3211fd241d432))
376
- * [site] add `/api/types` ([cf7f5be](https://github.com/flex-development/mlly/commit/cf7f5be2af20ee33cb6b93a2809eeaf667334d15))
377
- * [site] add `robots.txt` generation to postbuild tasks ([ef98b86](https://github.com/flex-development/mlly/commit/ef98b86bc3e76cf52781495a52bd7b725bdf5db2))
378
- * [site] add esm only warning to install guide ([19dbe66](https://github.com/flex-development/mlly/commit/19dbe662ef869d26d7ac0f5412445dd392116895))
379
- * [site] add google site verification ([8cd42d6](https://github.com/flex-development/mlly/commit/8cd42d6fe457cc342ca22d7130cf5572d81b6e48))
380
- * [site] add initial front-end checklist ([1403dc3](https://github.com/flex-development/mlly/commit/1403dc357ac8db9ee9f3308b93f7d558d48be170))
381
- * [site] algolia search integration ([1af849d](https://github.com/flex-development/mlly/commit/1af849d7be31c618ab6742c4a9ee2cd22038999c))
382
- * [site] configure google analytics ([3c244ec](https://github.com/flex-development/mlly/commit/3c244ec3294b2ff6bcd6afdaf6b3238155ee25a2))
383
- * [site] fix canonical url ([aea7a10](https://github.com/flex-development/mlly/commit/aea7a105d3fa928c52fc5c8a67fc20acb0c6b266))
384
- * [site] fix duplicate meta description ([188d914](https://github.com/flex-development/mlly/commit/188d914bbdd99683a2eeaccb2c4e0080ecba5af3))
385
- * [site] init `/api/` ([a5084d3](https://github.com/flex-development/mlly/commit/a5084d3b1b25b6e33b570e302b91aba41c012075))
386
- * [site] move search indexing to `buildEnd` hook ([4b71095](https://github.com/flex-development/mlly/commit/4b71095d3e8895dcfc9c8355e9c2286da2c5c6d5))
387
- * [site] prevent tab nabbing ([1929374](https://github.com/flex-development/mlly/commit/1929374cf03a52d03216d39a43e1fd94d2f75431))
388
- * [site] specify text directionality ([1807a41](https://github.com/flex-development/mlly/commit/1807a41f31fa1a337be2722dda5771269e121522))
389
- * [site] update front-end checklist ([70fd41d](https://github.com/flex-development/mlly/commit/70fd41d216b6f5d2ceb8f913ea6b87f744c15877))
390
- * [site]: add `/api/constants` ([ed2bb9f](https://github.com/flex-development/mlly/commit/ed2bb9f8d54525a0da49dff9c879a9831cccef2d))
391
- * [site]: resolve `@link` ([6ed82f8](https://github.com/flex-development/mlly/commit/6ed82f84e248a2ea21f73559fa40dba25bd88db5))
392
- * [site]: update `/api/` title and intro ([3e60e88](https://github.com/flex-development/mlly/commit/3e60e884b5e7f551be3621ccbb2c4dabed783f73))
393
- * [site]: update `/api/constants` intro ([2d1d525](https://github.com/flex-development/mlly/commit/2d1d52590e7098006f4df4c58e8d75af2ebb471a))
394
- * init docs site ([df39382](https://github.com/flex-development/mlly/commit/df39382d9472d3eb97eb0eca37fd147634a65ff3))
395
- * merge zsh docs into contributing guide ([f2e2a6c](https://github.com/flex-development/mlly/commit/f2e2a6c64d3cd8cf3376c912236deec7cfab4f37))
396
- * reorganize gpr install guide ([0a8ef6e](https://github.com/flex-development/mlly/commit/0a8ef6ec08490807c3727398ae402d57c4b32f3d))
397
- * temporarily remove `detectSyntax` example ([afc41e9](https://github.com/flex-development/mlly/commit/afc41e9d16c6f869d26db44bbac7579b24f6123c))
398
- * update descriptions and reference links ([8bd5702](https://github.com/flex-development/mlly/commit/8bd570288ef8ed66fce4bd24bf3bc84b9e113dd2))
1037
+ - [[`128f8f4`](https://github.com/flex-development/mlly/commit/128f8f450eda1fc10ff89ac272fbe8bde870c516)] fix changelog entries
399
1038
 
1039
+ ## [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)
400
1040
 
401
- ### :sparkles: Features
1041
+ ### BREAKING CHANGES
402
1042
 
403
- * **analyze:** `extractStatements` ([08b9124](https://github.com/flex-development/mlly/commit/08b9124a76e5c4aa182221d87dea903b3876efd4))
404
- * **analyze:** `findDynamicImports` ([a03089a](https://github.com/flex-development/mlly/commit/a03089a6ab374adaa1c0908bf304677f11e8b8e2))
405
- * **analyze:** `findExports` ([7a66d78](https://github.com/flex-development/mlly/commit/7a66d781caa6d5f522d4a51e345eafb16b48974e))
406
- * **analyze:** `findRequires` ([1d58008](https://github.com/flex-development/mlly/commit/1d58008174cc0622c2b1a54ce0dbd8741553cacc))
407
- * **analyze:** `findStaticImports` ([673294c](https://github.com/flex-development/mlly/commit/673294cae8156f26538f7f1db51efcab74678fcc))
408
- * **interfaces:** `CompilerOptionsJson` ([39c1abf](https://github.com/flex-development/mlly/commit/39c1abf9856886566277f771eddf27d3cb6aabd6))
409
- * **interfaces:** `DynamicImport` ([b7474a1](https://github.com/flex-development/mlly/commit/b7474a18e482bd74f9c1337c78adc3299d2b0be5))
410
- * **interfaces:** `ExportStatement` ([4384be4](https://github.com/flex-development/mlly/commit/4384be4525b22858e4cbcc782e5a57352583fd60))
411
- * **interfaces:** `ImportStatement` ([6a16d74](https://github.com/flex-development/mlly/commit/6a16d74c491ee2f0453b31a3ea4bf15b9ab62289))
412
- * **interfaces:** `RequireStatement` ([0dc6d7a](https://github.com/flex-development/mlly/commit/0dc6d7a8cb6a4c00f20621a3232cd0b37476025b))
413
- * **interfaces:** `Statement` ([ec25911](https://github.com/flex-development/mlly/commit/ec25911670d0d204d196eb0039a95948ef7174c1))
414
- * **interfaces:** `StaticImport` ([78816b7](https://github.com/flex-development/mlly/commit/78816b748cde2eec6bbfc821370be46008e46a21))
415
- * **lib:** `getCompilerOptions` ([08c4b84](https://github.com/flex-development/mlly/commit/08c4b8492f7640f74dc676c073a7075115846698))
416
- * **lib:** `isBuiltin` ([b0a618b](https://github.com/flex-development/mlly/commit/b0a618bf910b5a135a0f44df06dffcc0b6747774))
417
- * **lib:** `toDataURL` ([57647dd](https://github.com/flex-development/mlly/commit/57647dd958bc29ff578c1661c3977021034ea5aa))
418
- * **resolve:** [`resolveModule`] `@types` detection ([bcd1de7](https://github.com/flex-development/mlly/commit/bcd1de782395a784e0536f7184072acdaef7f33e))
419
- * **resolve:** `resolveAlias` ([4014515](https://github.com/flex-development/mlly/commit/4014515682448d909fff777d41ed114f2a5ae072))
420
- * **resolve:** `resolveAliases` ([25895cf](https://github.com/flex-development/mlly/commit/25895cf8455d932973593193db50fa28ea882d29))
421
- * **resolve:** `resolveModule` ([90ae6b5](https://github.com/flex-development/mlly/commit/90ae6b55f197d161023119f82d394abb1d2dd5d3))
422
- * **resolve:** `resolveModules` ([e7394ad](https://github.com/flex-development/mlly/commit/e7394ad44ce4965ff2d14ee4a7a7d61a23a7be1e))
423
- * **specifiers:** [`toBareSpecifier`] `@types` detection + `types` entry point support ([6991fae](https://github.com/flex-development/mlly/commit/6991fae7631aa0f2ceb0c3c120349b7d5de55e0e))
424
- * **specifiers:** `toAbsoluteSpecifier` ([83578ac](https://github.com/flex-development/mlly/commit/83578ac87e2600ad1cb7751a260667a13aac77f4))
425
- * **specifiers:** `toBareSpecifier` ([1407d5e](https://github.com/flex-development/mlly/commit/1407d5e059442fec95bd017aa4f8853856cd3166))
426
- * **specifiers:** `toRelativeSpecifier` ([26b7096](https://github.com/flex-development/mlly/commit/26b70967a8d2c06b2449b79002d2ebf7a7bbb990))
427
- * **syntax:** `detectSyntax` ([184950f](https://github.com/flex-development/mlly/commit/184950faba5ee78597b69a2e4b1219338ff56bc7))
428
- * **syntax:** `hasCJSSyntax` ([7d64e65](https://github.com/flex-development/mlly/commit/7d64e657002e4fd6ace32775bb2c274574765781))
429
- * **syntax:** `hasESMSyntax` ([6888620](https://github.com/flex-development/mlly/commit/688862056a14d0ddd633d74cc9708b07b6fc2922))
430
- * **syntax:** detect dynamic imports in commonjs ([05b4d8f](https://github.com/flex-development/mlly/commit/05b4d8f69302d7d6c991bc4dd12a874b0947ca34))
431
- * **types:** `Declaration` ([1427995](https://github.com/flex-development/mlly/commit/1427995fd8999090fd76ae59adb6ecbadf19e263))
432
- * **types:** `Ext` ([2ccd483](https://github.com/flex-development/mlly/commit/2ccd4832690367959ba207df0378409a1d4ee2ab))
433
- * **types:** `MIMEType` ([8ff6a94](https://github.com/flex-development/mlly/commit/8ff6a944207b32f45eddda8a7fd6ac38bf47f634))
434
- * **types:** `SpecifierType` ([6feccb1](https://github.com/flex-development/mlly/commit/6feccb15fca8affeb51efd6ce78f4ae267056910))
435
- * **types:** `StatementType` ([b0feb6c](https://github.com/flex-development/mlly/commit/b0feb6cbf79b5a2d5364b728a2f2a45b8c6f5a50))
1043
+ - **types:** remove `Ext`
1044
+ - **types:** `SpecifierType` -> `ModuleSpecifierType`
1045
+ - statements
436
1046
 
1047
+ ### :package: Build
437
1048
 
438
- ### :bug: Fixes
1049
+ - [[`42b8ed2`](https://github.com/flex-development/mlly/commit/42b8ed2360e8b4478202ba7db7e2b5cacae9ec90)] **deps-dev:** add @flex-development/docast
1050
+ - [[`9634f8d`](https://github.com/flex-development/mlly/commit/9634f8d4ec4375e7d29ad709c36ce1d398293718)] **deps-dev:** bump @flex-development/docast-parse to 1.0.0-alpha.4
1051
+ - [[`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
1052
+ - [[`ab0b8ce`](https://github.com/flex-development/mlly/commit/ab0b8ced1e664a9bb6a9f4a7189d870bdf76c8c0)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
1053
+ - [[`bddfa7c`](https://github.com/flex-development/mlly/commit/bddfa7c3f8864ab38fe35dc295ab46e472df187e)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
1054
+ - [[`a7c38e5`](https://github.com/flex-development/mlly/commit/a7c38e50ea583dde948078569b41e0aebde8cfbf)] **deps:** add @flex-development/tsconfig-types
1055
+ - [[`8a584d6`](https://github.com/flex-development/mlly/commit/8a584d6dc2fed8c4cae491c290cf58ded9ca038e)] **deps:** replace upath with @flex-development/pathe
1056
+ - [[`b696cf6`](https://github.com/flex-development/mlly/commit/b696cf676ecb0ace14647727415a49d03092d0d5)] **docs:** [site] use flex-development/docast-parse@27c73c7c03df4d92585c538c1f8214886b1fd0a9
439
1057
 
440
- * **docs:** [site] sitemap urls ([95cfad6](https://github.com/flex-development/mlly/commit/95cfad6e10d047d8d9d3bf8ffa0620f50c47472d))
441
- * **internal:** `STATIC_IMPORT_REGEX` matches `:` in ternary statements ([d2027f8](https://github.com/flex-development/mlly/commit/d2027f83515065a28992d6d91ee3e22b2062c1d1))
442
- * **internal:** `STATIC_IMPORT_REGEX` matches `import` in module specifiers ([a58ec20](https://github.com/flex-development/mlly/commit/a58ec2055750747743bc537f32f33ad7676fdcf4))
443
- * **resolve:** [`resolveModules`] ignore dynamic import statements with dynamic specifiers ([48c20bd](https://github.com/flex-development/mlly/commit/48c20bd4915c16914c80e198a420485b9c8a0582))
444
- * **tests:** [`findDynamicImports`] dynamic specifier test ([ee1b01b](https://github.com/flex-development/mlly/commit/ee1b01b6c727b54fecf64b0142ef6409fe30c941))
1058
+ ### :robot: Continuous Integration
1059
+
1060
+ - [[`e188761`](https://github.com/flex-development/mlly/commit/e1887618c8a2c5fe9cb69babd15498b618e64e66)] configure private package registry for [@dependabot](https://github.com/dependabot)
1061
+ - [[`126dfab`](https://github.com/flex-development/mlly/commit/126dfab8d937f3526ea109acc91565accf3b2653)] fix [@dependabot](https://github.com/dependabot) npm package-ecosystem x yarn integration
1062
+ - [[`b5e8279`](https://github.com/flex-development/mlly/commit/b5e8279269f75cee5076d86b7c34578b74f306df)] **deps:** bump actions/add-to-project from 0.3.0 to 0.4.0
1063
+ - [[`0637831`](https://github.com/flex-development/mlly/commit/063783140fb475f29f821408837389219c471625)] **deps:** bump actions/checkout from 3.1.0 to 3.2.0
1064
+ - [[`ba6063c`](https://github.com/flex-development/mlly/commit/ba6063cb88556d106fb01c3948ba03d8f4848a47)] **deps:** bump dessant/lock-threads from 3.0.0 to 4.0.0
1065
+ - [[`e19b975`](https://github.com/flex-development/mlly/commit/e19b97514d655b2c89e7fa4b09aa3ea93a0f8415)] **deps:** bump flex-development/dist-tag-action from 1.1.1 to 1.1.2
1066
+ - [[`e271e8a`](https://github.com/flex-development/mlly/commit/e271e8afe22244e3d270aa02a833ccb4b077f296)] **workflows:** [`add-to-project`] add items from repo admin account
1067
+ - [[`28a0fa6`](https://github.com/flex-development/mlly/commit/28a0fa6d809c94af458c6d5c9b661bb9d564b70a)] **workflows:** [`ci`] add node.js matrix
1068
+ - [[`701caea`](https://github.com/flex-development/mlly/commit/701caea0edc1e2d36d7a1323a88e1e714e88743d)] **workflows:** [`ci`] archive production artifacts
1069
+ - [[`74ec538`](https://github.com/flex-development/mlly/commit/74ec5381fd5339d0d29b1a5529e48d8b86fc2419)] **workflows:** [`ci`] let [@dependabot](https://github.com/dependabot) modify lockfile
1070
+ - [[`44801d8`](https://github.com/flex-development/mlly/commit/44801d803774588c46299050ff858027605a2079)] **workflows:** [`ci`] re-add node14 to matrix
1071
+ - [[`32518bd`](https://github.com/flex-development/mlly/commit/32518bdd2650e01bc92dd6e212ef9420f239ac9f)] **workflows:** [`ci`] update codecov environment
1072
+ - [[`b326f5d`](https://github.com/flex-development/mlly/commit/b326f5d35c968fd4f1145a50a769e8d645190941)] **workflows:** [`ci`] update node setup
1073
+ - [[`a24776b`](https://github.com/flex-development/mlly/commit/a24776ba0c3aad87e36881f5558eba58f5f7a866)] **workflows:** [`ci`] upload coverage reports to codecov
1074
+ - [[`ba5b355`](https://github.com/flex-development/mlly/commit/ba5b355f30e62cb863abd35eddaa28b5b0885f56)] **workflows:** [`publish`] cleanup registry scope
1075
+ - [[`2c16ff6`](https://github.com/flex-development/mlly/commit/2c16ff62786d8ecc1f403d364af4d6db372e5a75)] **workflows:** [`publish`] print contents of `.npmrc` file
1076
+ - [[`80d68c1`](https://github.com/flex-development/mlly/commit/80d68c13aac5cdb0005c236d56bb8db90bd831a0)] **workflows:** [`publish`] use node version file
1077
+ - [[`bbda19c`](https://github.com/flex-development/mlly/commit/bbda19ca37155411a0a4e9bf4e734a7b7ad959c8)] **workflows:** [`release`] publish releases from repo admin account
1078
+
1079
+ ### :pencil: Documentation
1080
+
1081
+ - [[`8f1285b`](https://github.com/flex-development/mlly/commit/8f1285b12b7c74401c962d614e2c79a6a0c89585)] add "contributor covenant code of conduct"
1082
+
1083
+ ### :bug: Fixes
445
1084
 
1085
+ - [[`1a70af2`](https://github.com/flex-development/mlly/commit/1a70af2bed20cbb6667ca0dd3e8d2e7d6a38da4b)] **install:** [git] make `postinstall` script work with git install
446
1086
 
447
1087
  ### :house_with_garden: Housekeeping
448
1088
 
449
- * add empty changelog ([7dfb431](https://github.com/flex-development/mlly/commit/7dfb431e5f7ced07d6a9a5028347016f2dd5b4c9))
450
- * disable eslint rule `unicorn/no-unsafe-regex` ([8d24eda](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c))
451
- * improve vercel integration ([1db75bc](https://github.com/flex-development/mlly/commit/1db75bc420b42652c440ec0a09742dc319c857f5))
452
- * update editorconfig properties ([60256a8](https://github.com/flex-development/mlly/commit/60256a822ddc721781fe6d6579459fcc9e51a2ec))
453
- * **docs:** scrap `vc dev` usage ([5ce8c0f](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c))
454
- * **github:** add commit scope `analyze` ([f3aaee9](https://github.com/flex-development/mlly/commit/f3aaee92ddbac08744d671cb7b905dbb36dba0f6))
455
- * **github:** add commit scope `docs` ([6111249](https://github.com/flex-development/mlly/commit/61112490c88de111f1906a4725d98abaa5c7247a))
456
- * **github:** add commit scope `interfaces` ([15fc6d9](https://github.com/flex-development/mlly/commit/15fc6d97ff06304710b55bf67768cb14e4ba4295))
457
- * **github:** add commit scope `internal` ([63c3470](https://github.com/flex-development/mlly/commit/63c34707f54d5c5dbeea0ef06d3eea3bd927d888))
458
- * **github:** add commit scope `specifiers` ([a7b3eb3](https://github.com/flex-development/mlly/commit/a7b3eb32b6cced07607af5be3f7c5c1240bcf3c2))
459
- * **github:** add commit scope `types` ([da9f588](https://github.com/flex-development/mlly/commit/da9f588beac0d8e00daa60e40739306e424a3fa7))
460
- * **github:** add label `scope:docs` ([6a98495](https://github.com/flex-development/mlly/commit/6a98495c6f1feabe786509c4bfc5aa6cb63573cb))
461
- * **github:** add label `scope:internal` ([daca7af](https://github.com/flex-development/mlly/commit/daca7afda87a3f1dd2d292ed5e06cde42b3d5929))
462
- * **ts:** enforce `import type` for type-only imports ([acd84b8](https://github.com/flex-development/mlly/commit/acd84b8c004fce22da9b2ea16b5281089fb5b15d))
1089
+ - [[`4acf639`](https://github.com/flex-development/mlly/commit/4acf639b6b28c20a782e39d6f4a8c4b2adb0ae20)] project qa
1090
+ - [[`3120990`](https://github.com/flex-development/mlly/commit/312099035d0a90f044688e6619ec84dd6049d8bb)] project qa
1091
+ - [[`065dbbb`](https://github.com/flex-development/mlly/commit/065dbbbfd271e576d5031fcd155e91007cb95f62)] **github:** add commit scope `install`
1092
+ - [[`3ddc9c2`](https://github.com/flex-development/mlly/commit/3ddc9c29e92e0e254f48f87ce7052196b79c9cc1)] **github:** add label `scope:install`
1093
+ - [[`e0ba89c`](https://github.com/flex-development/mlly/commit/e0ba89cceee97e99111dd4ab7c63601b593a24d5)] **internal:** remove barrel file
1094
+ - [[`e994f4b`](https://github.com/flex-development/mlly/commit/e994f4bb182f0861f3c1c3c68c1a9d0a9a3d6631)] **pkg:** add keywords `ecmascript-modules` and `esmodules`
1095
+ - [[`bdbae1d`](https://github.com/flex-development/mlly/commit/bdbae1d44cc60409a3dabb23acae79f8180b187a)] **tests:** local codecov integration
1096
+ - [[`045ee62`](https://github.com/flex-development/mlly/commit/045ee6252342027657771d7bbdab6748fbb9a36a)] **yarn:** bump yarn from 4.0.0-rc.14 to 4.0.0-rc.34
1097
+
1098
+ ### :mechanical_arm: Refactors
1099
+
1100
+ - [[`731bd2a`](https://github.com/flex-development/mlly/commit/731bd2a770671ad771ff38e8b12fce513034db27)] statements
1101
+ - [[`f3109b4`](https://github.com/flex-development/mlly/commit/f3109b4cb6b33528ac2655e9c90eb86a2512b00d)] **ts:** enforce `exactOptionalPropertyTypes`
1102
+ - [[`263e98b`](https://github.com/flex-development/mlly/commit/263e98b4e8189315157dfb4940df76e61a661922)] **types:** `SpecifierType` -> `ModuleSpecifierType`
1103
+ - [[`303de20`](https://github.com/flex-development/mlly/commit/303de200e3eddf4c6c33fd41db6f6f0ad84fe8ec)] **types:** remove `Ext`
1104
+
1105
+ ### :white_check_mark: Testing
1106
+
1107
+ - [[`7a5430f`](https://github.com/flex-development/mlly/commit/7a5430f4d95392b9fa6637d09765dcdd79d275b4)] **ts:** add remaining type tests
1108
+
1109
+ ## [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)
1110
+
1111
+ ### :robot: Continuous Integration
1112
+
1113
+ - [[`511fb53`](https://github.com/flex-development/mlly/commit/511fb53ae423fe6d77b0447427affb0a1c0e2802)] **workflows:** fix production docs deployment
1114
+
1115
+ ## 1.0.0-alpha.1 (2022-11-06)
1116
+
1117
+ ### :package: Build
1118
+
1119
+ - [[`b809be9`](https://github.com/flex-development/mlly/commit/b809be9934c6661c98bdcfd3a568e7d34c0fe445)] cleanup build target settings
1120
+ - [[`0603ebe`](https://github.com/flex-development/mlly/commit/0603ebefae0002c13f7d255ff2cc20cdf4057c7e)] remove `src` files from distribution
1121
+ - [[`cd0dda9`](https://github.com/flex-development/mlly/commit/cd0dda9dfae0bd205875f34d8fd8f2022e36d303)] require node `>=14.16`
1122
+ - [[`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
1123
+ - [[`e3649d4`](https://github.com/flex-development/mlly/commit/e3649d4d98a59562a0ee27800eb33d1f6cc73c03)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
1124
+ - [[`cdfc9af`](https://github.com/flex-development/mlly/commit/cdfc9af3bbce508aceb0fa80d41b9de567383a14)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
1125
+ - [[`24ee68b`](https://github.com/flex-development/mlly/commit/24ee68b94523fca0ea9498068efc1765eb8f0a97)] **deps-dev:** bump deps according to `yarn upgrade-interactive`
1126
+ - [[`f705671`](https://github.com/flex-development/mlly/commit/f705671f193a7c3a0d24e49e7769683b5876aeae)] **deps:** replace `pathe` with `upath`
1127
+ - [[`06324f7`](https://github.com/flex-development/mlly/commit/06324f723d88320e0de86563b2b78e7d3d02618c)] **docs:** [site] use flex-development/docast@48367224ce9b9aa804d872071fc7e6fc6a2f38b3
1128
+ - [[`3de807d`](https://github.com/flex-development/mlly/commit/3de807d36c5b06760c9cd8d72b98ca4b0a7233ff)] **docs:** [site] use flex-development/docast@dd4b6c3b2d4e770df99f3a2b90032f228dcd76a8
1129
+ - [[`b56c209`](https://github.com/flex-development/mlly/commit/b56c2098cf328b89f8e6c34862ebc63668f9e348)] **pkg:** remove extraneous `bin` field
1130
+ - [[`4f3850f`](https://github.com/flex-development/mlly/commit/4f3850f60fe9c4981337452d377f29cb6bcceb6d)] **syntax:** export `detectSyntax`
1131
+ - [[`64a89b2`](https://github.com/flex-development/mlly/commit/64a89b235e8ae23c0e63fa013c110a3ca173785a)] **syntax:** export `hasESMSyntax`
1132
+ - [[`53430fe`](https://github.com/flex-development/mlly/commit/53430fe8d4e99a0792e4b64a136d8ba779d51e21)] **ts:** reorganize `typesVersions`
1133
+
1134
+ ### :robot: Continuous Integration
1135
+
1136
+ - [[`ca31ac5`](https://github.com/flex-development/mlly/commit/ca31ac58e4fcedb5feb2a86a134503ef2819fe00)] add [@dependabot](https://github.com/dependabot) config
1137
+ - [[`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))
1138
+ - [[`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))
1139
+ - [[`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))
1140
+ - [[`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))
1141
+ - [[`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))
1142
+ - [[`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))
1143
+ - [[`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))
1144
+ - [[`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))
1145
+ - [[`2936463`](https://github.com/flex-development/mlly/commit/2936463896eec04a5f5025c981d74361f0ee13df)] **workflows:** `preview`
1146
+ - [[`876e5b0`](https://github.com/flex-development/mlly/commit/876e5b09fe5b8f076133d1bbd78bf02eed206036)] **workflows:** deploy docs to production on github release
1147
+ - [[`74bdb73`](https://github.com/flex-development/mlly/commit/74bdb73a81ebf38fa606f63245140c2c437d20e3)] **workflows:** ensure docs preview is deployed with all `src` updates
1148
+
1149
+ ### :pencil: Documentation
1150
+
1151
+ - [[`c9f6a85`](https://github.com/flex-development/mlly/commit/c9f6a8571034c82a2ac801db62632f7fc7033efc)] [`hasESMSyntax`] fix typo in `[@return](https://github.com/return)` description
1152
+ - [[`95eebeb`](https://github.com/flex-development/mlly/commit/95eebeb47adc9cbf8e0dc576dbb3211fd241d432)] [site] add `/api/interfaces`
1153
+ - [[`cf7f5be`](https://github.com/flex-development/mlly/commit/cf7f5be2af20ee33cb6b93a2809eeaf667334d15)] [site] add `/api/types`
1154
+ - [[`ef98b86`](https://github.com/flex-development/mlly/commit/ef98b86bc3e76cf52781495a52bd7b725bdf5db2)] [site] add `robots.txt` generation to postbuild tasks
1155
+ - [[`19dbe66`](https://github.com/flex-development/mlly/commit/19dbe662ef869d26d7ac0f5412445dd392116895)] [site] add esm only warning to install guide
1156
+ - [[`8cd42d6`](https://github.com/flex-development/mlly/commit/8cd42d6fe457cc342ca22d7130cf5572d81b6e48)] [site] add google site verification
1157
+ - [[`1403dc3`](https://github.com/flex-development/mlly/commit/1403dc357ac8db9ee9f3308b93f7d558d48be170)] [site] add initial front-end checklist
1158
+ - [[`1af849d`](https://github.com/flex-development/mlly/commit/1af849d7be31c618ab6742c4a9ee2cd22038999c)] [site] algolia search integration
1159
+ - [[`3c244ec`](https://github.com/flex-development/mlly/commit/3c244ec3294b2ff6bcd6afdaf6b3238155ee25a2)] [site] configure google analytics
1160
+ - [[`aea7a10`](https://github.com/flex-development/mlly/commit/aea7a105d3fa928c52fc5c8a67fc20acb0c6b266)] [site] fix canonical url
1161
+ - [[`188d914`](https://github.com/flex-development/mlly/commit/188d914bbdd99683a2eeaccb2c4e0080ecba5af3)] [site] fix duplicate meta description
1162
+ - [[`a5084d3`](https://github.com/flex-development/mlly/commit/a5084d3b1b25b6e33b570e302b91aba41c012075)] [site] init `/api/`
1163
+ - [[`4b71095`](https://github.com/flex-development/mlly/commit/4b71095d3e8895dcfc9c8355e9c2286da2c5c6d5)] [site] move search indexing to `buildEnd` hook
1164
+ - [[`1929374`](https://github.com/flex-development/mlly/commit/1929374cf03a52d03216d39a43e1fd94d2f75431)] [site] prevent tab nabbing
1165
+ - [[`1807a41`](https://github.com/flex-development/mlly/commit/1807a41f31fa1a337be2722dda5771269e121522)] [site] specify text directionality
1166
+ - [[`70fd41d`](https://github.com/flex-development/mlly/commit/70fd41d216b6f5d2ceb8f913ea6b87f744c15877)] [site] update front-end checklist
1167
+ - [[`ed2bb9f`](https://github.com/flex-development/mlly/commit/ed2bb9f8d54525a0da49dff9c879a9831cccef2d)] [site]: add `/api/constants`
1168
+ - [[`6ed82f8`](https://github.com/flex-development/mlly/commit/6ed82f84e248a2ea21f73559fa40dba25bd88db5)] [site]: resolve `[@link](https://github.com/link)`
1169
+ - [[`3e60e88`](https://github.com/flex-development/mlly/commit/3e60e884b5e7f551be3621ccbb2c4dabed783f73)] [site]: update `/api/` title and intro
1170
+ - [[`2d1d525`](https://github.com/flex-development/mlly/commit/2d1d52590e7098006f4df4c58e8d75af2ebb471a)] [site]: update `/api/constants` intro
1171
+ - [[`df39382`](https://github.com/flex-development/mlly/commit/df39382d9472d3eb97eb0eca37fd147634a65ff3)] init docs site
1172
+ - [[`f2e2a6c`](https://github.com/flex-development/mlly/commit/f2e2a6c64d3cd8cf3376c912236deec7cfab4f37)] merge zsh docs into contributing guide
1173
+ - [[`0a8ef6e`](https://github.com/flex-development/mlly/commit/0a8ef6ec08490807c3727398ae402d57c4b32f3d)] reorganize gpr install guide
1174
+ - [[`afc41e9`](https://github.com/flex-development/mlly/commit/afc41e9d16c6f869d26db44bbac7579b24f6123c)] temporarily remove `detectSyntax` example
1175
+ - [[`8bd5702`](https://github.com/flex-development/mlly/commit/8bd570288ef8ed66fce4bd24bf3bc84b9e113dd2)] update descriptions and reference links
1176
+
1177
+ ### :sparkles: Features
1178
+
1179
+ - [[`08b9124`](https://github.com/flex-development/mlly/commit/08b9124a76e5c4aa182221d87dea903b3876efd4)] **analyze:** `extractStatements`
1180
+ - [[`a03089a`](https://github.com/flex-development/mlly/commit/a03089a6ab374adaa1c0908bf304677f11e8b8e2)] **analyze:** `findDynamicImports`
1181
+ - [[`7a66d78`](https://github.com/flex-development/mlly/commit/7a66d781caa6d5f522d4a51e345eafb16b48974e)] **analyze:** `findExports`
1182
+ - [[`1d58008`](https://github.com/flex-development/mlly/commit/1d58008174cc0622c2b1a54ce0dbd8741553cacc)] **analyze:** `findRequires`
1183
+ - [[`673294c`](https://github.com/flex-development/mlly/commit/673294cae8156f26538f7f1db51efcab74678fcc)] **analyze:** `findStaticImports`
1184
+ - [[`39c1abf`](https://github.com/flex-development/mlly/commit/39c1abf9856886566277f771eddf27d3cb6aabd6)] **interfaces:** `CompilerOptionsJson`
1185
+ - [[`b7474a1`](https://github.com/flex-development/mlly/commit/b7474a18e482bd74f9c1337c78adc3299d2b0be5)] **interfaces:** `DynamicImport`
1186
+ - [[`4384be4`](https://github.com/flex-development/mlly/commit/4384be4525b22858e4cbcc782e5a57352583fd60)] **interfaces:** `ExportStatement`
1187
+ - [[`6a16d74`](https://github.com/flex-development/mlly/commit/6a16d74c491ee2f0453b31a3ea4bf15b9ab62289)] **interfaces:** `ImportStatement`
1188
+ - [[`0dc6d7a`](https://github.com/flex-development/mlly/commit/0dc6d7a8cb6a4c00f20621a3232cd0b37476025b)] **interfaces:** `RequireStatement`
1189
+ - [[`ec25911`](https://github.com/flex-development/mlly/commit/ec25911670d0d204d196eb0039a95948ef7174c1)] **interfaces:** `Statement`
1190
+ - [[`78816b7`](https://github.com/flex-development/mlly/commit/78816b748cde2eec6bbfc821370be46008e46a21)] **interfaces:** `StaticImport`
1191
+ - [[`08c4b84`](https://github.com/flex-development/mlly/commit/08c4b8492f7640f74dc676c073a7075115846698)] **lib:** `getCompilerOptions`
1192
+ - [[`b0a618b`](https://github.com/flex-development/mlly/commit/b0a618bf910b5a135a0f44df06dffcc0b6747774)] **lib:** `isBuiltin`
1193
+ - [[`57647dd`](https://github.com/flex-development/mlly/commit/57647dd958bc29ff578c1661c3977021034ea5aa)] **lib:** `toDataURL`
1194
+ - [[`bcd1de7`](https://github.com/flex-development/mlly/commit/bcd1de782395a784e0536f7184072acdaef7f33e)] **resolve:** [`resolveModule`] `[@types](https://github.com/types)` detection
1195
+ - [[`4014515`](https://github.com/flex-development/mlly/commit/4014515682448d909fff777d41ed114f2a5ae072)] **resolve:** `resolveAlias`
1196
+ - [[`25895cf`](https://github.com/flex-development/mlly/commit/25895cf8455d932973593193db50fa28ea882d29)] **resolve:** `resolveAliases`
1197
+ - [[`90ae6b5`](https://github.com/flex-development/mlly/commit/90ae6b55f197d161023119f82d394abb1d2dd5d3)] **resolve:** `resolveModule`
1198
+ - [[`e7394ad`](https://github.com/flex-development/mlly/commit/e7394ad44ce4965ff2d14ee4a7a7d61a23a7be1e)] **resolve:** `resolveModules`
1199
+ - [[`6991fae`](https://github.com/flex-development/mlly/commit/6991fae7631aa0f2ceb0c3c120349b7d5de55e0e)] **specifiers:** [`toBareSpecifier`] `[@types](https://github.com/types)` detection + `types` entry point support
1200
+ - [[`83578ac`](https://github.com/flex-development/mlly/commit/83578ac87e2600ad1cb7751a260667a13aac77f4)] **specifiers:** `toAbsoluteSpecifier`
1201
+ - [[`1407d5e`](https://github.com/flex-development/mlly/commit/1407d5e059442fec95bd017aa4f8853856cd3166)] **specifiers:** `toBareSpecifier`
1202
+ - [[`26b7096`](https://github.com/flex-development/mlly/commit/26b70967a8d2c06b2449b79002d2ebf7a7bbb990)] **specifiers:** `toRelativeSpecifier`
1203
+ - [[`184950f`](https://github.com/flex-development/mlly/commit/184950faba5ee78597b69a2e4b1219338ff56bc7)] **syntax:** `detectSyntax`
1204
+ - [[`7d64e65`](https://github.com/flex-development/mlly/commit/7d64e657002e4fd6ace32775bb2c274574765781)] **syntax:** `hasCJSSyntax`
1205
+ - [[`6888620`](https://github.com/flex-development/mlly/commit/688862056a14d0ddd633d74cc9708b07b6fc2922)] **syntax:** `hasESMSyntax`
1206
+ - [[`05b4d8f`](https://github.com/flex-development/mlly/commit/05b4d8f69302d7d6c991bc4dd12a874b0947ca34)] **syntax:** detect dynamic imports in commonjs
1207
+ - [[`1427995`](https://github.com/flex-development/mlly/commit/1427995fd8999090fd76ae59adb6ecbadf19e263)] **types:** `Declaration`
1208
+ - [[`2ccd483`](https://github.com/flex-development/mlly/commit/2ccd4832690367959ba207df0378409a1d4ee2ab)] **types:** `Ext`
1209
+ - [[`8ff6a94`](https://github.com/flex-development/mlly/commit/8ff6a944207b32f45eddda8a7fd6ac38bf47f634)] **types:** `MIMEType`
1210
+ - [[`6feccb1`](https://github.com/flex-development/mlly/commit/6feccb15fca8affeb51efd6ce78f4ae267056910)] **types:** `SpecifierType`
1211
+ - [[`b0feb6c`](https://github.com/flex-development/mlly/commit/b0feb6cbf79b5a2d5364b728a2f2a45b8c6f5a50)] **types:** `StatementType`
1212
+
1213
+ ### :bug: Fixes
1214
+
1215
+ - [[`95cfad6`](https://github.com/flex-development/mlly/commit/95cfad6e10d047d8d9d3bf8ffa0620f50c47472d)] **docs:** [site] sitemap urls
1216
+ - [[`d2027f8`](https://github.com/flex-development/mlly/commit/d2027f83515065a28992d6d91ee3e22b2062c1d1)] **internal:** `STATIC_IMPORT_REGEX` matches `:` in ternary statements
1217
+ - [[`a58ec20`](https://github.com/flex-development/mlly/commit/a58ec2055750747743bc537f32f33ad7676fdcf4)] **internal:** `STATIC_IMPORT_REGEX` matches `import` in module specifiers
1218
+ - [[`48c20bd`](https://github.com/flex-development/mlly/commit/48c20bd4915c16914c80e198a420485b9c8a0582)] **resolve:** [`resolveModules`] ignore dynamic import statements with dynamic specifiers
1219
+ - [[`ee1b01b`](https://github.com/flex-development/mlly/commit/ee1b01b6c727b54fecf64b0142ef6409fe30c941)] **tests:** [`findDynamicImports`] dynamic specifier test
1220
+
1221
+ ### :house_with_garden: Housekeeping
463
1222
 
1223
+ - [[`7dfb431`](https://github.com/flex-development/mlly/commit/7dfb431e5f7ced07d6a9a5028347016f2dd5b4c9)] add empty changelog
1224
+ - [[`8d24eda`](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c)] disable eslint rule `unicorn/no-unsafe-regex`
1225
+ - [[`1db75bc`](https://github.com/flex-development/mlly/commit/1db75bc420b42652c440ec0a09742dc319c857f5)] improve vercel integration
1226
+ - [[`60256a8`](https://github.com/flex-development/mlly/commit/60256a822ddc721781fe6d6579459fcc9e51a2ec)] update editorconfig properties
1227
+ - [[`5ce8c0f`](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c)] **docs:** scrap `vc dev` usage
1228
+ - [[`f3aaee9`](https://github.com/flex-development/mlly/commit/f3aaee92ddbac08744d671cb7b905dbb36dba0f6)] **github:** add commit scope `analyze`
1229
+ - [[`6111249`](https://github.com/flex-development/mlly/commit/61112490c88de111f1906a4725d98abaa5c7247a)] **github:** add commit scope `docs`
1230
+ - [[`15fc6d9`](https://github.com/flex-development/mlly/commit/15fc6d97ff06304710b55bf67768cb14e4ba4295)] **github:** add commit scope `interfaces`
1231
+ - [[`63c3470`](https://github.com/flex-development/mlly/commit/63c34707f54d5c5dbeea0ef06d3eea3bd927d888)] **github:** add commit scope `internal`
1232
+ - [[`a7b3eb3`](https://github.com/flex-development/mlly/commit/a7b3eb32b6cced07607af5be3f7c5c1240bcf3c2)] **github:** add commit scope `specifiers`
1233
+ - [[`da9f588`](https://github.com/flex-development/mlly/commit/da9f588beac0d8e00daa60e40739306e424a3fa7)] **github:** add commit scope `types`
1234
+ - [[`6a98495`](https://github.com/flex-development/mlly/commit/6a98495c6f1feabe786509c4bfc5aa6cb63573cb)] **github:** add label `scope:docs`
1235
+ - [[`daca7af`](https://github.com/flex-development/mlly/commit/daca7afda87a3f1dd2d292ed5e06cde42b3d5929)] **github:** add label `scope:internal`
1236
+ - [[`acd84b8`](https://github.com/flex-development/mlly/commit/acd84b8c004fce22da9b2ea16b5281089fb5b15d)] **ts:** enforce `import type` for type-only imports
464
1237
 
465
1238
  ### :fire: Performance Improvements
466
1239
 
467
- * **docs:** [site] improve speed of first search query ([0ad65db](https://github.com/flex-development/mlly/commit/0ad65db1a6f731f7452d40375359f7584266a5d1))
468
- * **docs:** [site] use exact urls to increase speed ([55c1267](https://github.com/flex-development/mlly/commit/55c1267864fe9540c38cd8e5bc970a855cd497bf))
1240
+ - [[`0ad65db`](https://github.com/flex-development/mlly/commit/0ad65db1a6f731f7452d40375359f7584266a5d1)] **docs:** [site] improve speed of first search query
1241
+ - [[`55c1267`](https://github.com/flex-development/mlly/commit/55c1267864fe9540c38cd8e5bc970a855cd497bf)] **docs:** [site] use exact urls to increase speed
469
1242
 
1243
+ ### :mechanical_arm: Refactors
470
1244
 
471
- ### :zap: Refactors
1245
+ - [[`f66861c`](https://github.com/flex-development/mlly/commit/f66861c9dca4e2f17403d8bc5684c2f120d4ebaa)] **docs:** [site] comments compilation
1246
+ - [[`602d11a`](https://github.com/flex-development/mlly/commit/602d11a71c6ee288e7f73454a49cfdaaa5e71cc5)] **interfaces:** `AliasResolverOptions` -> `ResolveAliasOptions`
1247
+ - [[`7a486c7`](https://github.com/flex-development/mlly/commit/7a486c7ed3c84f39b0b4b7143f92729ce7912d81)] **internal:** add internals
1248
+ - [[`7c5656d`](https://github.com/flex-development/mlly/commit/7c5656d70bd67c18a9c126abb6e84ff838552ad8)] **lib:** move `getCompilerOptions` to `internal`
1249
+ - [[`c868cec`](https://github.com/flex-development/mlly/commit/c868cec9b5fce91014b1666b3f9aceef60acf079)] **lib:** replace `isBuiltin` with `@flex-development/is-builtin`
1250
+ - [[`190fb52`](https://github.com/flex-development/mlly/commit/190fb5260adb4559beaf0f3666c68b1cc1a16094)] **resolve:** [`resolveAliases`] signature
1251
+ - [[`6df4a4b`](https://github.com/flex-development/mlly/commit/6df4a4bb3836adef0b6f15884575edb6ce78c2a0)] **resolve:** [options] allow readonly arrays
1252
+ - [[`4615851`](https://github.com/flex-development/mlly/commit/46158510fdd0e3d8e0e60757290a655606ad836e)] **resolve:** [options] pass original module specifier to `ext`
1253
+ - [[`0266ca9`](https://github.com/flex-development/mlly/commit/0266ca9a5593d0c66e950ba1fe2c8f6df8422ff9)] **resolve:** sort `RESOLVE_EXTENSIONS` according to priority
1254
+ - [[`36c4b74`](https://github.com/flex-development/mlly/commit/36c4b7475c9bb6c924f5e75c8d6d215a8d23e79c)] **specifiers:** [`toBareSpecifier`] improve `exports` path search
472
1255
 
473
- * **docs:** [site] comments compilation ([f66861c](https://github.com/flex-development/mlly/commit/f66861c9dca4e2f17403d8bc5684c2f120d4ebaa))
474
- * **interfaces:** `AliasResolverOptions` -> `ResolveAliasOptions` ([602d11a](https://github.com/flex-development/mlly/commit/602d11a71c6ee288e7f73454a49cfdaaa5e71cc5))
475
- * **internal:** add internals ([7a486c7](https://github.com/flex-development/mlly/commit/7a486c7ed3c84f39b0b4b7143f92729ce7912d81))
476
- * **lib:** move `getCompilerOptions` to `internal` ([7c5656d](https://github.com/flex-development/mlly/commit/7c5656d70bd67c18a9c126abb6e84ff838552ad8))
477
- * **lib:** replace `isBuiltin` with `@flex-development/is-builtin` ([c868cec](https://github.com/flex-development/mlly/commit/c868cec9b5fce91014b1666b3f9aceef60acf079))
478
- * **resolve:** [`resolveAliases`] signature ([190fb52](https://github.com/flex-development/mlly/commit/190fb5260adb4559beaf0f3666c68b1cc1a16094))
479
- * **resolve:** [options] allow readonly arrays ([6df4a4b](https://github.com/flex-development/mlly/commit/6df4a4bb3836adef0b6f15884575edb6ce78c2a0))
480
- * **resolve:** [options] pass original module specifier to `ext` ([4615851](https://github.com/flex-development/mlly/commit/46158510fdd0e3d8e0e60757290a655606ad836e))
481
- * **resolve:** sort `RESOLVE_EXTENSIONS` according to priority ([0266ca9](https://github.com/flex-development/mlly/commit/0266ca9a5593d0c66e950ba1fe2c8f6df8422ff9))
482
- * **specifiers:** [`toBareSpecifier`] improve `exports` path search ([36c4b74](https://github.com/flex-development/mlly/commit/36c4b7475c9bb6c924f5e75c8d6d215a8d23e79c))