@flex-development/mlly 1.0.0-alpha.14 → 1.0.0-alpha.16

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 (239) hide show
  1. package/CHANGELOG.md +203 -0
  2. package/README.md +1 -0
  3. package/dist/enums/assert-type.mjs +1 -7
  4. package/dist/enums/format.mjs +1 -10
  5. package/dist/enums/index.mjs +0 -1
  6. package/dist/enums/kind-specifier-syntax.mjs +1 -7
  7. package/dist/enums/kind-specifier.mjs +1 -8
  8. package/dist/enums/kind-statement-syntax.mjs +1 -15
  9. package/dist/enums/kind-statement.mjs +1 -8
  10. package/dist/index.mjs.map +5 -2
  11. package/dist/interfaces/import-dynamic.d.mts +1 -3
  12. package/dist/interfaces/import-static.d.mts +1 -3
  13. package/dist/interfaces/index.mjs +0 -1
  14. package/dist/interfaces/options-find-subpath.d.mts +4 -3
  15. package/dist/interfaces/options-get-format.d.mts +7 -7
  16. package/dist/interfaces/options-get-source.d.mts +5 -4
  17. package/dist/interfaces/options-parse-module-id.d.mts +4 -3
  18. package/dist/interfaces/options-parse-subpath.d.mts +4 -3
  19. package/dist/interfaces/options-resolve-alias.d.mts +5 -5
  20. package/dist/interfaces/options-resolve-module.d.mts +6 -6
  21. package/dist/internal/dequote.d.mts +14 -0
  22. package/dist/internal/dequote.mjs +6 -0
  23. package/dist/internal/format-type-map.d.mts +2 -0
  24. package/dist/internal/format-type-map.mjs +0 -1
  25. package/dist/internal/get-specifier-kind.d.mts +2 -0
  26. package/dist/internal/get-specifier-kind.mjs +3 -7
  27. package/dist/internal/get-subpaths.d.mts +5 -2
  28. package/dist/internal/get-subpaths.mjs +2 -5
  29. package/dist/internal/regex-encoded-sep.d.mts +2 -0
  30. package/dist/internal/regex-encoded-sep.mjs +0 -1
  31. package/dist/internal/regex-internal-specifier.d.mts +2 -0
  32. package/dist/internal/regex-internal-specifier.mjs +0 -1
  33. package/dist/internal/regex-invalid-segment.d.mts +2 -0
  34. package/dist/internal/regex-invalid-segment.mjs +4 -7
  35. package/dist/internal/regex-package-name.d.mts +2 -0
  36. package/dist/internal/regex-package-name.mjs +0 -1
  37. package/dist/internal/regex-package-path.d.mts +2 -0
  38. package/dist/internal/regex-package-path.mjs +0 -1
  39. package/dist/internal/resolver.d.mts +5 -3
  40. package/dist/internal/resolver.mjs +115 -130
  41. package/dist/internal/validate-array-set.d.mts +7 -5
  42. package/dist/internal/validate-array-set.mjs +5 -5
  43. package/dist/internal/validate-boolean.d.mts +4 -2
  44. package/dist/internal/validate-boolean.mjs +3 -3
  45. package/dist/internal/validate-map.d.mts +10 -7
  46. package/dist/internal/validate-map.mjs +5 -5
  47. package/dist/internal/validate-object.d.mts +9 -9
  48. package/dist/internal/validate-object.mjs +3 -3
  49. package/dist/internal/validate-set.d.mts +7 -5
  50. package/dist/internal/validate-set.mjs +5 -5
  51. package/dist/internal/validate-string.d.mts +5 -2
  52. package/dist/internal/validate-string.mjs +3 -3
  53. package/dist/internal/validate-url-string.d.mts +4 -2
  54. package/dist/internal/validate-url-string.mjs +3 -3
  55. package/dist/types/fn-change-ext.d.mts +7 -4
  56. package/dist/types/index.mjs +0 -1
  57. package/dist/utils/compare-subpaths.mjs +5 -10
  58. package/dist/utils/compare-subpaths.mjs.map +6 -3
  59. package/dist/utils/conditions.mjs.map +5 -2
  60. package/dist/utils/detect-syntax.mjs +1 -2
  61. package/dist/utils/detect-syntax.mjs.map +6 -3
  62. package/dist/utils/extension-format-map.mjs.map +5 -2
  63. package/dist/utils/extract-statements.mjs +6 -7
  64. package/dist/utils/extract-statements.mjs.map +6 -3
  65. package/dist/utils/fill-modules.mjs +43 -46
  66. package/dist/utils/fill-modules.mjs.map +9 -4
  67. package/dist/utils/find-dynamic-imports.mjs +23 -26
  68. package/dist/utils/find-dynamic-imports.mjs.map +9 -4
  69. package/dist/utils/find-exports.mjs +15 -20
  70. package/dist/utils/find-exports.mjs.map +9 -4
  71. package/dist/utils/find-requires.mjs +5 -5
  72. package/dist/utils/find-requires.mjs.map +9 -4
  73. package/dist/utils/find-static-imports.mjs +17 -21
  74. package/dist/utils/find-static-imports.mjs.map +9 -4
  75. package/dist/utils/find-subpath.d.mts +3 -3
  76. package/dist/utils/find-subpath.mjs +52 -74
  77. package/dist/utils/find-subpath.mjs.map +10 -4
  78. package/dist/utils/get-format.mjs +18 -33
  79. package/dist/utils/get-format.mjs.map +9 -4
  80. package/dist/utils/get-source.d.mts +3 -2
  81. package/dist/utils/get-source.mjs +10 -19
  82. package/dist/utils/get-source.mjs.map +6 -3
  83. package/dist/utils/has-cjs-syntax.mjs.map +5 -2
  84. package/dist/utils/has-esm-syntax.mjs.map +5 -2
  85. package/dist/utils/index.d.mts +2 -0
  86. package/dist/utils/index.mjs +46 -42
  87. package/dist/utils/index.mjs.map +9 -4
  88. package/dist/utils/is-absolute-specifier.mjs +5 -6
  89. package/dist/utils/is-absolute-specifier.mjs.map +6 -3
  90. package/dist/utils/is-bare-specifier.mjs +2 -4
  91. package/dist/utils/is-bare-specifier.mjs.map +6 -3
  92. package/dist/utils/is-directory.mjs +14 -0
  93. package/dist/utils/is-directory.mjs.map +9 -0
  94. package/dist/utils/is-exports-sugar.d.mts +3 -2
  95. package/dist/utils/is-exports-sugar.mjs +16 -13
  96. package/dist/utils/is-exports-sugar.mjs.map +6 -3
  97. package/dist/utils/is-file.mjs +14 -0
  98. package/dist/utils/is-file.mjs.map +9 -0
  99. package/dist/utils/is-relative-specifier.d.mts +0 -1
  100. package/dist/utils/is-relative-specifier.mjs +2 -4
  101. package/dist/utils/is-relative-specifier.mjs.map +6 -3
  102. package/dist/utils/lookup-package-scope.d.mts +1 -1
  103. package/dist/utils/lookup-package-scope.mjs +4 -8
  104. package/dist/utils/lookup-package-scope.mjs.map +6 -3
  105. package/dist/utils/parse-data-url.mjs +4 -4
  106. package/dist/utils/parse-data-url.mjs.map +6 -3
  107. package/dist/utils/parse-module-id.mjs +22 -24
  108. package/dist/utils/parse-module-id.mjs.map +10 -4
  109. package/dist/utils/parse-subpath.d.mts +3 -2
  110. package/dist/utils/parse-subpath.mjs +40 -55
  111. package/dist/utils/parse-subpath.mjs.map +9 -4
  112. package/dist/utils/pattern-character.mjs.map +5 -2
  113. package/dist/utils/read-package-json.mjs +12 -9
  114. package/dist/utils/read-package-json.mjs.map +6 -3
  115. package/dist/utils/resolve-alias.mjs +28 -34
  116. package/dist/utils/resolve-alias.mjs.map +10 -4
  117. package/dist/utils/resolve-aliases.mjs +15 -17
  118. package/dist/utils/resolve-aliases.mjs.map +6 -3
  119. package/dist/utils/resolve-extensions.mjs.map +5 -2
  120. package/dist/utils/resolve-module.mjs +10 -26
  121. package/dist/utils/resolve-module.mjs.map +6 -3
  122. package/dist/utils/resolve-modules.mjs +12 -15
  123. package/dist/utils/resolve-modules.mjs.map +6 -3
  124. package/dist/utils/to-absolute-specifier.mjs.map +5 -2
  125. package/dist/utils/to-bare-specifier.mjs +18 -34
  126. package/dist/utils/to-bare-specifier.mjs.map +6 -3
  127. package/dist/utils/to-data-url.mjs +1 -5
  128. package/dist/utils/to-data-url.mjs.map +6 -3
  129. package/dist/utils/to-node-url.mjs +1 -4
  130. package/dist/utils/to-node-url.mjs.map +6 -3
  131. package/dist/utils/to-relative-specifier.mjs +2 -16
  132. package/dist/utils/to-relative-specifier.mjs.map +6 -3
  133. package/dist/utils/to-url.mjs +1 -5
  134. package/dist/utils/to-url.mjs.map +6 -3
  135. package/dist/utils/validate-assertions.d.mts +2 -2
  136. package/dist/utils/validate-assertions.mjs +14 -21
  137. package/dist/utils/validate-assertions.mjs.map +9 -4
  138. package/dist/utils/validate-exports.d.mts +3 -2
  139. package/dist/utils/validate-exports.mjs +25 -24
  140. package/dist/utils/validate-exports.mjs.map +6 -3
  141. package/package.json +89 -81
  142. package/src/interfaces/import-dynamic.ts +1 -3
  143. package/src/interfaces/import-static.ts +1 -5
  144. package/src/interfaces/options-find-subpath.ts +4 -3
  145. package/src/interfaces/options-get-format.ts +7 -7
  146. package/src/interfaces/options-get-source.ts +5 -4
  147. package/src/interfaces/options-parse-module-id.ts +4 -3
  148. package/src/interfaces/options-parse-subpath.ts +4 -3
  149. package/src/interfaces/options-resolve-alias.ts +5 -5
  150. package/src/interfaces/options-resolve-module.ts +6 -6
  151. package/src/internal/dequote.ts +18 -0
  152. package/src/internal/format-type-map.ts +2 -0
  153. package/src/internal/get-specifier-kind.ts +7 -4
  154. package/src/internal/get-subpaths.ts +7 -5
  155. package/src/internal/regex-encoded-sep.ts +2 -0
  156. package/src/internal/regex-internal-specifier.ts +2 -0
  157. package/src/internal/regex-invalid-segment.ts +2 -0
  158. package/src/internal/regex-package-name.ts +2 -0
  159. package/src/internal/regex-package-path.ts +2 -0
  160. package/src/internal/resolver.ts +71 -49
  161. package/src/internal/validate-array-set.ts +10 -7
  162. package/src/internal/validate-boolean.ts +6 -3
  163. package/src/internal/validate-map.ts +12 -9
  164. package/src/internal/validate-object.ts +10 -10
  165. package/src/internal/validate-set.ts +9 -9
  166. package/src/internal/validate-string.ts +7 -3
  167. package/src/internal/validate-url-string.ts +6 -3
  168. package/src/types/fn-change-ext.ts +7 -7
  169. package/src/utils/extract-statements.ts +11 -7
  170. package/src/utils/fill-modules.ts +70 -62
  171. package/src/utils/find-dynamic-imports.ts +6 -6
  172. package/src/utils/find-exports.ts +19 -29
  173. package/src/utils/find-requires.ts +6 -6
  174. package/src/utils/find-static-imports.ts +11 -14
  175. package/src/utils/find-subpath.ts +140 -139
  176. package/src/utils/get-format.ts +27 -21
  177. package/src/utils/get-source.ts +5 -5
  178. package/src/utils/index.ts +2 -0
  179. package/src/utils/is-bare-specifier.ts +2 -1
  180. package/src/{internal → utils}/is-directory.ts +1 -1
  181. package/src/utils/is-exports-sugar.ts +16 -9
  182. package/src/{internal → utils}/is-file.ts +1 -1
  183. package/src/utils/is-relative-specifier.ts +5 -6
  184. package/src/utils/lookup-package-scope.ts +2 -2
  185. package/src/utils/parse-data-url.ts +3 -3
  186. package/src/utils/parse-module-id.ts +16 -8
  187. package/src/utils/parse-subpath.ts +32 -19
  188. package/src/utils/read-package-json.ts +13 -6
  189. package/src/utils/resolve-alias.ts +19 -15
  190. package/src/utils/resolve-aliases.ts +25 -25
  191. package/src/utils/resolve-module.ts +4 -5
  192. package/src/utils/resolve-modules.ts +19 -21
  193. package/src/utils/to-bare-specifier.ts +22 -10
  194. package/src/utils/to-relative-specifier.ts +2 -1
  195. package/src/utils/validate-assertions.ts +12 -7
  196. package/src/utils/validate-exports.ts +25 -18
  197. package/dist/enums/assert-type.mjs.map +0 -6
  198. package/dist/enums/format.mjs.map +0 -6
  199. package/dist/enums/index.mjs.map +0 -6
  200. package/dist/enums/kind-specifier-syntax.mjs.map +0 -6
  201. package/dist/enums/kind-specifier.mjs.map +0 -6
  202. package/dist/enums/kind-statement-syntax.mjs.map +0 -6
  203. package/dist/enums/kind-statement.mjs.map +0 -6
  204. package/dist/interfaces/index.mjs.map +0 -6
  205. package/dist/internal/escape-reg-exp.d.mts +0 -16
  206. package/dist/internal/escape-reg-exp.mjs +0 -10
  207. package/dist/internal/escape-reg-exp.mjs.map +0 -6
  208. package/dist/internal/format-type-map.mjs.map +0 -6
  209. package/dist/internal/get-specifier-kind.mjs.map +0 -6
  210. package/dist/internal/get-subpaths.mjs.map +0 -6
  211. package/dist/internal/is-array-index.d.mts +0 -15
  212. package/dist/internal/is-array-index.mjs +0 -9
  213. package/dist/internal/is-array-index.mjs.map +0 -6
  214. package/dist/internal/is-directory.mjs +0 -16
  215. package/dist/internal/is-directory.mjs.map +0 -6
  216. package/dist/internal/is-file.mjs +0 -16
  217. package/dist/internal/is-file.mjs.map +0 -6
  218. package/dist/internal/is-function.d.mts +0 -12
  219. package/dist/internal/is-function.mjs +0 -8
  220. package/dist/internal/is-function.mjs.map +0 -6
  221. package/dist/internal/regex-encoded-sep.mjs.map +0 -6
  222. package/dist/internal/regex-internal-specifier.mjs.map +0 -6
  223. package/dist/internal/regex-invalid-segment.mjs.map +0 -6
  224. package/dist/internal/regex-package-name.mjs.map +0 -6
  225. package/dist/internal/regex-package-path.mjs.map +0 -6
  226. package/dist/internal/resolver.mjs.map +0 -6
  227. package/dist/internal/validate-array-set.mjs.map +0 -6
  228. package/dist/internal/validate-boolean.mjs.map +0 -6
  229. package/dist/internal/validate-map.mjs.map +0 -6
  230. package/dist/internal/validate-object.mjs.map +0 -6
  231. package/dist/internal/validate-set.mjs.map +0 -6
  232. package/dist/internal/validate-string.mjs.map +0 -6
  233. package/dist/internal/validate-url-string.mjs.map +0 -6
  234. package/dist/types/index.mjs.map +0 -6
  235. package/src/internal/escape-reg-exp.ts +0 -24
  236. package/src/internal/is-array-index.ts +0 -28
  237. package/src/internal/is-function.ts +0 -16
  238. /package/dist/{internal → utils}/is-directory.d.mts +0 -0
  239. /package/dist/{internal → utils}/is-file.d.mts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,206 @@
1
+ ## [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)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * **nvm:** require `>=16.20.0`
7
+
8
+ ### :package: Build
9
+
10
+ * **deps-dev:** Bump @commitlint/cli from 17.4.4 to 17.5.0 ([#241](https://github.com/flex-development/mlly/issues/241)) ([e0a6e00](https://github.com/flex-development/mlly/commit/e0a6e00f173c7e3f43333c871bbd81a7997a1225))
11
+ * **deps-dev:** Bump @commitlint/cli from 17.5.1 to 17.6.1 ([#301](https://github.com/flex-development/mlly/issues/301)) ([acaef67](https://github.com/flex-development/mlly/commit/acaef673b2f6ec47815d2a0b4128573c8059a48e))
12
+ * **deps-dev:** Bump @commitlint/cli from 17.6.1 to 17.6.5 ([#355](https://github.com/flex-development/mlly/issues/355)) ([ae6f90d](https://github.com/flex-development/mlly/commit/ae6f90dddb6b13e87fdd415c5e31c0c9d60fc269))
13
+ * **deps-dev:** Bump @docsearch/react from 3.3.3 to 3.3.4 ([#305](https://github.com/flex-development/mlly/issues/305)) ([6a637f7](https://github.com/flex-development/mlly/commit/6a637f7a411f01e9308a5719785bf1453ceaa3fe))
14
+ * **deps-dev:** Bump @docsearch/react from 3.3.4 to 3.5.0 ([#360](https://github.com/flex-development/mlly/issues/360)) ([938227d](https://github.com/flex-development/mlly/commit/938227d3e863ae2144ca66679e304ff87dcf3073))
15
+ * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.0 to 8.0.0-alpha.1 ([#231](https://github.com/flex-development/mlly/issues/231)) ([329b3fc](https://github.com/flex-development/mlly/commit/329b3fc17f79232bec89cfc66068cab7781895fa))
16
+ * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.1 to 8.0.0-alpha.2 ([#253](https://github.com/flex-development/mlly/issues/253)) ([1aebe3f](https://github.com/flex-development/mlly/commit/1aebe3fd0753ae3e930494bfd39a0e1031259167))
17
+ * **deps-dev:** Bump @faker-js/faker from 8.0.0-alpha.2 to 8.0.0-beta.0 ([#326](https://github.com/flex-development/mlly/issues/326)) ([10cf651](https://github.com/flex-development/mlly/commit/10cf6514c621d71322fb41d6c43c0fa8feabad15))
18
+ * **deps-dev:** Bump @flex-development/decorator-regex from 1.0.0 to 2.0.0 ([#388](https://github.com/flex-development/mlly/issues/388)) ([cf41fbf](https://github.com/flex-development/mlly/commit/cf41fbf0a3006de68645608504cc977d8243bbac))
19
+ * **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.10 to 1.0.0-alpha.12 ([#188](https://github.com/flex-development/mlly/issues/188)) ([4a858bc](https://github.com/flex-development/mlly/commit/4a858bc36b61d260f28ec3c58591ffaac9797c97))
20
+ * **deps-dev:** Bump @flex-development/docast from 1.0.0-alpha.9 to 1.0.0-alpha.10 ([#185](https://github.com/flex-development/mlly/issues/185)) ([a864fd3](https://github.com/flex-development/mlly/commit/a864fd3576af29c61030b182df9cb23243d4d7d3))
21
+ * **deps-dev:** Bump @flex-development/esm-types from 1.0.0 to 2.0.0 ([#385](https://github.com/flex-development/mlly/issues/385)) ([750b486](https://github.com/flex-development/mlly/commit/750b486bfc35811b251bc1f28d4fb09d5d0bdc90))
22
+ * **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.15 to 1.0.0-alpha.16 ([#183](https://github.com/flex-development/mlly/issues/183)) ([262edf8](https://github.com/flex-development/mlly/commit/262edf89eaad7b90bbccae34ce36bc584dc36d1b))
23
+ * **deps-dev:** bump @flex-development/tutils from 6.0.0-alpha.10 to 6.0.0-alpha.15 ([9bef0cf](https://github.com/flex-development/mlly/commit/9bef0cf0ca39a949c904b5d093c4dcbcde638e2d))
24
+ * **deps-dev:** Bump @graphql-eslint/eslint-plugin from 3.16.1 to 3.16.2 ([#243](https://github.com/flex-development/mlly/issues/243)) ([85027dc](https://github.com/flex-development/mlly/commit/85027dce967946f6b48eff128276432d3bdc9be9))
25
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.0 to 5.54.1 ([#189](https://github.com/flex-development/mlly/issues/189)) ([fd1ddc4](https://github.com/flex-development/mlly/commit/fd1ddc4de90650261390984a5ce06d28e6c2ef54))
26
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.54.1 to 5.55.0 ([#208](https://github.com/flex-development/mlly/issues/208)) ([5f9ee94](https://github.com/flex-development/mlly/commit/5f9ee94483053685c3b7a94d807c42dc49c9e51f))
27
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.55.0 to 5.56.0 ([#232](https://github.com/flex-development/mlly/issues/232)) ([9123c31](https://github.com/flex-development/mlly/commit/9123c3140ffa0092f55daa7ad0e4ec714b1eee0d))
28
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.59.1 ([#294](https://github.com/flex-development/mlly/issues/294)) ([e33bee4](https://github.com/flex-development/mlly/commit/e33bee44fbe3f07f10767714f73f0555327475ab))
29
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.1 to 5.59.2 ([#313](https://github.com/flex-development/mlly/issues/313)) ([f977af8](https://github.com/flex-development/mlly/commit/f977af8f1f7620d542af1c8175527b02b08c2163))
30
+ * **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.59.2 to 5.59.6 ([#341](https://github.com/flex-development/mlly/issues/341)) ([dcb58b9](https://github.com/flex-development/mlly/commit/dcb58b93229bb3287f36e27ae747da7e70978121))
31
+ * **deps-dev:** Bump @typescript-eslint/parser from 5.54.0 to 5.54.1 ([#190](https://github.com/flex-development/mlly/issues/190)) ([977c378](https://github.com/flex-development/mlly/commit/977c37876253716cc2ff2c9391b7e55d936261b7))
32
+ * **deps-dev:** Bump @typescript-eslint/parser from 5.54.1 to 5.55.0 ([#210](https://github.com/flex-development/mlly/issues/210)) ([4654183](https://github.com/flex-development/mlly/commit/465418348548029ff7d0f1a01bbd136e08160767))
33
+ * **deps-dev:** Bump @typescript-eslint/parser from 5.55.0 to 5.56.0 ([#242](https://github.com/flex-development/mlly/issues/242)) ([eb28ee1](https://github.com/flex-development/mlly/commit/eb28ee122b6c5aac74287f851932e83168c8a409))
34
+ * **deps-dev:** Bump @typescript-eslint/parser from 5.57.1 to 5.59.1 ([#296](https://github.com/flex-development/mlly/issues/296)) ([c1285f7](https://github.com/flex-development/mlly/commit/c1285f72b7169c3dd0c09772e47098a260cd5b77))
35
+ * **deps-dev:** Bump @typescript-eslint/parser from 5.59.1 to 5.59.2 ([#314](https://github.com/flex-development/mlly/issues/314)) ([c85ed3b](https://github.com/flex-development/mlly/commit/c85ed3b24505d236c8ccbeac47f3bccccd8a347a))
36
+ * **deps-dev:** Bump @vitest/coverage-c8 from 0.29.2 to 0.29.3 ([#225](https://github.com/flex-development/mlly/issues/225)) ([70a3438](https://github.com/flex-development/mlly/commit/70a3438386afaaedf21a5cc9fd96d9e15a043fbf))
37
+ * **deps-dev:** Bump @vitest/coverage-c8 from 0.29.3 to 0.29.7 ([#238](https://github.com/flex-development/mlly/issues/238)) ([860ed19](https://github.com/flex-development/mlly/commit/860ed19ecb8466639ce6ba9fee9c23c8f1247e46))
38
+ * **deps-dev:** Bump @vitest/coverage-c8 from 0.30.0 to 0.30.1 ([#298](https://github.com/flex-development/mlly/issues/298)) ([4916991](https://github.com/flex-development/mlly/commit/4916991b03c5307f30391cc7a304567b1405b7e9))
39
+ * **deps-dev:** Bump @vitest/coverage-c8 from 0.30.1 to 0.31.0 ([#320](https://github.com/flex-development/mlly/issues/320)) ([0f60595](https://github.com/flex-development/mlly/commit/0f6059578124f3fb0b02afc4db0df80133617c71))
40
+ * **deps-dev:** Bump @vitest/ui from 0.29.2 to 0.29.3 ([#214](https://github.com/flex-development/mlly/issues/214)) ([d21cbb4](https://github.com/flex-development/mlly/commit/d21cbb4ff3d352a892b524021a577a69ab1a8467))
41
+ * **deps-dev:** Bump @vitest/ui from 0.29.3 to 0.29.7 ([#237](https://github.com/flex-development/mlly/issues/237)) ([3493ab3](https://github.com/flex-development/mlly/commit/3493ab3f0cf0e054d32136b72af72de406148c87))
42
+ * **deps-dev:** Bump @vitest/ui from 0.29.7 to 0.29.8 ([#260](https://github.com/flex-development/mlly/issues/260)) ([dba6d04](https://github.com/flex-development/mlly/commit/dba6d04994e0222bc39272f08571aca5ffdd039e))
43
+ * **deps-dev:** Bump @vitest/ui from 0.30.0 to 0.30.1 ([#304](https://github.com/flex-development/mlly/issues/304)) ([7fc2393](https://github.com/flex-development/mlly/commit/7fc239364053b8c6541bcde451b89d18c7fdc87c))
44
+ * **deps-dev:** Bump @vitest/ui from 0.30.1 to 0.31.0 ([#321](https://github.com/flex-development/mlly/issues/321)) ([6a927c8](https://github.com/flex-development/mlly/commit/6a927c89a174322e62d44fec0909dd0d47580a78))
45
+ * **deps-dev:** Bump @vue/runtime-core from 3.2.47 to 3.3.4 ([#340](https://github.com/flex-development/mlly/issues/340)) ([4bfe81e](https://github.com/flex-development/mlly/commit/4bfe81eb19b463530b39eb83383437cf2f76ffc4))
46
+ * **deps-dev:** Bump algoliasearch from 4.15.0 to 4.16.0 ([#248](https://github.com/flex-development/mlly/issues/248)) ([1a0b232](https://github.com/flex-development/mlly/commit/1a0b232ebe70459fe2a2ab675af7a8989b05cfbf))
47
+ * **deps-dev:** Bump algoliasearch from 4.16.0 to 4.17.0 ([#274](https://github.com/flex-development/mlly/issues/274)) ([1f68805](https://github.com/flex-development/mlly/commit/1f68805569121b880c569e23573c5a8ec08b884d))
48
+ * **deps-dev:** Bump conventional-changelog-writer from 5.0.1 to 6.0.0 ([#361](https://github.com/flex-development/mlly/issues/361)) ([8d5584a](https://github.com/flex-development/mlly/commit/8d5584a92ca7d9937bbbd3ef262fd4c7f663fd9f))
49
+ * **deps-dev:** Bump conventional-recommended-bump from 6.1.0 to 7.0.1 ([#359](https://github.com/flex-development/mlly/issues/359)) ([9aa737c](https://github.com/flex-development/mlly/commit/9aa737c9aa4e42806639561f64670a9d8baeb1e0))
50
+ * **deps-dev:** Bump cspell from 6.27.0 to 6.28.0 ([#182](https://github.com/flex-development/mlly/issues/182)) ([7fb15d6](https://github.com/flex-development/mlly/commit/7fb15d6a2f13fda08dc4e55ea5875168d8225cd9))
51
+ * **deps-dev:** Bump cspell from 6.28.0 to 6.29.3 ([#212](https://github.com/flex-development/mlly/issues/212)) ([a3b9ac1](https://github.com/flex-development/mlly/commit/a3b9ac150b9fef9061325dea80db9aa2f106068a))
52
+ * **deps-dev:** Bump cspell from 6.29.3 to 6.30.0 ([#220](https://github.com/flex-development/mlly/issues/220)) ([da46d04](https://github.com/flex-development/mlly/commit/da46d04942b1e1a5d51231ef635f21413b9e3b20))
53
+ * **deps-dev:** Bump cspell from 6.30.0 to 6.30.2 ([#235](https://github.com/flex-development/mlly/issues/235)) ([70ff885](https://github.com/flex-development/mlly/commit/70ff8851155f6758ea304c96ddad25d693012969))
54
+ * **deps-dev:** Bump cspell from 6.30.2 to 6.31.1 ([#251](https://github.com/flex-development/mlly/issues/251)) ([a891496](https://github.com/flex-development/mlly/commit/a891496e5ab92a00579438b53ccd3398f7ede008))
55
+ * **deps-dev:** Bump esbuild from 0.17.10 to 0.17.11 ([#186](https://github.com/flex-development/mlly/issues/186)) ([092fb75](https://github.com/flex-development/mlly/commit/092fb7520b88609641fde9df718d56a1479e86c0))
56
+ * **deps-dev:** Bump esbuild from 0.17.11 to 0.17.12 ([#224](https://github.com/flex-development/mlly/issues/224)) ([4e14757](https://github.com/flex-development/mlly/commit/4e147575e00ec8a937b5ad4704db9a2e93d54877))
57
+ * **deps-dev:** Bump esbuild from 0.17.12 to 0.17.14 ([#256](https://github.com/flex-development/mlly/issues/256)) ([5deedc6](https://github.com/flex-development/mlly/commit/5deedc63e0c3050cd6f9c5705409382706027e09))
58
+ * **deps-dev:** Bump esbuild from 0.17.16 to 0.17.18 ([#318](https://github.com/flex-development/mlly/issues/318)) ([9e8ab13](https://github.com/flex-development/mlly/commit/9e8ab13ce9247cb249ea0fc131cc3ecd52c20038))
59
+ * **deps-dev:** Bump esbuild from 0.17.18 to 0.17.19 ([#343](https://github.com/flex-development/mlly/issues/343)) ([2b690d5](https://github.com/flex-development/mlly/commit/2b690d59ad7d67e2b787b23482beb43bf647819a))
60
+ * **deps-dev:** Bump esbuild from 0.18.18 to 0.18.19 ([#394](https://github.com/flex-development/mlly/issues/394)) ([bdb3782](https://github.com/flex-development/mlly/commit/bdb3782c755a30d7e7d3d2bfc20f7ee602a9a596))
61
+ * **deps-dev:** Bump eslint from 8.35.0 to 8.36.0 ([#204](https://github.com/flex-development/mlly/issues/204)) ([8659994](https://github.com/flex-development/mlly/commit/8659994a0f449645ba442bea5bcecad8e16dae52))
62
+ * **deps-dev:** Bump eslint from 8.38.0 to 8.39.0 ([#303](https://github.com/flex-development/mlly/issues/303)) ([836a397](https://github.com/flex-development/mlly/commit/836a3978297bfdfbec82f90721230b1344ea5b5d))
63
+ * **deps-dev:** Bump eslint-config-prettier from 8.6.0 to 8.7.0 ([#197](https://github.com/flex-development/mlly/issues/197)) ([a38348e](https://github.com/flex-development/mlly/commit/a38348e5caa27da02fdd20a59d156ce8fadf6d57))
64
+ * **deps-dev:** Bump eslint-config-prettier from 8.7.0 to 8.8.0 ([#239](https://github.com/flex-development/mlly/issues/239)) ([63540bb](https://github.com/flex-development/mlly/commit/63540bb83ebf09cd0ffeab2f29e16427dafc4ebe))
65
+ * **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.1 to 40.0.3 ([#222](https://github.com/flex-development/mlly/issues/222)) ([d47fac8](https://github.com/flex-development/mlly/commit/d47fac8366e9f2568ffd997546f3add960e3b67c))
66
+ * **deps-dev:** Bump eslint-plugin-jsdoc from 40.0.3 to 40.1.0 ([#236](https://github.com/flex-development/mlly/issues/236)) ([bdb6a99](https://github.com/flex-development/mlly/commit/bdb6a99aa95cd257fb814638b6264b1588ba56b7))
67
+ * **deps-dev:** Bump eslint-plugin-jsonc from 2.6.0 to 2.7.0 ([#223](https://github.com/flex-development/mlly/issues/223)) ([0ae7a51](https://github.com/flex-development/mlly/commit/0ae7a513ddad0c0798e6c60923a3da365837f840))
68
+ * **deps-dev:** Bump eslint-plugin-markdownlint from 0.4.0 to 0.4.1 ([#195](https://github.com/flex-development/mlly/issues/195)) ([d1a22d3](https://github.com/flex-development/mlly/commit/d1a22d393918e25e1973f0f45cf1f1e83166d472))
69
+ * **deps-dev:** Bump eslint-plugin-unicorn from 45.0.2 to 46.0.0 ([#184](https://github.com/flex-development/mlly/issues/184)) ([3b6f11f](https://github.com/flex-development/mlly/commit/3b6f11f49dd334688d723d7cba04059923f5f054))
70
+ * **deps-dev:** Bump eslint-plugin-vue from 9.10.0 to 9.11.0 ([#300](https://github.com/flex-development/mlly/issues/300)) ([fb28a44](https://github.com/flex-development/mlly/commit/fb28a44348795d35ec7aa9bc2bcec52ca8f3db0f))
71
+ * **deps-dev:** Bump eslint-plugin-vue from 9.11.0 to 9.15.1 ([#366](https://github.com/flex-development/mlly/issues/366)) ([148978e](https://github.com/flex-development/mlly/commit/148978ec1f43f96954bfdd5043a62908019a4f30))
72
+ * **deps-dev:** Bump eslint-plugin-vue from 9.9.0 to 9.10.0 ([#247](https://github.com/flex-development/mlly/issues/247)) ([490b6c1](https://github.com/flex-development/mlly/commit/490b6c1843f453622970c21049a3f8bb200d1b0f))
73
+ * **deps-dev:** Bump eslint-plugin-yml from 1.5.0 to 1.6.0 ([#330](https://github.com/flex-development/mlly/issues/330)) ([09c7d6e](https://github.com/flex-development/mlly/commit/09c7d6e435618d8d8d6f06d83edf723bea02d52e))
74
+ * **deps-dev:** Bump globby from 13.1.3 to 13.1.4 ([#312](https://github.com/flex-development/mlly/issues/312)) ([9b20bc7](https://github.com/flex-development/mlly/commit/9b20bc7290404517b210f9cffd2e938fd099b391))
75
+ * **deps-dev:** Bump graphql-config from 4.4.1 to 4.5.0 ([#191](https://github.com/flex-development/mlly/issues/191)) ([469dd05](https://github.com/flex-development/mlly/commit/469dd0599871a96c0e9d9e70e95efc54cc7b4f76))
76
+ * **deps-dev:** Bump jsonc-eslint-parser from 2.1.0 to 2.2.0 ([#202](https://github.com/flex-development/mlly/issues/202)) ([5ba2562](https://github.com/flex-development/mlly/commit/5ba25621183b02b790b204a63ea1f52e9fb300d6))
77
+ * **deps-dev:** Bump lint-staged from 13.1.2 to 13.2.0 ([#203](https://github.com/flex-development/mlly/issues/203)) ([1697c1c](https://github.com/flex-development/mlly/commit/1697c1c90b63c8913cec203c1047bdb3eb7ee14c))
78
+ * **deps-dev:** Bump lint-staged from 13.2.1 to 13.2.2 ([#308](https://github.com/flex-development/mlly/issues/308)) ([342bbe3](https://github.com/flex-development/mlly/commit/342bbe33bf683c5e43bc52e9a588ea5cae019e8d))
79
+ * **deps-dev:** Bump node-fetch from 3.3.0 to 3.3.1 ([#207](https://github.com/flex-development/mlly/issues/207)) ([b96797e](https://github.com/flex-development/mlly/commit/b96797e7b78bc89fb604cc39081db6388aa5c09d))
80
+ * **deps-dev:** Bump prettier from 2.8.4 to 2.8.5 ([#230](https://github.com/flex-development/mlly/issues/230)) ([d7eedff](https://github.com/flex-development/mlly/commit/d7eedffb69161992be0aa4cb621510642ac5be9b))
81
+ * **deps-dev:** Bump prettier from 2.8.5 to 2.8.6 ([#234](https://github.com/flex-development/mlly/issues/234)) ([bbc1ea7](https://github.com/flex-development/mlly/commit/bbc1ea710da019c831e84aee93fdbc601ffafaf7))
82
+ * **deps-dev:** Bump prettier from 2.8.6 to 2.8.7 ([#252](https://github.com/flex-development/mlly/issues/252)) ([e150246](https://github.com/flex-development/mlly/commit/e1502467e8bc14bf0a7bba0399ba4dd8cd39df47))
83
+ * **deps-dev:** Bump prettier from 2.8.7 to 2.8.8 ([#299](https://github.com/flex-development/mlly/issues/299)) ([5ac8335](https://github.com/flex-development/mlly/commit/5ac8335d33759b5c5cc3cb96f229d166b1f583d5))
84
+ * **deps-dev:** Bump semver from 7.3.8 to 7.5.0 ([#287](https://github.com/flex-development/mlly/issues/287)) ([c587e41](https://github.com/flex-development/mlly/commit/c587e41c6662c1b154ed36685f2ce361a4f38415))
85
+ * **deps-dev:** Bump semver from 7.5.0 to 7.5.2 ([#365](https://github.com/flex-development/mlly/issues/365)) ([542ceb9](https://github.com/flex-development/mlly/commit/542ceb938c93ca9759c452e356b31928463ce9c4))
86
+ * **deps-dev:** Bump the conventional-changelog group with 4 updates ([#384](https://github.com/flex-development/mlly/issues/384)) ([c3dd8e2](https://github.com/flex-development/mlly/commit/c3dd8e2d077fe92a9d757e6bec76fe90253807cc))
87
+ * **deps-dev:** Bump vercel from 28.16.12 to 28.16.13 ([#193](https://github.com/flex-development/mlly/issues/193)) ([bd04323](https://github.com/flex-development/mlly/commit/bd043231183250092dda462076695a4a1cdda7b7))
88
+ * **deps-dev:** Bump vercel from 28.16.13 to 28.16.15 ([#194](https://github.com/flex-development/mlly/issues/194)) ([ed452f3](https://github.com/flex-development/mlly/commit/ed452f3c327040ef10fa629ea5f733783755bc7b))
89
+ * **deps-dev:** Bump vercel from 28.16.15 to 28.17.0 ([#218](https://github.com/flex-development/mlly/issues/218)) ([58e41d6](https://github.com/flex-development/mlly/commit/58e41d6a17679e5d8f70d1fb430ace6cffcafff7))
90
+ * **deps-dev:** Bump vercel from 28.17.0 to 28.18.0 ([#244](https://github.com/flex-development/mlly/issues/244)) ([ce91665](https://github.com/flex-development/mlly/commit/ce916655c76604f3962c3d3808b6e05c0991de3d))
91
+ * **deps-dev:** Bump vercel from 28.18.0 to 28.18.1 ([#246](https://github.com/flex-development/mlly/issues/246)) ([c5a37e7](https://github.com/flex-development/mlly/commit/c5a37e70cd0012f759fb6d6cbd1f9c1d348aeaac))
92
+ * **deps-dev:** Bump vercel from 28.18.4 to 29.0.3 ([#315](https://github.com/flex-development/mlly/issues/315)) ([4d06c3f](https://github.com/flex-development/mlly/commit/4d06c3f6167974d8022b0a7867e9e0951664235c))
93
+ * **deps-dev:** Bump vercel from 29.0.3 to 29.1.1 ([#319](https://github.com/flex-development/mlly/issues/319)) ([2718fd2](https://github.com/flex-development/mlly/commit/2718fd2596db80e20035e8f6878c839824c3b588))
94
+ * **deps-dev:** Bump vite from 4.1.4 to 4.2.0 ([#217](https://github.com/flex-development/mlly/issues/217)) ([4439d01](https://github.com/flex-development/mlly/commit/4439d01a603634525103c2182ab6bb1f47b984d8))
95
+ * **deps-dev:** Bump vite from 4.2.0 to 4.2.1 ([#227](https://github.com/flex-development/mlly/issues/227)) ([c116aeb](https://github.com/flex-development/mlly/commit/c116aeb2bf38cc2d25203dc76d02e0300d387b21))
96
+ * **deps-dev:** Bump vite from 4.2.1 to 4.3.3 ([#311](https://github.com/flex-development/mlly/issues/311)) ([6e266eb](https://github.com/flex-development/mlly/commit/6e266eb1b9e3f6abf1df771c9d9088fc33583ff3))
97
+ * **deps-dev:** Bump vite from 4.3.3 to 4.3.4 ([#317](https://github.com/flex-development/mlly/issues/317)) ([ebd2c7f](https://github.com/flex-development/mlly/commit/ebd2c7f02b7b19a6b8c0f79461b71b4c5a12c0c7))
98
+ * **deps-dev:** Bump vite from 4.3.4 to 4.3.5 ([#325](https://github.com/flex-development/mlly/issues/325)) ([1a0cc02](https://github.com/flex-development/mlly/commit/1a0cc0237ea79b1f547b56ebd10ecd6037cfb9c9))
99
+ * **deps-dev:** Bump vite from 4.3.5 to 4.3.9 ([#354](https://github.com/flex-development/mlly/issues/354)) ([8be7ec8](https://github.com/flex-development/mlly/commit/8be7ec860d351e333d2a6907e8215358fea64638))
100
+ * **deps-dev:** Bump vite-tsconfig-paths from 4.0.5 to 4.0.7 ([#215](https://github.com/flex-development/mlly/issues/215)) ([ead5947](https://github.com/flex-development/mlly/commit/ead59472905bd46df1b3b8c97cfc823d84d6615d))
101
+ * **deps-dev:** Bump vite-tsconfig-paths from 4.0.8 to 4.2.0 ([#284](https://github.com/flex-development/mlly/issues/284)) ([f36f485](https://github.com/flex-development/mlly/commit/f36f48594ccdc023add7e41beceb0f850ade1c49))
102
+ * **deps-dev:** Bump vitest from 0.29.2 to 0.29.3 ([#219](https://github.com/flex-development/mlly/issues/219)) ([c69317f](https://github.com/flex-development/mlly/commit/c69317f1e2f33fdc6754e45e43bd86afac0a28fc))
103
+ * **deps-dev:** Bump vitest from 0.29.3 to 0.29.7 ([#228](https://github.com/flex-development/mlly/issues/228)) ([40dc995](https://github.com/flex-development/mlly/commit/40dc9959dc1c58905073e676b1c2bfd9adb4c2bc))
104
+ * **deps-dev:** Bump vitest from 0.30.0 to 0.30.1 ([#302](https://github.com/flex-development/mlly/issues/302)) ([b83101c](https://github.com/flex-development/mlly/commit/b83101c3a290efebc9051aeb8c8480c2505115e2))
105
+ * **deps-dev:** Bump vitest from 0.30.1 to 0.31.1 ([#338](https://github.com/flex-development/mlly/issues/338)) ([de1ff70](https://github.com/flex-development/mlly/commit/de1ff7094af3ea41d401d8b4b3b9e64b0204b650))
106
+ * **deps-dev:** Bump vue-eslint-parser from 9.1.1 to 9.2.0 ([#324](https://github.com/flex-development/mlly/issues/324)) ([a407306](https://github.com/flex-development/mlly/commit/a4073065d69264679b2493538e27bba5b05a8e3b))
107
+ * **deps-dev:** Bump vue-tsc from 1.3.14 to 1.4.4 ([#297](https://github.com/flex-development/mlly/issues/297)) ([1bbd9a0](https://github.com/flex-development/mlly/commit/1bbd9a0ebb4e77d6f9c801d97dc3d0afb10830dd))
108
+ * **deps-dev:** Bump vue-tsc from 1.4.4 to 1.6.1 ([#307](https://github.com/flex-development/mlly/issues/307)) ([4612362](https://github.com/flex-development/mlly/commit/4612362fde68efd9efda1d3628c707f32443772c))
109
+ * **deps-dev:** Bump vue-tsc from 1.6.1 to 1.6.3 ([#316](https://github.com/flex-development/mlly/issues/316)) ([15a043b](https://github.com/flex-development/mlly/commit/15a043bf2c0c2fb2e1040066fc19e7ac9c6ae2ad))
110
+ * **deps-dev:** Bump vue-tsc from 1.6.3 to 1.6.4 ([#322](https://github.com/flex-development/mlly/issues/322)) ([06e0b1b](https://github.com/flex-development/mlly/commit/06e0b1bd6c08141cdc94e530c5e24b97f035b888))
111
+ * **deps-dev:** Bump yaml-eslint-parser from 1.1.0 to 1.2.0 ([#201](https://github.com/flex-development/mlly/issues/201)) ([5b2292f](https://github.com/flex-development/mlly/commit/5b2292f8eab246da927f9d33a65f155fc18c51dd))
112
+ * **deps-dev:** downgrade vue-tsc from 1.8.8 to 1.7.8 ([a819ecf](https://github.com/flex-development/mlly/commit/a819ecf23b476519ec59fb81ccbd7da4206e28b2))
113
+ * **deps:** bump @flex-development/errnode from 1.5.0 to 2.0.0 ([08b2b30](https://github.com/flex-development/mlly/commit/08b2b3045e01502f6678a7827f264c68ff68233f))
114
+ * **deps:** Bump @flex-development/export-regex from 1.0.2 to 2.0.0 ([#392](https://github.com/flex-development/mlly/issues/392)) ([c48a8bf](https://github.com/flex-development/mlly/commit/c48a8bf48d55a740303a8e820494ba03491e3e98))
115
+ * **deps:** Bump @flex-development/import-regex from 2.0.3 to 3.0.0 ([#390](https://github.com/flex-development/mlly/issues/390)) ([ba59420](https://github.com/flex-development/mlly/commit/ba594207c15843873de0d88c2cadd033483bc17c))
116
+ * **deps:** Bump @flex-development/is-builtin from 2.0.0 to 3.1.0 ([#382](https://github.com/flex-development/mlly/issues/382)) ([2d567b8](https://github.com/flex-development/mlly/commit/2d567b8c4b5042f4ad3e8718d4aef77c38160862))
117
+ * **deps:** Bump @flex-development/pathe from 1.0.3 to 2.0.0 ([#386](https://github.com/flex-development/mlly/issues/386)) ([cf8fd66](https://github.com/flex-development/mlly/commit/cf8fd6695b6adef6bc49ab1cc7518d17bb0175ed))
118
+ * **deps:** Bump @flex-development/pkg-types from 2.0.0 to 3.0.0 ([#391](https://github.com/flex-development/mlly/issues/391)) ([2f3161c](https://github.com/flex-development/mlly/commit/2f3161c4c53324254be9cc8dce68fdf6786a7d46))
119
+ * **nvm:** require `>=16.20.0` ([52c6b4a](https://github.com/flex-development/mlly/commit/52c6b4ab35e6f7eab281dbb6b2580e2e39042e83))
120
+
121
+
122
+ ### :robot: Continuous Integration
123
+
124
+ * [[@dependabot](https://github.com/dependabot)] configure grouped version updates ([aa7ce00](https://github.com/flex-development/mlly/commit/aa7ce00bb85ec023de450e712bab07b1865f5644))
125
+ * **deps:** Bump actions/add-to-project from 0.4.1 to 0.5.0 ([#266](https://github.com/flex-development/mlly/issues/266)) ([81827a0](https://github.com/flex-development/mlly/commit/81827a0bf87ea09044f993d2e4260cad3c45f3c2))
126
+ * **deps:** Bump actions/cache from 3.2.6 to 3.3.0 ([#199](https://github.com/flex-development/mlly/issues/199)) ([7af3a0a](https://github.com/flex-development/mlly/commit/7af3a0ac3b826f87ffb2ed2cf9d402d80ee97729))
127
+ * **deps:** Bump actions/cache from 3.3.0 to 3.3.1 ([#206](https://github.com/flex-development/mlly/issues/206)) ([1221632](https://github.com/flex-development/mlly/commit/12216326ceee15734efdd3f6457c4433587143d4))
128
+ * **deps:** Bump actions/checkout from 3.3.0 to 3.4.0 ([#213](https://github.com/flex-development/mlly/issues/213)) ([06cad61](https://github.com/flex-development/mlly/commit/06cad61f8e4dba42f13ed86a982a5e7dd368dfaf))
129
+ * **deps:** Bump actions/checkout from 3.4.0 to 3.5.0 ([#249](https://github.com/flex-development/mlly/issues/249)) ([3870f48](https://github.com/flex-development/mlly/commit/3870f48ce028e6b1934daa998764474e2437871b))
130
+ * **deps:** Bump actions/checkout from 3.5.0 to 3.5.1 ([#283](https://github.com/flex-development/mlly/issues/283)) ([78e871a](https://github.com/flex-development/mlly/commit/78e871a337d11d1d6fa934ecc3687bf7dd1802d2))
131
+ * **deps:** Bump actions/checkout from 3.5.1 to 3.5.2 ([#285](https://github.com/flex-development/mlly/issues/285)) ([3faa3e3](https://github.com/flex-development/mlly/commit/3faa3e3382e4d3732bce00fa8c9df39a1bac61f5))
132
+ * **deps:** Bump actions/checkout from 3.5.2 to 3.5.3 ([#362](https://github.com/flex-development/mlly/issues/362)) ([c882299](https://github.com/flex-development/mlly/commit/c882299d6b2a7afd7f4272ce2c1b99012baf67e8))
133
+ * **deps:** Bump actions/github-script from 6.4.0 to 6.4.1 ([#271](https://github.com/flex-development/mlly/issues/271)) ([9f4a68b](https://github.com/flex-development/mlly/commit/9f4a68b68b1d0d50360a68e09f566f55f29c6bca))
134
+ * **deps:** Bump actions/setup-node from 3.6.0 to 3.7.0 ([#374](https://github.com/flex-development/mlly/issues/374)) ([45f980b](https://github.com/flex-development/mlly/commit/45f980bc536d66f998ab13868ec4603ce3ac4ab1))
135
+ * **deps:** Bump codecov/codecov-action from 3.1.1 to 3.1.2 ([#281](https://github.com/flex-development/mlly/issues/281)) ([d401d4c](https://github.com/flex-development/mlly/commit/d401d4c8c496e9a99ac1cba36b5eda9a27745279))
136
+ * **deps:** Bump codecov/codecov-action from 3.1.2 to 3.1.3 ([#292](https://github.com/flex-development/mlly/issues/292)) ([1f95f86](https://github.com/flex-development/mlly/commit/1f95f86540a100f3b7aa0b940bd5093778b744c9))
137
+ * **deps:** Bump codecov/codecov-action from 3.1.3 to 3.1.4 ([#336](https://github.com/flex-development/mlly/issues/336)) ([5555d05](https://github.com/flex-development/mlly/commit/5555d05a74553fa7641019d9c1ddbe6bb53ae6da))
138
+ * **deps:** Bump crazy-max/ghaction-import-gpg from 5.2.0 to 5.3.0 ([#328](https://github.com/flex-development/mlly/issues/328)) ([8c9cb26](https://github.com/flex-development/mlly/commit/8c9cb263e8ad4d2bad54ba3d1ff2004af2ec1460))
139
+ * **deps:** Bump dependabot/fetch-metadata from 1.3.6 to 1.4.0 ([#286](https://github.com/flex-development/mlly/issues/286)) ([b503dbb](https://github.com/flex-development/mlly/commit/b503dbb239a3c4ed5311ff05dc94c85cb3188daf))
140
+ * **deps:** Bump dependabot/fetch-metadata from 1.4.0 to 1.5.0 ([#344](https://github.com/flex-development/mlly/issues/344)) ([9396914](https://github.com/flex-development/mlly/commit/9396914fbbb4b02b18eb9352b6f2d8772e3720c7))
141
+ * **deps:** Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 ([#346](https://github.com/flex-development/mlly/issues/346)) ([507e03c](https://github.com/flex-development/mlly/commit/507e03c6d7a9b90390857ad1ab9cf036c5c5de23))
142
+ * **deps:** Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 ([#369](https://github.com/flex-development/mlly/issues/369)) ([626d9bb](https://github.com/flex-development/mlly/commit/626d9bb2631e6476a45bcd23ecd20ca66d45e900))
143
+ * **deps:** Bump dessant/lock-threads from 4.0.0 to 4.0.1 ([#363](https://github.com/flex-development/mlly/issues/363)) ([2e8e845](https://github.com/flex-development/mlly/commit/2e8e845a8804f7a0cd428da8c430f0f9782deeb7))
144
+ * **deps:** Bump octokit/graphql-action from 2.2.23 to 2.2.24 ([#275](https://github.com/flex-development/mlly/issues/275)) ([c5ac607](https://github.com/flex-development/mlly/commit/c5ac607a9fedddad184975877a2089d2097373c5))
145
+ * **deps:** Bump octokit/graphql-action from 2.2.24 to 2.2.25 ([#378](https://github.com/flex-development/mlly/issues/378)) ([37ceae2](https://github.com/flex-development/mlly/commit/37ceae2268450168c37e0a1eba0dfba866513d65))
146
+ * **workflows:** [`approve-pr`] remove `dependabot-metadata` condition ([bc1bc20](https://github.com/flex-development/mlly/commit/bc1bc2025b4d4ddb601ac10d604428f269d792d8))
147
+ * **workflows:** [`ci`] add `github.run_number` check to `commitlint` job ([ed64d9c](https://github.com/flex-development/mlly/commit/ed64d9c3b2689e6bf379043254e9178e78029183))
148
+ * **workflows:** [`ci`] add `lcov.info` file check to `codecov` job ([c071fd9](https://github.com/flex-development/mlly/commit/c071fd9710cbacfa2815f9dadba4c616144a6466))
149
+ * **workflows:** [`ci`] add `pkg-size-report` ([586421d](https://github.com/flex-development/mlly/commit/586421d962bdb69c78895c04315ae069e9a3b883))
150
+ * **workflows:** [`ci`] add `pkg-size-report` step to `build` job ([676186b](https://github.com/flex-development/mlly/commit/676186bd1426cb67ab9eefd61198a5f127cb4c79))
151
+ * **workflows:** [`pkg-size-report`] add missing `yarn` step ([5277fa9](https://github.com/flex-development/mlly/commit/5277fa9912a8e44d5b3667fb7243049d2f768005))
152
+ * **workflows:** [`pkg-size-report`] allow [@dependabot](https://github.com/dependabot) pull requests ([c24c816](https://github.com/flex-development/mlly/commit/c24c81671c18d8cd39b313d2010e5c8a5702bee6))
153
+ * **workflows:** [`pkg-size-report`] fix `build-command` ([d2e67fa](https://github.com/flex-development/mlly/commit/d2e67faf1dbc8c7e6540191f55e6585b842b06af))
154
+ * **workflows:** [`pkg-size-report`] set report mode to `head-only` ([303eb54](https://github.com/flex-development/mlly/commit/303eb54baff7745e5c93b778b7fa754e8220f6ce))
155
+ * **workflows:** add `cache-cleanup` ([94dc35e](https://github.com/flex-development/mlly/commit/94dc35e5a5ec58c89f6aa95c29454505fe8efc19))
156
+ * **workflows:** add `infrastructure` ([0308409](https://github.com/flex-development/mlly/commit/03084099723cb7f3b1e015f134e3ce40bb34e29b))
157
+ * **workflows:** remove `pkg-size-report` ([c29f74c](https://github.com/flex-development/mlly/commit/c29f74c825e92592e29073e8e98a8b5896325f00))
158
+
159
+
160
+ ### :pencil: Documentation
161
+
162
+ * [site] configure vercel web analytics ([7c64268](https://github.com/flex-development/mlly/commit/7c64268eb92a0409c4c26f6214ddf20ccb6fd80d))
163
+ * [site] remove duplicate algolia preconnect link ([d56e322](https://github.com/flex-development/mlly/commit/d56e322a6ca8efbff1ce71d39babd5a394d63f77))
164
+ * [site] use `themeConfig.search` ([d047114](https://github.com/flex-development/mlly/commit/d0471140af56d3cd5e47c81444347cc05dbaa5f7))
165
+ * [site] use vitepress sitemap generator ([aab231d](https://github.com/flex-development/mlly/commit/aab231d2742a9150b65904e5554f4a1e5230d84b))
166
+ * **pkg:** set `homepage` to https://mlly.vercel.app ([380dd8e](https://github.com/flex-development/mlly/commit/380dd8e7c3a7abdc02a10606e9e3a7436d0c85a0))
167
+ * **workflows:** update reference links ([70fb096](https://github.com/flex-development/mlly/commit/70fb0967de7b8d3b95af43fa4bd8db10dc5babb1))
168
+
169
+
170
+ ### :sparkles: Features
171
+
172
+ * **utils:** `isDirectory`, `isFile` ([920c24f](https://github.com/flex-development/mlly/commit/920c24f876d16f25b41c459ed065efd19435131b))
173
+
174
+
175
+ ### :house_with_garden: Housekeeping
176
+
177
+ * analyze types distribution ([cc34d88](https://github.com/flex-development/mlly/commit/cc34d88a38f297974591e6b611b98d0926b30174))
178
+ * eslint-plugin-import@2.28.0 prep ([9054ed8](https://github.com/flex-development/mlly/commit/9054ed85a517539e8fb12df32bef6f6a63ffc54c))
179
+ * sync config files ([cbbde6e](https://github.com/flex-development/mlly/commit/cbbde6e030e095938ddf84e9e070a3bcd50bc393))
180
+ * update dev and test environments ([037e2c0](https://github.com/flex-development/mlly/commit/037e2c0f31df5c39ef8eeeb5e19e01eeb48726ea))
181
+
182
+ ## [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)
183
+
184
+
185
+ ### :package: Build
186
+
187
+ * **deps-dev:** Bump @flex-development/mkbuild from 1.0.0-alpha.14 to 1.0.0-alpha.15 ([#179](https://github.com/flex-development/mlly/issues/179)) ([b3ae5a9](https://github.com/flex-development/mlly/commit/b3ae5a987ace837faa9a5a9bdee4971ac4631056))
188
+
189
+
190
+ ### :robot: Continuous Integration
191
+
192
+ * **workflows:** add `auto-merge` ([5c93310](https://github.com/flex-development/mlly/commit/5c933108f98316c1092e7c90824ddccef798c685))
193
+
194
+
195
+ ### :bug: Fixes
196
+
197
+ * **utils:** [`toBareSpecifier`] remove `@types/` prefix ([29120fa](https://github.com/flex-development/mlly/commit/29120faadeb97e3c2a711ede8b8dcbc35951279a))
198
+
199
+
200
+ ### :white_check_mark: Testing
201
+
202
+ * **ts:** cleanup base tsconfig file ([7b665ee](https://github.com/flex-development/mlly/commit/7b665eed3d02fae2109095e047c74092b30ef55a))
203
+
1
204
  ## [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)
2
205
 
3
206
 
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # mlly
2
2
 
3
+ [![github release](https://img.shields.io/github/v/release/flex-development/mlly.svg?include_prereleases&sort=semver)](https://github.com/flex-development/mlly/releases/latest)
3
4
  [![npm](https://img.shields.io/npm/v/@flex-development/mlly.svg)](https://npmjs.com/package/@flex-development/mlly)
4
5
  [![codecov](https://codecov.io/gh/flex-development/mlly/branch/main/graph/badge.svg?token=36NUNRH6FW)](https://codecov.io/gh/flex-development/mlly)
5
6
  [![module type: esm](https://img.shields.io/badge/module%20type-esm-brightgreen)](https://github.com/voxpelli/badges-cjs-esm)
@@ -1,10 +1,4 @@
1
- var AssertType = /* @__PURE__ */ ((AssertType2) => {
2
- AssertType2["IMPLICIT"] = "javascript";
3
- AssertType2["JSON"] = "json";
4
- return AssertType2;
5
- })(AssertType || {});
6
- var assert_type_default = AssertType;
1
+ var AssertType = /* @__PURE__ */ ((AssertType2) => (AssertType2.IMPLICIT = "javascript", AssertType2.JSON = "json", AssertType2))(AssertType || {}), assert_type_default = AssertType;
7
2
  export {
8
3
  assert_type_default as default
9
4
  };
10
- //# sourceMappingURL=assert-type.mjs.map
@@ -1,13 +1,4 @@
1
- var Format = /* @__PURE__ */ ((Format2) => {
2
- Format2["BUILTIN"] = "builtin";
3
- Format2["COMMONJS"] = "commonjs";
4
- Format2["JSON"] = "json";
5
- Format2["MODULE"] = "module";
6
- Format2["WASM"] = "wasm";
7
- return Format2;
8
- })(Format || {});
9
- var format_default = Format;
1
+ var Format = /* @__PURE__ */ ((Format2) => (Format2.BUILTIN = "builtin", Format2.COMMONJS = "commonjs", Format2.JSON = "json", Format2.MODULE = "module", Format2.WASM = "wasm", Format2))(Format || {}), format_default = Format;
10
2
  export {
11
3
  format_default as default
12
4
  };
13
- //# sourceMappingURL=format.mjs.map
@@ -12,4 +12,3 @@ export {
12
12
  default6 as StatementKind,
13
13
  default7 as StatementSyntaxKind
14
14
  };
15
- //# sourceMappingURL=index.mjs.map
@@ -1,10 +1,4 @@
1
- var SpecifierSyntaxKind = /* @__PURE__ */ ((SpecifierSyntaxKind2) => {
2
- SpecifierSyntaxKind2["DYNAMIC"] = "dynamic";
3
- SpecifierSyntaxKind2["STATIC"] = "static";
4
- return SpecifierSyntaxKind2;
5
- })(SpecifierSyntaxKind || {});
6
- var kind_specifier_syntax_default = SpecifierSyntaxKind;
1
+ var SpecifierSyntaxKind = /* @__PURE__ */ ((SpecifierSyntaxKind2) => (SpecifierSyntaxKind2.DYNAMIC = "dynamic", SpecifierSyntaxKind2.STATIC = "static", SpecifierSyntaxKind2))(SpecifierSyntaxKind || {}), kind_specifier_syntax_default = SpecifierSyntaxKind;
7
2
  export {
8
3
  kind_specifier_syntax_default as default
9
4
  };
10
- //# sourceMappingURL=kind-specifier-syntax.mjs.map
@@ -1,11 +1,4 @@
1
- var SpecifierKind = /* @__PURE__ */ ((SpecifierKind2) => {
2
- SpecifierKind2["ABSOLUTE"] = "absolute";
3
- SpecifierKind2["BARE"] = "bare";
4
- SpecifierKind2["RELATIVE"] = "relative";
5
- return SpecifierKind2;
6
- })(SpecifierKind || {});
7
- var kind_specifier_default = SpecifierKind;
1
+ var SpecifierKind = /* @__PURE__ */ ((SpecifierKind2) => (SpecifierKind2.ABSOLUTE = "absolute", SpecifierKind2.BARE = "bare", SpecifierKind2.RELATIVE = "relative", SpecifierKind2))(SpecifierKind || {}), kind_specifier_default = SpecifierKind;
8
2
  export {
9
3
  kind_specifier_default as default
10
4
  };
11
- //# sourceMappingURL=kind-specifier.mjs.map
@@ -1,18 +1,4 @@
1
- var StatementSyntaxKind = /* @__PURE__ */ ((StatementSyntaxKind2) => {
2
- StatementSyntaxKind2["DECLARATION"] = "declaration";
3
- StatementSyntaxKind2["DEFAULT"] = "default";
4
- StatementSyntaxKind2["DEFAULT_WITH_NAMED"] = "default-with-named";
5
- StatementSyntaxKind2["DEFAULT_WITH_NAMESPACE"] = "default-with-namespace";
6
- StatementSyntaxKind2["DYNAMIC"] = "dynamic";
7
- StatementSyntaxKind2["LIST"] = "list";
8
- StatementSyntaxKind2["NAMED"] = "named";
9
- StatementSyntaxKind2["NAMESPACE"] = "namespace";
10
- StatementSyntaxKind2["REQUIRE"] = "require";
11
- StatementSyntaxKind2["SIDE_EFFECT"] = "side-effect";
12
- return StatementSyntaxKind2;
13
- })(StatementSyntaxKind || {});
14
- var kind_statement_syntax_default = StatementSyntaxKind;
1
+ var StatementSyntaxKind = /* @__PURE__ */ ((StatementSyntaxKind2) => (StatementSyntaxKind2.DECLARATION = "declaration", StatementSyntaxKind2.DEFAULT = "default", StatementSyntaxKind2.DEFAULT_WITH_NAMED = "default-with-named", StatementSyntaxKind2.DEFAULT_WITH_NAMESPACE = "default-with-namespace", StatementSyntaxKind2.DYNAMIC = "dynamic", StatementSyntaxKind2.LIST = "list", StatementSyntaxKind2.NAMED = "named", StatementSyntaxKind2.NAMESPACE = "namespace", StatementSyntaxKind2.REQUIRE = "require", StatementSyntaxKind2.SIDE_EFFECT = "side-effect", StatementSyntaxKind2))(StatementSyntaxKind || {}), kind_statement_syntax_default = StatementSyntaxKind;
15
2
  export {
16
3
  kind_statement_syntax_default as default
17
4
  };
18
- //# sourceMappingURL=kind-statement-syntax.mjs.map
@@ -1,11 +1,4 @@
1
- var StatementKind = /* @__PURE__ */ ((StatementKind2) => {
2
- StatementKind2["EXPORT"] = "export";
3
- StatementKind2["IMPORT"] = "import";
4
- StatementKind2["REQUIRE"] = "require";
5
- return StatementKind2;
6
- })(StatementKind || {});
7
- var kind_statement_default = StatementKind;
1
+ var StatementKind = /* @__PURE__ */ ((StatementKind2) => (StatementKind2.EXPORT = "export", StatementKind2.IMPORT = "import", StatementKind2.REQUIRE = "require", StatementKind2))(StatementKind || {}), kind_statement_default = StatementKind;
8
2
  export {
9
3
  kind_statement_default as default
10
4
  };
11
- //# sourceMappingURL=kind-statement.mjs.map
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../src/index.ts"],
3
+ "sources": [
4
+ "src/index.ts"
5
+ ],
6
+ "sourceRoot": "https:/github.com/flex-development/mlly/blob/1.0.0-alpha.16",
4
7
  "mappings": "AAKA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;",
5
8
  "names": []
6
- }
9
+ }
@@ -3,7 +3,6 @@
3
3
  * @module mlly/interfaces/DynamicImport
4
4
  */
5
5
  import type { StatementSyntaxKind } from '../enums/index.mjs';
6
- import type { SyntaxKindImport } from '../types/index.mjs';
7
6
  import type { EmptyString, LiteralUnion } from '@flex-development/tutils';
8
7
  import type ImportStatement from './statement-import.mjs';
9
8
  /**
@@ -11,7 +10,6 @@ import type ImportStatement from './statement-import.mjs';
11
10
  *
12
11
  * @see {@linkcode ImportStatement}
13
12
  * @see {@linkcode StatementSyntaxKind}
14
- * @see {@linkcode SyntaxKindImport}
15
13
  * @see https://developer.mozilla.org/docs/Web/JavaScript/Reference/Operators/import
16
14
  *
17
15
  * @extends {ImportStatement}
@@ -38,6 +36,6 @@ interface DynamicImport extends ImportStatement {
38
36
  /**
39
37
  * Statement syntax kind.
40
38
  */
41
- syntax: Extract<SyntaxKindImport, StatementSyntaxKind.DYNAMIC>;
39
+ syntax: StatementSyntaxKind.DYNAMIC;
42
40
  }
43
41
  export type { DynamicImport as default };
@@ -3,7 +3,6 @@
3
3
  * @module mlly/interfaces/StaticImport
4
4
  */
5
5
  import type { StatementSyntaxKind } from '../enums/index.mjs';
6
- import type { SyntaxKindImport } from '../types/index.mjs';
7
6
  import type { EmptyString, LiteralUnion } from '@flex-development/tutils';
8
7
  import type ImportStatement from './statement-import.mjs';
9
8
  /**
@@ -11,7 +10,6 @@ import type ImportStatement from './statement-import.mjs';
11
10
  *
12
11
  * @see {@linkcode ImportStatement}
13
12
  * @see {@linkcode StatementSyntaxKind}
14
- * @see {@linkcode SyntaxKindImport}
15
13
  *
16
14
  * @extends {ImportStatement}
17
15
  */
@@ -28,7 +26,7 @@ interface StaticImport extends ImportStatement {
28
26
  /**
29
27
  * Statement syntax kind.
30
28
  */
31
- syntax: Extract<SyntaxKindImport, StatementSyntaxKind.DEFAULT | StatementSyntaxKind.DEFAULT_WITH_NAMED | StatementSyntaxKind.DEFAULT_WITH_NAMESPACE | StatementSyntaxKind.NAMED | StatementSyntaxKind.NAMESPACE | StatementSyntaxKind.SIDE_EFFECT>;
29
+ syntax: StatementSyntaxKind.DEFAULT | StatementSyntaxKind.DEFAULT_WITH_NAMED | StatementSyntaxKind.DEFAULT_WITH_NAMESPACE | StatementSyntaxKind.NAMED | StatementSyntaxKind.NAMESPACE | StatementSyntaxKind.SIDE_EFFECT;
32
30
  /**
33
31
  * Type-only import statement check.
34
32
  */
@@ -1 +0,0 @@
1
- //# sourceMappingURL=index.mjs.map
@@ -3,6 +3,7 @@
3
3
  * @module mlly/interfaces/FindSubpathOptions
4
4
  */
5
5
  import type { ModuleId } from '../types/index.mjs';
6
+ import type { Optional } from '@flex-development/tutils';
6
7
  /**
7
8
  * Subpath search options.
8
9
  *
@@ -16,7 +17,7 @@ interface FindSubpathOptions {
16
17
  *
17
18
  * @default 'default'
18
19
  */
19
- condition?: string | undefined;
20
+ condition?: Optional<string>;
20
21
  /**
21
22
  * Export conditions.
22
23
  *
@@ -26,7 +27,7 @@ interface FindSubpathOptions {
26
27
  *
27
28
  * @default CONDITIONS
28
29
  */
29
- conditions?: Set<string> | undefined;
30
+ conditions?: Optional<Set<string>>;
30
31
  /**
31
32
  * URL of directory containing relevant `package.json` file.
32
33
  */
@@ -38,7 +39,7 @@ interface FindSubpathOptions {
38
39
  *
39
40
  * @default false
40
41
  */
41
- internal?: boolean | undefined;
42
+ internal?: Optional<boolean>;
42
43
  /**
43
44
  * URL of module to resolve from.
44
45
  *
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import type { Format } from '../enums/index.mjs';
6
6
  import type { Ext } from '@flex-development/pathe';
7
- import type { EmptyString } from '@flex-development/tutils';
7
+ import type { EmptyString, Optional } from '@flex-development/tutils';
8
8
  /**
9
9
  * Module format retrieval options.
10
10
  *
@@ -20,7 +20,7 @@ interface GetFormatOptions {
20
20
  *
21
21
  * @default true
22
22
  */
23
- experimental_json_modules?: boolean | undefined;
23
+ experimental_json_modules?: Optional<boolean>;
24
24
  /**
25
25
  * Enable support for network based modules.
26
26
  *
@@ -32,7 +32,7 @@ interface GetFormatOptions {
32
32
  *
33
33
  * @default false
34
34
  */
35
- experimental_network_imports?: boolean | undefined;
35
+ experimental_network_imports?: Optional<boolean>;
36
36
  /**
37
37
  * Enable support for WebAssembly modules.
38
38
  *
@@ -40,13 +40,13 @@ interface GetFormatOptions {
40
40
  *
41
41
  * @default false
42
42
  */
43
- experimental_wasm_modules?: boolean | undefined;
43
+ experimental_wasm_modules?: Optional<boolean>;
44
44
  /**
45
45
  * Map file extensions to module formats.
46
46
  *
47
47
  * @default EXTENSION_FORMAT_MAP
48
48
  */
49
- extension_format_map?: Map<EmptyString | Ext, Format> | undefined;
49
+ extension_format_map?: Optional<Map<EmptyString | Ext, Format>>;
50
50
  /**
51
51
  * Return `undefined` when module format is not found, rather than `null`.
52
52
  *
@@ -57,7 +57,7 @@ interface GetFormatOptions {
57
57
  *
58
58
  * @default false
59
59
  */
60
- ignore_errors?: boolean | undefined;
60
+ ignore_errors?: Optional<boolean>;
61
61
  /**
62
62
  * Request options for network based modules.
63
63
  *
@@ -68,6 +68,6 @@ interface GetFormatOptions {
68
68
  * @default {}
69
69
  */
70
70
  // @ts-ignore peer dependency
71
- req?: import('node-fetch').RequestInit | undefined;
71
+ req?: Optional<import('node-fetch').RequestInit>;
72
72
  }
73
73
  export type { GetFormatOptions as default };
@@ -3,6 +3,7 @@
3
3
  * @module mlly/interfaces/GetSourceOptions
4
4
  */
5
5
  import type { Format } from '../enums/index.mjs';
6
+ import type { Optional, OrLowercase } from '@flex-development/tutils';
6
7
  /**
7
8
  * Source code retrieval options.
8
9
  *
@@ -21,7 +22,7 @@ interface GetSourceOptions {
21
22
  *
22
23
  * @default false
23
24
  */
24
- experimental_network_imports?: boolean | undefined;
25
+ experimental_network_imports?: Optional<boolean>;
25
26
  /**
26
27
  * Module format hint.
27
28
  *
@@ -29,7 +30,7 @@ interface GetSourceOptions {
29
30
  *
30
31
  * @default undefined
31
32
  */
32
- format?: Format | Lowercase<keyof typeof Format> | undefined;
33
+ format?: Optional<OrLowercase<Format>>;
33
34
  /**
34
35
  * Ignore [`ERR_UNSUPPORTED_ESM_URL_SCHEME`][1] if thrown.
35
36
  *
@@ -37,7 +38,7 @@ interface GetSourceOptions {
37
38
  *
38
39
  * @default false
39
40
  */
40
- ignore_errors?: boolean | undefined;
41
+ ignore_errors?: Optional<boolean>;
41
42
  /**
42
43
  * Request options for network based modules.
43
44
  *
@@ -48,6 +49,6 @@ interface GetSourceOptions {
48
49
  * @default {}
49
50
  */
50
51
  // @ts-ignore peer dependency
51
- req?: import('node-fetch').RequestInit | undefined;
52
+ req?: Optional<import('node-fetch').RequestInit>;
52
53
  }
53
54
  export type { GetSourceOptions as default };
@@ -3,6 +3,7 @@
3
3
  * @module mlly/interfaces/ParseModuleIdOptions
4
4
  */
5
5
  import type { ModuleId } from '../types/index.mjs';
6
+ import type { Optional } from '@flex-development/tutils';
6
7
  /**
7
8
  * Module id parsing options.
8
9
  *
@@ -16,7 +17,7 @@ interface ParseModuleIdOptions {
16
17
  *
17
18
  * @default id instanceof URL ? false : id.startsWith('#')
18
19
  */
19
- internal?: boolean | undefined;
20
+ internal?: Optional<boolean>;
20
21
  /**
21
22
  * URL of module to resolve from.
22
23
  *
@@ -24,10 +25,10 @@ interface ParseModuleIdOptions {
24
25
  *
25
26
  * @default undefined
26
27
  */
27
- parent?: ModuleId | undefined;
28
+ parent?: Optional<ModuleId>;
28
29
  /**
29
30
  * Ensure module id begins with a valid package name.
30
31
  */
31
- pkgname?: boolean | undefined;
32
+ pkgname?: Optional<boolean>;
32
33
  }
33
34
  export type { ParseModuleIdOptions as default };
@@ -3,6 +3,7 @@
3
3
  * @module mlly/interfaces/ParseSubpathOptions
4
4
  */
5
5
  import type { ModuleId } from '../types/index.mjs';
6
+ import type { Optional } from '@flex-development/tutils';
6
7
  /**
7
8
  * Subpath parsing options.
8
9
  *
@@ -16,7 +17,7 @@ interface ParseSubpathOptions {
16
17
  *
17
18
  * @default 'default'
18
19
  */
19
- condition?: string | undefined;
20
+ condition?: Optional<string>;
20
21
  /**
21
22
  * Export conditions.
22
23
  *
@@ -26,7 +27,7 @@ interface ParseSubpathOptions {
26
27
  *
27
28
  * @default CONDITIONS
28
29
  */
29
- conditions?: Set<string> | string[] | undefined;
30
+ conditions?: Optional<Set<string> | string[]>;
30
31
  /**
31
32
  * URL of directory containing relevant `package.json` file.
32
33
  */
@@ -38,7 +39,7 @@ interface ParseSubpathOptions {
38
39
  *
39
40
  * @default specifier.startsWith('#')
40
41
  */
41
- internal?: boolean | undefined;
42
+ internal?: Optional<boolean>;
42
43
  /**
43
44
  * URL of module to resolve from.
44
45
  *