@flex-development/mlly 1.0.0-alpha.2 → 1.0.0-alpha.20

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