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