@flex-development/mlly 1.0.0-alpha.1 → 1.0.0-alpha.10
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 +412 -3
- package/README.md +6 -4
- package/changelog.config.ts +404 -0
- package/dist/enums/assert-type.d.mts +21 -0
- package/dist/enums/assert-type.mjs +10 -0
- package/dist/enums/assert-type.mjs.map +6 -0
- package/dist/enums/format.d.mts +17 -0
- package/dist/enums/format.mjs +13 -0
- package/dist/enums/format.mjs.map +6 -0
- package/dist/enums/index.d.mts +10 -0
- package/dist/enums/index.mjs +15 -0
- package/dist/enums/index.mjs.map +6 -0
- package/dist/enums/kind-specifier-syntax.d.mts +14 -0
- package/dist/enums/kind-specifier-syntax.mjs +10 -0
- package/dist/enums/kind-specifier-syntax.mjs.map +6 -0
- package/dist/enums/kind-specifier.d.mts +17 -0
- package/dist/enums/kind-specifier.mjs +11 -0
- package/dist/enums/kind-specifier.mjs.map +6 -0
- package/dist/enums/kind-statement-syntax.d.mts +22 -0
- package/dist/enums/kind-statement-syntax.mjs +18 -0
- package/dist/enums/kind-statement-syntax.mjs.map +6 -0
- package/dist/enums/kind-statement.d.mts +15 -0
- package/dist/enums/kind-statement.mjs +11 -0
- package/dist/enums/kind-statement.mjs.map +6 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +6 -0
- package/dist/interfaces/import-assertions.d.mts +20 -0
- package/dist/interfaces/import-dynamic.d.mts +26 -6
- package/dist/interfaces/import-static.d.mts +22 -4
- package/dist/interfaces/index.d.mts +12 -0
- package/dist/interfaces/index.mjs +1 -0
- package/dist/interfaces/index.mjs.map +6 -0
- package/dist/interfaces/options-fill-module.d.mts +23 -0
- package/dist/interfaces/options-find-subpath.d.mts +49 -0
- package/dist/interfaces/options-get-format.d.mts +83 -0
- package/dist/interfaces/options-get-source.d.mts +63 -0
- package/dist/interfaces/options-parse-module-id.d.mts +33 -0
- package/dist/interfaces/options-parse-subpath.d.mts +31 -0
- package/dist/interfaces/options-resolve-alias.d.mts +26 -42
- package/dist/interfaces/options-resolve-module.d.mts +64 -0
- package/dist/interfaces/options-resolve.d.mts +7 -52
- package/dist/interfaces/package-scope.d.mts +25 -0
- package/dist/interfaces/parsed-data-url.d.mts +56 -0
- package/dist/interfaces/parsed-module-id.d.mts +80 -0
- package/dist/interfaces/parsed-subpath.d.mts +40 -0
- package/dist/interfaces/statement-export.d.mts +22 -9
- package/dist/interfaces/statement-import.d.mts +15 -4
- package/dist/interfaces/statement-require.d.mts +15 -4
- package/dist/interfaces/statement.d.mts +24 -8
- package/dist/internal/escape-reg-exp.d.mts +16 -0
- package/dist/internal/escape-reg-exp.mjs +10 -0
- package/dist/internal/escape-reg-exp.mjs.map +6 -0
- package/dist/internal/format-type-map.d.mts +17 -0
- package/dist/internal/format-type-map.mjs +13 -0
- package/dist/internal/format-type-map.mjs.map +6 -0
- package/dist/internal/get-specifier-kind.d.mts +17 -0
- package/dist/internal/get-specifier-kind.mjs +14 -0
- package/dist/internal/get-specifier-kind.mjs.map +6 -0
- package/dist/internal/get-subpaths.d.mts +25 -0
- package/dist/internal/get-subpaths.mjs +10 -0
- package/dist/internal/get-subpaths.mjs.map +6 -0
- package/dist/internal/is-array-index.d.mts +15 -0
- package/dist/internal/is-array-index.mjs +9 -0
- package/dist/internal/is-array-index.mjs.map +6 -0
- package/dist/internal/is-directory.d.mts +13 -0
- package/dist/internal/is-directory.mjs +16 -0
- package/dist/internal/is-directory.mjs.map +6 -0
- package/dist/internal/is-file.d.mts +13 -0
- package/dist/internal/is-file.mjs +16 -0
- package/dist/internal/is-file.mjs.map +6 -0
- package/dist/internal/is-function.d.mts +12 -0
- package/dist/internal/is-function.mjs +8 -0
- package/dist/internal/is-function.mjs.map +6 -0
- package/dist/internal/regex-encoded-sep.d.mts +13 -0
- package/dist/internal/regex-encoded-sep.mjs +6 -0
- package/dist/internal/regex-encoded-sep.mjs.map +6 -0
- package/dist/internal/regex-internal-specifier.d.mts +14 -0
- package/dist/internal/regex-internal-specifier.mjs +6 -0
- package/dist/internal/regex-internal-specifier.mjs.map +6 -0
- package/dist/internal/regex-package-name.d.mts +13 -0
- package/dist/internal/regex-package-name.mjs +6 -0
- package/dist/internal/regex-package-name.mjs.map +6 -0
- package/dist/internal/regex-package-path.d.mts +15 -0
- package/dist/internal/regex-package-path.mjs +6 -0
- package/dist/internal/regex-package-path.mjs.map +6 -0
- package/dist/internal/resolver.d.mts +130 -0
- package/dist/internal/resolver.mjs +500 -0
- package/dist/internal/resolver.mjs.map +6 -0
- package/dist/internal/validate-boolean.d.mts +20 -0
- package/dist/internal/validate-boolean.mjs +11 -0
- package/dist/internal/validate-boolean.mjs.map +6 -0
- package/dist/internal/validate-object.d.mts +23 -0
- package/dist/internal/validate-object.mjs +11 -0
- package/dist/internal/validate-object.mjs.map +6 -0
- package/dist/internal/validate-set.d.mts +23 -0
- package/dist/internal/validate-set.mjs +11 -0
- package/dist/internal/validate-set.mjs.map +6 -0
- package/dist/internal/validate-string.d.mts +20 -0
- package/dist/internal/validate-string.mjs +11 -0
- package/dist/internal/validate-string.mjs.map +6 -0
- package/dist/internal/validate-url-string.d.mts +22 -0
- package/dist/internal/validate-url-string.mjs +12 -0
- package/dist/internal/validate-url-string.mjs.map +6 -0
- package/dist/types/declaration.d.mts +1 -1
- package/dist/types/fn-change-ext.d.mts +28 -0
- package/dist/types/index.d.mts +8 -4
- package/dist/types/index.mjs +1 -0
- package/dist/types/index.mjs.map +6 -0
- package/dist/types/mime-type.d.mts +7 -5
- package/dist/types/module-id.d.mts +13 -0
- package/dist/types/module-specifier-type.d.mts +11 -0
- package/dist/types/protocol.d.mts +14 -0
- package/dist/types/syntax-kind-export.d.mts +12 -0
- package/dist/types/syntax-kind-import.d.mts +12 -0
- package/dist/types/syntax-kind-require.d.mts +12 -0
- package/dist/utils/compare-subpaths.d.mts +25 -0
- package/dist/utils/compare-subpaths.mjs +24 -0
- package/dist/utils/compare-subpaths.mjs.map +6 -0
- package/dist/utils/conditions.d.mts +13 -0
- package/dist/utils/conditions.mjs +6 -0
- package/dist/utils/conditions.mjs.map +6 -0
- package/dist/{lib → utils}/detect-syntax.d.mts +4 -4
- package/dist/{lib → utils}/detect-syntax.mjs +1 -0
- package/dist/utils/detect-syntax.mjs.map +6 -0
- package/dist/utils/extension-format-map.d.mts +16 -0
- package/dist/utils/extension-format-map.mjs +22 -0
- package/dist/utils/extension-format-map.mjs.map +6 -0
- package/dist/utils/extract-statements.d.mts +21 -0
- package/dist/{lib → utils}/extract-statements.mjs +4 -1
- package/dist/utils/extract-statements.mjs.map +6 -0
- package/dist/utils/fill-modules.d.mts +23 -0
- package/dist/utils/fill-modules.mjs +63 -0
- package/dist/utils/fill-modules.mjs.map +6 -0
- package/dist/utils/find-dynamic-imports.d.mts +18 -0
- package/dist/utils/find-dynamic-imports.mjs +39 -0
- package/dist/utils/find-dynamic-imports.mjs.map +6 -0
- package/dist/utils/find-exports.d.mts +21 -0
- package/dist/utils/find-exports.mjs +95 -0
- package/dist/utils/find-exports.mjs.map +6 -0
- package/dist/utils/find-requires.d.mts +18 -0
- package/dist/utils/find-requires.mjs +32 -0
- package/dist/utils/find-requires.mjs.map +6 -0
- package/dist/utils/find-static-imports.d.mts +18 -0
- package/dist/utils/find-static-imports.mjs +34 -0
- package/dist/utils/find-static-imports.mjs.map +6 -0
- package/dist/utils/find-subpath.d.mts +30 -0
- package/dist/utils/find-subpath.mjs +106 -0
- package/dist/utils/find-subpath.mjs.map +6 -0
- package/dist/utils/get-format.d.mts +24 -0
- package/dist/utils/get-format.mjs +111 -0
- package/dist/utils/get-format.mjs.map +6 -0
- package/dist/utils/get-source.d.mts +22 -0
- package/dist/utils/get-source.mjs +63 -0
- package/dist/utils/get-source.mjs.map +6 -0
- package/dist/{lib → utils}/has-cjs-syntax.d.mts +5 -2
- package/dist/utils/has-cjs-syntax.mjs +11 -0
- package/dist/utils/has-cjs-syntax.mjs.map +6 -0
- package/dist/{lib → utils}/has-esm-syntax.d.mts +5 -2
- package/dist/utils/has-esm-syntax.mjs +11 -0
- package/dist/utils/has-esm-syntax.mjs.map +6 -0
- package/dist/utils/index.d.mts +42 -0
- package/dist/utils/index.mjs +79 -0
- package/dist/utils/index.mjs.map +6 -0
- package/dist/utils/is-absolute-specifier.d.mts +19 -0
- package/dist/utils/is-absolute-specifier.mjs +25 -0
- package/dist/utils/is-absolute-specifier.mjs.map +6 -0
- package/dist/utils/is-bare-specifier.d.mts +19 -0
- package/dist/utils/is-bare-specifier.mjs +10 -0
- package/dist/utils/is-bare-specifier.mjs.map +6 -0
- package/dist/utils/is-exports-sugar.d.mts +25 -0
- package/dist/utils/is-exports-sugar.mjs +26 -0
- package/dist/utils/is-exports-sugar.mjs.map +6 -0
- package/dist/utils/is-relative-specifier.d.mts +20 -0
- package/dist/utils/is-relative-specifier.mjs +11 -0
- package/dist/utils/is-relative-specifier.mjs.map +6 -0
- package/dist/utils/lookup-package-scope.d.mts +26 -0
- package/dist/utils/lookup-package-scope.mjs +38 -0
- package/dist/utils/lookup-package-scope.mjs.map +6 -0
- package/dist/utils/parse-data-url.d.mts +25 -0
- package/dist/utils/parse-data-url.mjs +25 -0
- package/dist/utils/parse-data-url.mjs.map +6 -0
- package/dist/utils/parse-module-id.d.mts +22 -0
- package/dist/utils/parse-module-id.mjs +122 -0
- package/dist/utils/parse-module-id.mjs.map +6 -0
- package/dist/utils/parse-subpath.d.mts +35 -0
- package/dist/utils/parse-subpath.mjs +54 -0
- package/dist/utils/parse-subpath.mjs.map +6 -0
- package/dist/utils/pattern-character.d.mts +11 -0
- package/dist/utils/pattern-character.mjs +6 -0
- package/dist/utils/pattern-character.mjs.map +6 -0
- package/dist/utils/read-package-json.d.mts +26 -0
- package/dist/utils/read-package-json.mjs +43 -0
- package/dist/utils/read-package-json.mjs.map +6 -0
- package/dist/utils/resolve-alias.d.mts +20 -0
- package/dist/utils/resolve-alias.mjs +106 -0
- package/dist/utils/resolve-alias.mjs.map +6 -0
- package/dist/utils/resolve-aliases.d.mts +19 -0
- package/dist/utils/resolve-aliases.mjs +28 -0
- package/dist/utils/resolve-aliases.mjs.map +6 -0
- package/dist/utils/resolve-extensions.d.mts +14 -0
- package/dist/utils/resolve-extensions.mjs +22 -0
- package/dist/utils/resolve-extensions.mjs.map +6 -0
- package/dist/utils/resolve-module.d.mts +39 -0
- package/dist/utils/resolve-module.mjs +64 -0
- package/dist/utils/resolve-module.mjs.map +6 -0
- package/dist/utils/resolve-modules.d.mts +25 -0
- package/dist/{lib → utils}/resolve-modules.mjs +7 -10
- package/dist/utils/resolve-modules.mjs.map +6 -0
- package/dist/{lib → utils}/to-absolute-specifier.d.mts +6 -6
- package/dist/utils/to-absolute-specifier.mjs +8 -0
- package/dist/utils/to-absolute-specifier.mjs.map +6 -0
- package/dist/utils/to-bare-specifier.d.mts +42 -0
- package/dist/utils/to-bare-specifier.mjs +90 -0
- package/dist/utils/to-bare-specifier.mjs.map +6 -0
- package/dist/{lib → utils}/to-data-url.d.mts +6 -5
- package/dist/{lib → utils}/to-data-url.mjs +4 -0
- package/dist/utils/to-data-url.mjs.map +6 -0
- package/dist/utils/to-node-url.d.mts +19 -0
- package/dist/utils/to-node-url.mjs +10 -0
- package/dist/utils/to-node-url.mjs.map +6 -0
- package/dist/{lib → utils}/to-relative-specifier.d.mts +6 -6
- package/dist/{lib → utils}/to-relative-specifier.mjs +7 -3
- package/dist/utils/to-relative-specifier.mjs.map +6 -0
- package/dist/utils/to-url.d.mts +22 -0
- package/dist/utils/to-url.mjs +12 -0
- package/dist/utils/to-url.mjs.map +6 -0
- package/dist/utils/validate-assertions.d.mts +23 -0
- package/dist/utils/validate-assertions.mjs +52 -0
- package/dist/utils/validate-assertions.mjs.map +6 -0
- package/dist/utils/validate-exports.d.mts +24 -0
- package/dist/utils/validate-exports.mjs +72 -0
- package/dist/utils/validate-exports.mjs.map +6 -0
- package/package.json +106 -83
- package/src/enums/assert-type.ts +23 -0
- package/src/enums/format.ts +19 -0
- package/src/enums/index.ts +11 -0
- package/src/enums/kind-specifier-syntax.ts +16 -0
- package/src/enums/kind-specifier.ts +19 -0
- package/src/enums/kind-statement-syntax.ts +24 -0
- package/src/enums/kind-statement.ts +17 -0
- package/src/index.ts +9 -0
- package/src/interfaces/import-assertions.ts +24 -0
- package/src/interfaces/import-dynamic.ts +48 -0
- package/src/interfaces/import-static.ts +50 -0
- package/src/interfaces/index.ts +25 -0
- package/src/interfaces/options-fill-module.ts +26 -0
- package/src/interfaces/options-find-subpath.ts +56 -0
- package/src/interfaces/options-get-format.ts +92 -0
- package/src/interfaces/options-get-source.ts +70 -0
- package/src/interfaces/options-parse-module-id.ts +38 -0
- package/src/interfaces/options-parse-subpath.ts +36 -0
- package/src/interfaces/options-resolve-alias.ts +59 -0
- package/src/interfaces/options-resolve-module.ts +72 -0
- package/src/interfaces/options-resolve.ts +17 -0
- package/src/interfaces/package-scope.ts +30 -0
- package/src/interfaces/parsed-data-url.ts +63 -0
- package/src/interfaces/parsed-module-id.ts +90 -0
- package/src/interfaces/parsed-subpath.ts +47 -0
- package/src/interfaces/statement-export.ts +52 -0
- package/src/interfaces/statement-import.ts +45 -0
- package/src/interfaces/statement-require.ts +45 -0
- package/src/interfaces/statement.ts +64 -0
- package/src/internal/escape-reg-exp.ts +24 -0
- package/src/internal/format-type-map.ts +26 -0
- package/src/internal/get-specifier-kind.ts +38 -0
- package/src/internal/get-subpaths.ts +41 -0
- package/src/internal/is-array-index.ts +28 -0
- package/src/internal/is-directory.ts +25 -0
- package/src/internal/is-file.ts +25 -0
- package/src/internal/is-function.ts +16 -0
- package/src/internal/regex-encoded-sep.ts +15 -0
- package/src/internal/regex-internal-specifier.ts +17 -0
- package/src/internal/regex-package-name.ts +16 -0
- package/src/internal/regex-package-path.ts +18 -0
- package/src/internal/resolver.ts +783 -0
- package/src/internal/validate-boolean.ts +27 -0
- package/src/internal/validate-object.ts +30 -0
- package/src/internal/validate-set.ts +33 -0
- package/src/internal/validate-string.ts +27 -0
- package/src/internal/validate-url-string.ts +31 -0
- package/src/types/declaration.ts +22 -0
- package/src/types/fn-change-ext.ts +33 -0
- package/src/types/index.ts +14 -0
- package/src/types/mime-type.ts +19 -0
- package/src/types/module-id.ts +15 -0
- package/src/types/module-specifier-type.ts +13 -0
- package/src/types/protocol.ts +40 -0
- package/src/types/syntax-kind-export.ts +20 -0
- package/src/types/syntax-kind-import.ts +22 -0
- package/src/types/syntax-kind-require.ts +15 -0
- package/src/utils/compare-subpaths.ts +100 -0
- package/src/utils/conditions.ts +15 -0
- package/src/utils/detect-syntax.ts +40 -0
- package/src/utils/extension-format-map.ts +34 -0
- package/src/utils/extract-statements.ts +42 -0
- package/src/utils/fill-modules.ts +121 -0
- package/src/utils/find-dynamic-imports.ts +75 -0
- package/src/utils/find-exports.ts +164 -0
- package/src/utils/find-requires.ts +75 -0
- package/src/utils/find-static-imports.ts +89 -0
- package/src/utils/find-subpath.ts +241 -0
- package/src/utils/get-format.ts +222 -0
- package/src/utils/get-source.ts +129 -0
- package/src/utils/has-cjs-syntax.ts +44 -0
- package/src/utils/has-esm-syntax.ts +40 -0
- package/src/utils/index.ts +43 -0
- package/src/utils/is-absolute-specifier.ts +48 -0
- package/src/utils/is-bare-specifier.ts +30 -0
- package/src/utils/is-exports-sugar.ts +74 -0
- package/src/utils/is-relative-specifier.ts +34 -0
- package/src/utils/lookup-package-scope.ts +97 -0
- package/src/utils/parse-data-url.ts +71 -0
- package/src/utils/parse-module-id.ts +186 -0
- package/src/utils/parse-subpath.ts +173 -0
- package/src/utils/pattern-character.ts +13 -0
- package/src/utils/read-package-json.ts +101 -0
- package/src/utils/resolve-alias.ts +219 -0
- package/src/utils/resolve-aliases.ts +58 -0
- package/src/utils/resolve-extensions.ts +33 -0
- package/src/utils/resolve-module.ts +153 -0
- package/src/utils/resolve-modules.ts +62 -0
- package/src/utils/to-absolute-specifier.ts +30 -0
- package/src/utils/to-bare-specifier.ts +201 -0
- package/src/utils/to-data-url.ts +42 -0
- package/src/utils/to-node-url.ts +27 -0
- package/src/utils/to-relative-specifier.ts +47 -0
- package/src/utils/to-url.ts +31 -0
- package/src/utils/validate-assertions.ts +119 -0
- package/src/utils/validate-exports.ts +124 -0
- package/changelog.config.cts +0 -204
- package/dist/constants.d.mts +0 -19
- package/dist/constants.mjs +0 -24
- package/dist/interfaces/import-dynamic.mjs +0 -0
- package/dist/interfaces/import-static.mjs +0 -0
- package/dist/interfaces/options-resolve-alias.mjs +0 -0
- package/dist/interfaces/options-resolve.mjs +0 -0
- package/dist/interfaces/statement-export.mjs +0 -0
- package/dist/interfaces/statement-import.mjs +0 -0
- package/dist/interfaces/statement-require.mjs +0 -0
- package/dist/interfaces/statement.mjs +0 -0
- package/dist/internal/compiler-options-json.d.mts +0 -111
- package/dist/internal/compiler-options-json.mjs +0 -0
- package/dist/internal/constants.d.mts +0 -70
- package/dist/internal/constants.mjs +0 -18
- package/dist/internal/get-compiler-options.d.mts +0 -21
- package/dist/internal/get-compiler-options.mjs +0 -14
- package/dist/internal/index.d.mts +0 -7
- package/dist/internal/index.mjs +0 -5
- package/dist/lib/extract-statements.d.mts +0 -21
- package/dist/lib/find-dynamic-imports.d.mts +0 -15
- package/dist/lib/find-dynamic-imports.mjs +0 -20
- package/dist/lib/find-exports.d.mts +0 -15
- package/dist/lib/find-exports.mjs +0 -53
- package/dist/lib/find-requires.d.mts +0 -17
- package/dist/lib/find-requires.mjs +0 -19
- package/dist/lib/find-static-imports.d.mts +0 -15
- package/dist/lib/find-static-imports.mjs +0 -20
- package/dist/lib/has-cjs-syntax.mjs +0 -6
- package/dist/lib/has-esm-syntax.mjs +0 -6
- package/dist/lib/index.d.mts +0 -20
- package/dist/lib/index.mjs +0 -34
- package/dist/lib/resolve-alias.d.mts +0 -20
- package/dist/lib/resolve-alias.mjs +0 -41
- package/dist/lib/resolve-aliases.d.mts +0 -17
- package/dist/lib/resolve-aliases.mjs +0 -34
- package/dist/lib/resolve-module.d.mts +0 -31
- package/dist/lib/resolve-module.mjs +0 -74
- package/dist/lib/resolve-modules.d.mts +0 -19
- package/dist/lib/to-absolute-specifier.mjs +0 -20
- package/dist/lib/to-bare-specifier.d.mts +0 -28
- package/dist/lib/to-bare-specifier.mjs +0 -78
- package/dist/types/declaration.mjs +0 -0
- package/dist/types/ext.d.mts +0 -9
- package/dist/types/ext.mjs +0 -0
- package/dist/types/mime-type.mjs +0 -0
- package/dist/types/specifier-type.d.mts +0 -11
- package/dist/types/specifier-type.mjs +0 -0
- package/dist/types/statement-type.d.mts +0 -9
- package/dist/types/statement-type.mjs +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,413 @@
|
|
|
1
|
+
## [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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### :package: Build
|
|
5
|
+
|
|
6
|
+
* **deps-dev:** Bump @docsearch/react from 3.3.2 to 3.3.3 ([#111](https://github.com/flex-development/mlly/issues/111)) ([c7b1286](https://github.com/flex-development/mlly/commit/c7b1286aab74d5cf0e48996eda8efb2cc66450b5))
|
|
7
|
+
* **deps-dev:** Bump @types/node from 18.11.18 to 18.13.0 ([#116](https://github.com/flex-development/mlly/issues/116)) ([41a5620](https://github.com/flex-development/mlly/commit/41a56209cb282a0338112efd46194f969453fa5d))
|
|
8
|
+
* **deps-dev:** Bump @typescript-eslint/eslint-plugin from 5.50.0 to 5.51.0 ([#107](https://github.com/flex-development/mlly/issues/107)) ([f3d88bc](https://github.com/flex-development/mlly/commit/f3d88bc6eeba9cba650705f40836cb39f19e6155))
|
|
9
|
+
* **deps-dev:** Bump @typescript-eslint/parser from 5.50.0 to 5.51.0 ([#112](https://github.com/flex-development/mlly/issues/112)) ([177d989](https://github.com/flex-development/mlly/commit/177d98937accfc4dad648f672e55849ea0b49968))
|
|
10
|
+
* **deps-dev:** Bump @vitest/ui from 0.28.3 to 0.28.4 ([#100](https://github.com/flex-development/mlly/issues/100)) ([48cb9b6](https://github.com/flex-development/mlly/commit/48cb9b62930e0f2b6d0080696781539d55585abb))
|
|
11
|
+
* **deps-dev:** Bump cspell from 6.20.1 to 6.21.0 ([#103](https://github.com/flex-development/mlly/issues/103)) ([2048d88](https://github.com/flex-development/mlly/commit/2048d883332910b2bdd8639d80b16d50eed6a560))
|
|
12
|
+
* **deps-dev:** Bump cspell from 6.21.0 to 6.22.0 ([#109](https://github.com/flex-development/mlly/issues/109)) ([81ea472](https://github.com/flex-development/mlly/commit/81ea472ddc49d149284755d53843a15abf87991a))
|
|
13
|
+
* **deps-dev:** Bump esbuild from 0.17.5 to 0.17.6 ([#106](https://github.com/flex-development/mlly/issues/106)) ([2dda0cc](https://github.com/flex-development/mlly/commit/2dda0cc6667f812f3a88d8a9cfd499fc2e35baff))
|
|
14
|
+
* **deps-dev:** Bump eslint-plugin-jsdoc from 39.7.5 to 39.8.0 ([#102](https://github.com/flex-development/mlly/issues/102)) ([d2666ec](https://github.com/flex-development/mlly/commit/d2666ec36a1aab43beb74322944c70ee121e1bf6))
|
|
15
|
+
* **deps-dev:** Bump lint-staged from 13.1.0 to 13.1.1 ([#115](https://github.com/flex-development/mlly/issues/115)) ([a63fa71](https://github.com/flex-development/mlly/commit/a63fa71f6cc5c756d3e515bb65cdbf759719767e))
|
|
16
|
+
* **deps-dev:** Bump prettier from 2.8.3 to 2.8.4 ([#119](https://github.com/flex-development/mlly/issues/119)) ([98263e6](https://github.com/flex-development/mlly/commit/98263e6b9be03a36a0697fd391f0647bb94764bf))
|
|
17
|
+
* **deps-dev:** Bump pretty-format from 29.4.1 to 29.4.2 ([#113](https://github.com/flex-development/mlly/issues/113)) ([4ec7d50](https://github.com/flex-development/mlly/commit/4ec7d5051a45e1b8c89a94db08a4d521ccbe5e30))
|
|
18
|
+
* **deps-dev:** Bump vercel from 28.15.0 to 28.15.1 ([#110](https://github.com/flex-development/mlly/issues/110)) ([56acc58](https://github.com/flex-development/mlly/commit/56acc58f04adc13afd9b73cd3c8afd134e9f25c4))
|
|
19
|
+
* **deps-dev:** Bump vercel from 28.15.1 to 28.15.2 ([#117](https://github.com/flex-development/mlly/issues/117)) ([560b8d5](https://github.com/flex-development/mlly/commit/560b8d50f102059b0d684a80e8834cb2f69b114c))
|
|
20
|
+
* **deps-dev:** Bump vfile from 5.3.6 to 5.3.7 ([#118](https://github.com/flex-development/mlly/issues/118)) ([82af6a7](https://github.com/flex-development/mlly/commit/82af6a742c70e7b78dfdda2f014ba8b393aeba81))
|
|
21
|
+
* **deps-dev:** Bump vitest from 0.28.3 to 0.28.4 ([#99](https://github.com/flex-development/mlly/issues/99)) ([a4a4dab](https://github.com/flex-development/mlly/commit/a4a4dab13f5f929c0e86699d5feda560a215df19))
|
|
22
|
+
* **pkg:** include `src` files in distribution ([ada4cfb](https://github.com/flex-development/mlly/commit/ada4cfbc4ef52fec3038dbd9c98ead0f37afa565))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### :robot: Continuous Integration
|
|
26
|
+
|
|
27
|
+
* **deps:** bump GitGuardian/ggshield-action from 1.1.0 to master ([e4d44f1](https://github.com/flex-development/mlly/commit/e4d44f1b4d728f2511b1a68936045a4fc700ddca))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### :pencil: Documentation
|
|
31
|
+
|
|
32
|
+
* **loader:** fix jsdoc annotations ([49b83b8](https://github.com/flex-development/mlly/commit/49b83b8922738abdbcd3bff3e4500de0b996eb9d))
|
|
33
|
+
* **loader:** update descriptions and reference links ([9e82d4e](https://github.com/flex-development/mlly/commit/9e82d4e76afeb29ac9b9187628296698a26b361d))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### :bug: Fixes
|
|
37
|
+
|
|
38
|
+
* **utils:** [`fillModules`] specifier replacement ([a9221ff](https://github.com/flex-development/mlly/commit/a9221ffb22bbcac90b22180a9c9b9147464029b8))
|
|
39
|
+
* **utils:** [`toBareSpecifier`] package directory regex ([e60a9f8](https://github.com/flex-development/mlly/commit/e60a9f82ab0cbe5e1c40be01cc7b47719823b7af))
|
|
40
|
+
|
|
41
|
+
## [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)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### :package: Build
|
|
45
|
+
|
|
46
|
+
* **deps-dev:** Bump @sindresorhus/slugify from 2.1.1 to 2.2.0 ([#82](https://github.com/flex-development/mlly/issues/82)) ([e831388](https://github.com/flex-development/mlly/commit/e831388143982244eaeba3b548d74c899182f69d))
|
|
47
|
+
* **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))
|
|
48
|
+
* **deps-dev:** bump @types/node from 16.18.11 to 18.11.18 ([64c4452](https://github.com/flex-development/mlly/commit/64c44523dd60f804d0e60f7f6cf4668084891575))
|
|
49
|
+
* **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))
|
|
50
|
+
* **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))
|
|
51
|
+
* **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))
|
|
52
|
+
* **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))
|
|
53
|
+
* **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))
|
|
54
|
+
* **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))
|
|
55
|
+
* **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))
|
|
56
|
+
* **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))
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### :robot: Continuous Integration
|
|
60
|
+
|
|
61
|
+
* **deps:** Bump actions/cache from 3.2.3 to 3.2.4 ([#81](https://github.com/flex-development/mlly/issues/81)) ([422fb8c](https://github.com/flex-development/mlly/commit/422fb8cc64cd4a9738bad3d001885aa50cf4f9eb))
|
|
62
|
+
* **workflows:** [`ci`] add `gitguardian` job ([d74b1f7](https://github.com/flex-development/mlly/commit/d74b1f7851c46e763a6e70a790f7b0f6ec5425d8))
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### :bug: Fixes
|
|
66
|
+
|
|
67
|
+
* **resolve:** unhoisted package resolution ([26523ef](https://github.com/flex-development/mlly/commit/26523ef7e8a2398978badc6f4fffccfeec806575))
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### :house_with_garden: Housekeeping
|
|
71
|
+
|
|
72
|
+
* [eslint] update rules for test files ([143a34a](https://github.com/flex-development/mlly/commit/143a34ad2141ddec495bd45bc92501be7642a949))
|
|
73
|
+
* **github:** cleanup reference link in `.github/funding.yml` ([5c75139](https://github.com/flex-development/mlly/commit/5c7513977985c0e4422e895d65512f37af451f64))
|
|
74
|
+
* **github:** remove `git@bitbucket.org` alias from sample `.gitconfig` ([155f6d8](https://github.com/flex-development/mlly/commit/155f6d87f5f623121b40398e87913d89ce4266f9))
|
|
75
|
+
* **github:** update `.env` rule in `.gitignore` ([e54635a](https://github.com/flex-development/mlly/commit/e54635afdbaf846364d28cca86162bcc3c17e7a0))
|
|
76
|
+
|
|
77
|
+
## [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)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### :package: Build
|
|
81
|
+
|
|
82
|
+
* **deps-dev:** bump eslint from 8.32.0 to 8.33.0 ([9464965](https://github.com/flex-development/mlly/commit/9464965223415264301b2370e56f103f7202399a)), closes [#79](https://github.com/flex-development/mlly/issues/79)
|
|
83
|
+
* **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 ([#76](https://github.com/flex-development/mlly/issues/76)) ([fd89590](https://github.com/flex-development/mlly/commit/fd89590a90d2d133a84efbeb8153e80aee0f44ce))
|
|
84
|
+
* **deps-dev:** cleanup changelog deps ([e899dd5](https://github.com/flex-development/mlly/commit/e899dd5ff58dbc7ec19749d1ad48cec5bb4a5ac8))
|
|
85
|
+
* **deps:** bump @flex-development/is-builtin from 1.0.1 to 2.0.0 ([c39f63c](https://github.com/flex-development/mlly/commit/c39f63cb529a3eae091dded1a5f73c9277904fbd))
|
|
86
|
+
* **nvm:** bump node from 16 to 19 ([4442dbb](https://github.com/flex-development/mlly/commit/4442dbb65e8161d608877a2c5c9346a17036c308))
|
|
87
|
+
* **ts:** update file exclusion list ([f0a512f](https://github.com/flex-development/mlly/commit/f0a512f591994562cafa8cbebd550930352974dc))
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### :robot: Continuous Integration
|
|
91
|
+
|
|
92
|
+
* **deps:** Bump actions/github-script from 6.3.3 to 6.4.0 ([#77](https://github.com/flex-development/mlly/issues/77)) ([9873dc9](https://github.com/flex-development/mlly/commit/9873dc992caecc55f325191be461041fba8fd199))
|
|
93
|
+
* **workflows:** [`ci`] refactor `metadata` job conditional ([c909436](https://github.com/flex-development/mlly/commit/c90943621eb8f13d81b79f0b3acb78a997b89a8c))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### :house_with_garden: Housekeeping
|
|
97
|
+
|
|
98
|
+
* **github:** add commit scope `loader` ([8b57984](https://github.com/flex-development/mlly/commit/8b57984ea60d4f66fbbd65d4c069ddb9e3620c46))
|
|
99
|
+
* **github:** add commit scope `nvm` ([905e7d1](https://github.com/flex-development/mlly/commit/905e7d1a093b017f3364e7f832989c0333c674bf))
|
|
100
|
+
* **github:** add commit scope `spelling` ([7a111d0](https://github.com/flex-development/mlly/commit/7a111d01ed1770f49cb0610e3d5ef05f172fe359))
|
|
101
|
+
* **spelling:** add "infile" to dictionary ([3ade2df](https://github.com/flex-development/mlly/commit/3ade2df3c3226eb8f69c9d20766f0a743f0b1e20))
|
|
102
|
+
* **tests:** [mocks] remove `@flex-development/pathe` ([ccd9bbe](https://github.com/flex-development/mlly/commit/ccd9bbe2ebf8f3f5b62f88ae3171ceb4c3d68888))
|
|
103
|
+
* **vscode:** add todo tree settings to `settings.json` ([41a9097](https://github.com/flex-development/mlly/commit/41a9097a3166a6211fd3407c08d050d6d8c95827))
|
|
104
|
+
* **vscode:** remove stale `volar` settings ([6998a8c](https://github.com/flex-development/mlly/commit/6998a8c77f755ebd43f47ce700d31e22961780e1))
|
|
105
|
+
* **yarn:** disable transparent workspaces ([8e519fd](https://github.com/flex-development/mlly/commit/8e519fd40b11b52b6a19fdd742e405ce10245c8b))
|
|
106
|
+
|
|
107
|
+
## [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)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### ⚠ BREAKING CHANGES
|
|
111
|
+
|
|
112
|
+
* **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
|
|
113
|
+
* **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
|
|
114
|
+
* **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
|
|
115
|
+
* **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
|
|
116
|
+
* **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
|
|
117
|
+
* **types:** `MIMEType` -> `MimeType`
|
|
118
|
+
* **exports:** remove subpath `"./lib/*"`
|
|
119
|
+
|
|
120
|
+
### :package: Build
|
|
121
|
+
|
|
122
|
+
* output `.d.mts` and `.mjs` files separately ([8e05a0d](https://github.com/flex-development/mlly/commit/8e05a0d70ba6bc972947a04bcceb3dd7304bd768))
|
|
123
|
+
* **deps-dev:** bump deps according to `yarn upgrade-interactive` ([9f70d1a](https://github.com/flex-development/mlly/commit/9f70d1aa397ec52738584c08d209472340d8f628))
|
|
124
|
+
* **deps-dev:** Bump esbuild from 0.17.4 to 0.17.5 ([#73](https://github.com/flex-development/mlly/issues/73)) ([e7add8d](https://github.com/flex-development/mlly/commit/e7add8d458d2ba4b04959c6c769d0bdb8e5635bf))
|
|
125
|
+
* **deps-dev:** Bump eslint-plugin-jsdoc from 39.6.8 to 39.6.9 ([#72](https://github.com/flex-development/mlly/issues/72)) ([63d710f](https://github.com/flex-development/mlly/commit/63d710fd2ced0c1003724ab19bc1a08de5137f98))
|
|
126
|
+
* **deps-dev:** bump typescript from 4.9.4 to 5.0.0-dev.20230102 ([f8b753b](https://github.com/flex-development/mlly/commit/f8b753b086be2bbb3506e21e7ecd86d5c94fdc85))
|
|
127
|
+
* **deps-dev:** Bump vercel from 28.13.2 to 28.14.0 ([#71](https://github.com/flex-development/mlly/issues/71)) ([d31fa67](https://github.com/flex-development/mlly/commit/d31fa67cc0df03b42087a698ac2b14c5f05ba682))
|
|
128
|
+
* **deps-dev:** remove vitest patch ([5ccce0b](https://github.com/flex-development/mlly/commit/5ccce0bc4f06871594ede77238db38c11917b0fd))
|
|
129
|
+
* **deps-peer:** add `@types/node>=14.17.0` ([67899e3](https://github.com/flex-development/mlly/commit/67899e3a632bd048f5ec90ce2732bf87b57f873b))
|
|
130
|
+
* **deps:** bump @flex-development/errnode from 1.2.0 to 1.3.0 ([c95b3c8](https://github.com/flex-development/mlly/commit/c95b3c8a8343474840eab1afefb1c0e57a2a3d90))
|
|
131
|
+
* **deps:** bump @flex-development/import-regex from 2.0.0 to 2.0.1 ([e868cae](https://github.com/flex-development/mlly/commit/e868cae9130d68105b35d45e7c750bbf26f824ed))
|
|
132
|
+
* **deps:** bump @flex-development/pathe from 1.0.1 to 1.0.2 ([8954b4a](https://github.com/flex-development/mlly/commit/8954b4aed63e0523964faf1b85b9d9ac07c338bd))
|
|
133
|
+
* **deps:** bump @flex-development/pathe from 1.0.2 to 1.0.3 ([3910fcf](https://github.com/flex-development/mlly/commit/3910fcfb8e778cd5dd0af5a3b355a93378d5e2b8))
|
|
134
|
+
* **deps:** bump @flex-development/tutils from 6.0.0-alpha.7 to 6.0.0-alpha.9 ([3692fbd](https://github.com/flex-development/mlly/commit/3692fbd760e701245b99da401fcb9fd4fda8e7f6))
|
|
135
|
+
* **exports:** remove subpath `"./lib/*"` ([d748039](https://github.com/flex-development/mlly/commit/d74803951eaf1b71d1d3ff3680b52adf63861b8f))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### :robot: Continuous Integration
|
|
139
|
+
|
|
140
|
+
* [[@dependabot](https://github.com/dependabot)] update ignore list for npm ecosystem ([d500b0a](https://github.com/flex-development/mlly/commit/d500b0ac3764fe27c7e9fe2218edc723f562021f))
|
|
141
|
+
* **deps:** bump actions/cache from 3.2.2 to 3.2.3 ([7781b0f](https://github.com/flex-development/mlly/commit/7781b0f5203e7f625947d78fb85f511a4dc8fa05)), closes [#48](https://github.com/flex-development/mlly/issues/48)
|
|
142
|
+
* **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)
|
|
143
|
+
* **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)
|
|
144
|
+
* **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)
|
|
145
|
+
* **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)
|
|
146
|
+
* **workflows:** [`add-to-project`] run workflow when pr is synchronized ([06d8846](https://github.com/flex-development/mlly/commit/06d8846efdb681da4b2a2ce6c83df663f266b027))
|
|
147
|
+
* **workflows:** [`approve-pr`] add debug step ([e130bed](https://github.com/flex-development/mlly/commit/e130bedeab8dd640b1a8cf6debdb8e6e1f92cbfb))
|
|
148
|
+
* **workflows:** [`approve-pr`] refactor approval step conditional ([8afe058](https://github.com/flex-development/mlly/commit/8afe0581fb8d61bf21faa1b03b638aad84c8ff27))
|
|
149
|
+
* **workflows:** [`ci`] add `docs` job ([8e9f672](https://github.com/flex-development/mlly/commit/8e9f67249c1e704c3e7aa8f31297170b0b8a3346))
|
|
150
|
+
* **workflows:** [`ci`] add typescript matrix ([659629c](https://github.com/flex-development/mlly/commit/659629cc3b477ecb454914bc82e67080ad171515))
|
|
151
|
+
* **workflows:** [`ci`] make typescript matrix dynamic ([825142e](https://github.com/flex-development/mlly/commit/825142ecd92688ce01ea0d0ee0b6a662dfa29f18))
|
|
152
|
+
* **workflows:** [`ci`] skip workflow run for [@dependabot](https://github.com/dependabot) on `push` ([4e9c1ca](https://github.com/flex-development/mlly/commit/4e9c1cab80c2e7a8909742891eba5cd22b564be4))
|
|
153
|
+
* **workflows:** [`ci`] split ci job into multiple jobs ([70e6ee2](https://github.com/flex-development/mlly/commit/70e6ee20ffd7be96f4c98344d35b627f3a4fc2ec))
|
|
154
|
+
* **workflows:** [`ci`] update codecov config ([635adcd](https://github.com/flex-development/mlly/commit/635adcd3269b2e9ae48b3eb801376ffe5c5458f6))
|
|
155
|
+
* **workflows:** [`dependabot-auto`] sign lockfile fix commit ([a520d77](https://github.com/flex-development/mlly/commit/a520d778317f94800e2b08d622f045b12aa71d38))
|
|
156
|
+
* **workflows:** [`integrity`] update `pull_request` event activity types ([9d5569d](https://github.com/flex-development/mlly/commit/9d5569d2dabdb1c0d9f8aa652743fe7e7888a4c3))
|
|
157
|
+
* **workflows:** [`typescript-canary`] print typescript version ([8bcc613](https://github.com/flex-development/mlly/commit/8bcc613c2b207efffa9964b07c15ffc76a786a5a))
|
|
158
|
+
* **workflows:** [`typescript-canary`] run workflow daily ([22feb88](https://github.com/flex-development/mlly/commit/22feb88b8d1784a3acea5be91f814c8d7ece9b50))
|
|
159
|
+
* **workflows:** add `typescript-canary` ([87d8a0d](https://github.com/flex-development/mlly/commit/87d8a0d46632b95ae0bfecd08659f91a78a8407f))
|
|
160
|
+
* **yarn:** fix typescript matrix testing ([c021970](https://github.com/flex-development/mlly/commit/c021970fa53907c419897aa79f8028bd64d29fd5))
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
### :pencil: Documentation
|
|
164
|
+
|
|
165
|
+
* [site] add `/api/enums` ([11682d3](https://github.com/flex-development/mlly/commit/11682d3aa348e5d2cfc674e2ca8f17e4d7929ae5))
|
|
166
|
+
* [site] fix "params" table rendering ([0915c3f](https://github.com/flex-development/mlly/commit/0915c3f6367e263fee2212ac83b4daa57d1b49c0))
|
|
167
|
+
* [site] fix "throws" description rendering ([1bc5801](https://github.com/flex-development/mlly/commit/1bc5801df3a0d8e19186d99219b5cd550ad4f989))
|
|
168
|
+
* [site] fix `@link` and `@linkcode` tag replacements ([e0e2b2f](https://github.com/flex-development/mlly/commit/e0e2b2f6e90a6ebd277b9ad4d1cddf5da57fc0b0))
|
|
169
|
+
* [site] show title-only "throws" sections ([2dcb01b](https://github.com/flex-development/mlly/commit/2dcb01bd3309363b28587da5e752d55d019da6b1))
|
|
170
|
+
* [site] update homepage ([c799a80](https://github.com/flex-development/mlly/commit/c799a809a88d1c82dd6b24c3bb925db4ad81e89f))
|
|
171
|
+
* [site] update vercel install command ([89f407c](https://github.com/flex-development/mlly/commit/89f407cb81b32969bf87b9f18da635438bab7943))
|
|
172
|
+
* **tests:** organize file overviews ([7479aa8](https://github.com/flex-development/mlly/commit/7479aa8df76d17d91d082e55bedbabdaf189be10))
|
|
173
|
+
* **utils:** [`resolveModule`] other differences between node.js ([ae357e8](https://github.com/flex-development/mlly/commit/ae357e8cd949db0ffbb228b34c29446be277e043))
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### :sparkles: Features
|
|
177
|
+
|
|
178
|
+
* **enums:** `AssertType` ([f4ab669](https://github.com/flex-development/mlly/commit/f4ab6691df8f102d5dadba755ccd1dc2f66df16b))
|
|
179
|
+
* **enums:** `Format` ([bd79b6a](https://github.com/flex-development/mlly/commit/bd79b6a059918f83b88a2ebe6789e0d68fbcb7ca))
|
|
180
|
+
* **enums:** `SpecifierKind` ([077a6ab](https://github.com/flex-development/mlly/commit/077a6abd2676fed01e3aa46bafeefd22d2b43ce2))
|
|
181
|
+
* **interfaces:** `FillModuleOptions` ([ffb0481](https://github.com/flex-development/mlly/commit/ffb04816e0788b5802a1880ace3b53fa9d90c10a))
|
|
182
|
+
* **interfaces:** `FindSubpathOptions` ([b5fd706](https://github.com/flex-development/mlly/commit/b5fd7067575007c00f85e17fbe9c4404d21ab941))
|
|
183
|
+
* **interfaces:** `GetFormatOptions` ([0e7e861](https://github.com/flex-development/mlly/commit/0e7e861770b93520967801951bdea5654f4d9922))
|
|
184
|
+
* **interfaces:** `GetSourceOptions` ([dae9081](https://github.com/flex-development/mlly/commit/dae9081166c2af8710faef2b737d45420dd05ce4))
|
|
185
|
+
* **interfaces:** `ImportAssertions` ([7a51c62](https://github.com/flex-development/mlly/commit/7a51c62d68240025402a490b94ab44f14deb2259))
|
|
186
|
+
* **interfaces:** `PackageScope` ([52c16ad](https://github.com/flex-development/mlly/commit/52c16ad141d1956f53d93f057254d2438ce08492))
|
|
187
|
+
* **interfaces:** `ParsedDataUrl` ([529b3c5](https://github.com/flex-development/mlly/commit/529b3c5093f85b03351dbdb95dbe3f9277a884fb))
|
|
188
|
+
* **interfaces:** `ParsedModuleId` ([194b14e](https://github.com/flex-development/mlly/commit/194b14ef0fc047190980c3b92f48b9e5c53832fb))
|
|
189
|
+
* **interfaces:** `ParsedSubpath` ([7bc8031](https://github.com/flex-development/mlly/commit/7bc803152d8b57116d5fa2fdaa67096e09a13f64))
|
|
190
|
+
* **interfaces:** `ParseModuleIdOptions` ([97ee265](https://github.com/flex-development/mlly/commit/97ee26526c89e5a42d7a64431a4a3d49127414df))
|
|
191
|
+
* **interfaces:** `ParseSubpathOptions` ([f5150fd](https://github.com/flex-development/mlly/commit/f5150fd322b3b96e919756d4e0a4aa0143a0ef58))
|
|
192
|
+
* **interfaces:** `Statement#specifier_kind` ([db39187](https://github.com/flex-development/mlly/commit/db39187d5883890fafcf1b3a9827c2ca6811e477))
|
|
193
|
+
* **internal:** `ENCODED_SEP_REGEX` ([22ff22f](https://github.com/flex-development/mlly/commit/22ff22f48113b9c3570ad5b982a300fe3b079734))
|
|
194
|
+
* **internal:** `escapeRegExp` ([f00836b](https://github.com/flex-development/mlly/commit/f00836b8a1d6ef94917ea0b39884585b1a29de31))
|
|
195
|
+
* **internal:** `FORMAT_TYPE_MAP` ([a442b8d](https://github.com/flex-development/mlly/commit/a442b8d3a4fccde4814a6437f9cfaf1a3e9797e4))
|
|
196
|
+
* **internal:** `getSpecifierKind` ([be30ba7](https://github.com/flex-development/mlly/commit/be30ba71f28f1bd677ffc251d3c578e2ffa37c62))
|
|
197
|
+
* **internal:** `getSubpaths` ([f9f5f37](https://github.com/flex-development/mlly/commit/f9f5f37d2703e6b2dd1d7469a5ffa92a01cba308))
|
|
198
|
+
* **internal:** `INTERNAL_SPECIFIER_REGEX` ([6f1b8be](https://github.com/flex-development/mlly/commit/6f1b8be5ea341c279c57176d1af8eb9effca0c7a))
|
|
199
|
+
* **internal:** `isArrayIndex` ([c4793a0](https://github.com/flex-development/mlly/commit/c4793a0f815aefd13f0f0fc20cab32d8dfd42dcc))
|
|
200
|
+
* **internal:** `isDirectory` ([ec91d08](https://github.com/flex-development/mlly/commit/ec91d08a8c4418a3c510dbc55e07d59293670bc0))
|
|
201
|
+
* **internal:** `isFile` ([d06b9ac](https://github.com/flex-development/mlly/commit/d06b9acae46eada86fd866b09c316d61d04ca69d))
|
|
202
|
+
* **internal:** `isFunction` ([e01911a](https://github.com/flex-development/mlly/commit/e01911af8417177b24bd9d42a2c05d1eb70ea3cc))
|
|
203
|
+
* **internal:** `PACKAGE_NAME_REGEX` ([3f43f95](https://github.com/flex-development/mlly/commit/3f43f950321006997853231a5054e878d375fdd1))
|
|
204
|
+
* **internal:** `PACKAGE_PATH_REGEX` ([375f356](https://github.com/flex-development/mlly/commit/375f356811b2f3537436000d23b0414aa59164d4))
|
|
205
|
+
* **internal:** `Resolver` ([4c4f900](https://github.com/flex-development/mlly/commit/4c4f900d918c01f05ff69f9d998c0d8510530d41))
|
|
206
|
+
* **internal:** `validateBoolean` ([76166af](https://github.com/flex-development/mlly/commit/76166af9edb580d7271f2a60c3b052767c4b5e54))
|
|
207
|
+
* **internal:** `validateObject` ([c961376](https://github.com/flex-development/mlly/commit/c961376bd3ec592adea916e49d186021859e1f12))
|
|
208
|
+
* **internal:** `validateSet` ([d9b6595](https://github.com/flex-development/mlly/commit/d9b6595a45ba7e2644914b2d63b0b8e149d63165))
|
|
209
|
+
* **internal:** `validateString` ([c66025d](https://github.com/flex-development/mlly/commit/c66025d576c4f37f44944517ff9787d9946696d0))
|
|
210
|
+
* **internal:** `validateURLString` ([ba49e9b](https://github.com/flex-development/mlly/commit/ba49e9b03af440d5d07393c8d1b19dacaafba3fa))
|
|
211
|
+
* **types:** `ChangeExtFn` ([b906e6b](https://github.com/flex-development/mlly/commit/b906e6b30c47cde9628788c9280582d693c00c6a))
|
|
212
|
+
* **types:** `Format` ([5cb0b1b](https://github.com/flex-development/mlly/commit/5cb0b1b074fdee44ea03e32b4128780afbe86667))
|
|
213
|
+
* **types:** `ModuleId` ([1f3a500](https://github.com/flex-development/mlly/commit/1f3a500b96f43ea055bccdcb6815bc8e697dc140))
|
|
214
|
+
* **types:** `Protocol` ([6380ea8](https://github.com/flex-development/mlly/commit/6380ea8869a9ac540a517ff6cedb8be36d6f73d4))
|
|
215
|
+
* **utils:** `compareSubpaths` ([66f2137](https://github.com/flex-development/mlly/commit/66f2137ef8b938a84c7d273bdc45299de14073b0))
|
|
216
|
+
* **utils:** `EXTENSION_FORMAT_MAP` ([d4720d7](https://github.com/flex-development/mlly/commit/d4720d703b64fe623f95cb811a006c390806e8c6))
|
|
217
|
+
* **utils:** `fillModules` ([7b9d1e7](https://github.com/flex-development/mlly/commit/7b9d1e7874e2f43b91f90963c26c83c7bc651e25))
|
|
218
|
+
* **utils:** `findSubpath` ([4fd48f6](https://github.com/flex-development/mlly/commit/4fd48f6ab8415d50214de5d10ff608152bc8c6b8))
|
|
219
|
+
* **utils:** `getFormat` ([a1cae6f](https://github.com/flex-development/mlly/commit/a1cae6f80c88c007d7ac4736de54454d17192d84))
|
|
220
|
+
* **utils:** `getSource` ([017eadb](https://github.com/flex-development/mlly/commit/017eadb7b2d58eac080dfe4865dc597671ede992))
|
|
221
|
+
* **utils:** `isAbsoluteSpecifier` ([4bd443c](https://github.com/flex-development/mlly/commit/4bd443ce9391fc6dcf1889edb9c3a7c6ef7768b7))
|
|
222
|
+
* **utils:** `isBareSpecifier` ([feda82b](https://github.com/flex-development/mlly/commit/feda82b8a088bf9b889e20f92c614d810acbe14f))
|
|
223
|
+
* **utils:** `isExportsSugar` ([0c9f954](https://github.com/flex-development/mlly/commit/0c9f954cf69b6dfbf821fdee8966f2b0a31de759))
|
|
224
|
+
* **utils:** `isRelativeSpecifier` ([92b8846](https://github.com/flex-development/mlly/commit/92b8846acefed82187afef8503bf5e7c4cbb953f))
|
|
225
|
+
* **utils:** `lookupPackageScope` ([46cb852](https://github.com/flex-development/mlly/commit/46cb8524c01528cf8310caab7944e6704d66ea97))
|
|
226
|
+
* **utils:** `parseDataURL` ([93fd382](https://github.com/flex-development/mlly/commit/93fd38292d07961425f6b394018578fb9933320e))
|
|
227
|
+
* **utils:** `parseModuleId` ([a315dd0](https://github.com/flex-development/mlly/commit/a315dd0aef9238fb107ea07ad27214838e144451))
|
|
228
|
+
* **utils:** `parseSubpath` ([8479781](https://github.com/flex-development/mlly/commit/84797816490736fc2078ff34f42b2cf1f43e31a2))
|
|
229
|
+
* **utils:** `PATTERN_CHARACTER` ([7a8f04b](https://github.com/flex-development/mlly/commit/7a8f04bc06a281c6357dc14f3e8af9f63678ca60))
|
|
230
|
+
* **utils:** `readPackageJson` ([b2f9a18](https://github.com/flex-development/mlly/commit/b2f9a180f0bce61215ac2d23d4be83a91b657f81))
|
|
231
|
+
* **utils:** `toNodeURL` ([a536567](https://github.com/flex-development/mlly/commit/a536567dbd177a033b5e40069009dadbfc06ab30))
|
|
232
|
+
* **utils:** `toURL` ([165d8b0](https://github.com/flex-development/mlly/commit/165d8b0695c85b956e06ddf8a8d0c08f7d58a9a0))
|
|
233
|
+
* **utils:** `validateAssertions` ([61e9769](https://github.com/flex-development/mlly/commit/61e9769ef7d9471e7c7732faa955a8c21a23b877))
|
|
234
|
+
* **utils:** `validateExports` ([a2b14ea](https://github.com/flex-development/mlly/commit/a2b14ea2341ea1044be71e11fffd36619e6fdb83))
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### :bug: Fixes
|
|
238
|
+
|
|
239
|
+
* **ts:** `Type '{ '.' Exports | undefined; }' is not assignable to type 'Exports | undefined'` ([de20179](https://github.com/flex-development/mlly/commit/de20179e1b9d9ec68a426814999a9304f9fa2e73))
|
|
240
|
+
* **ts:** missing types in build output ([a5d2226](https://github.com/flex-development/mlly/commit/a5d2226c352269795399bc14742e49c845c955f6))
|
|
241
|
+
* **utils:** specifier replacement ([e29520b](https://github.com/flex-development/mlly/commit/e29520bf74cbba11c567cc13257a84252777403a))
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### :house_with_garden: Housekeeping
|
|
245
|
+
|
|
246
|
+
* fix lint-staged config ([bda813d](https://github.com/flex-development/mlly/commit/bda813db0922faa93d0543e34d11e290bbd52967))
|
|
247
|
+
* project qa ([d3a571d](https://github.com/flex-development/mlly/commit/d3a571d38626b0cfd2affb3987bd583813bd9b35))
|
|
248
|
+
* update eslint config ([b1d716c](https://github.com/flex-development/mlly/commit/b1d716cb29c95734f974e703fe88f4d150827abf))
|
|
249
|
+
* update project architecture ([60b2c77](https://github.com/flex-development/mlly/commit/60b2c771614cc13e892a8814ad644d6095112ba4))
|
|
250
|
+
* update project architecture ([7d0571b](https://github.com/flex-development/mlly/commit/7d0571bb660770640963d7ec550d91b7aa6c7a0d))
|
|
251
|
+
* **esm:** use package in custom loader ([a6e07d0](https://github.com/flex-development/mlly/commit/a6e07d0487b2734bc1dac6bcd22c6ff2b3e09380))
|
|
252
|
+
* **github:** add "typescript version" input to bug report template ([d6de153](https://github.com/flex-development/mlly/commit/d6de15302d1355a7ffbb680b4059fb42a0b6a0af))
|
|
253
|
+
* **github:** add commit scope `utils` ([4af0c3d](https://github.com/flex-development/mlly/commit/4af0c3d3c0ca38594683586948524faa316ddaf8))
|
|
254
|
+
* **github:** add label `scope:utils` ([169ec14](https://github.com/flex-development/mlly/commit/169ec14abcd9735a8c00e1ce76b5c33f3e0f01cf))
|
|
255
|
+
* **github:** configure sponsor button ([b9e4bf5](https://github.com/flex-development/mlly/commit/b9e4bf5d5a73ce467ed1047737ff8fe9b9de9248))
|
|
256
|
+
* **github:** set `LINT_STAGED` before running `lint-staged` ([4c49124](https://github.com/flex-development/mlly/commit/4c49124b454e7776d7dc11b34482756bca7ef35e))
|
|
257
|
+
* **pkg:** update keywords ([8ddf224](https://github.com/flex-development/mlly/commit/8ddf224485aa19b8ad706f0b3b8c0bdbba3151ed))
|
|
258
|
+
* **tests:** update codecov config ([226b49c](https://github.com/flex-development/mlly/commit/226b49c712ae56dc3f09bd0016df0edc34608900))
|
|
259
|
+
* **tests:** update lint-staged integration ([9b6b530](https://github.com/flex-development/mlly/commit/9b6b53076be0e2240cf8dec3fcb08cef45527cc9))
|
|
260
|
+
* **vscode:** update settings ([aac433c](https://github.com/flex-development/mlly/commit/aac433c9d42d9794b2fd9303df331f8ee70b0786))
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### :zap: Refactors
|
|
264
|
+
|
|
265
|
+
* move constants to `utils` dir ([e6db385](https://github.com/flex-development/mlly/commit/e6db385058fc810e7be6bb79acac9c7e92bc7aaa))
|
|
266
|
+
* rename `lib` directory to `utils` ([c84a231](https://github.com/flex-development/mlly/commit/c84a23160738d322e8db7bd1b2a0927efefc1c2f))
|
|
267
|
+
* **enums:** `SpecifierKind` -> `SpecifierSyntaxKind` ([1a24b13](https://github.com/flex-development/mlly/commit/1a24b13ac020d53de90abf72d427ea9f15b9eeb5))
|
|
268
|
+
* **enums:** `SyntaxKind` -> `StatementSyntaxKind` ([02c1456](https://github.com/flex-development/mlly/commit/02c14566eba3e7f23c260c1b9101ea39ee4b34c7))
|
|
269
|
+
* **esm:** improve loaders compatibility ([505e211](https://github.com/flex-development/mlly/commit/505e211531ed6b216567d2b156b42637d292579f))
|
|
270
|
+
* **interfaces:** [`Statement`] `specifier_kind` -> `specifier_syntax` ([734edd2](https://github.com/flex-development/mlly/commit/734edd2b87377be49906eecf5d38d5001093872d))
|
|
271
|
+
* **internal:** [`validateString`] convert to type guard ([789f2cf](https://github.com/flex-development/mlly/commit/789f2cf7c2ecf27fed86f64640c6c7806ef257f9))
|
|
272
|
+
* **ts:** catch build output errors early ([7cb4c38](https://github.com/flex-development/mlly/commit/7cb4c3899387b67f9d7c9b160e091da9e9613403))
|
|
273
|
+
* **types:** `MIMEType` -> `MimeType` ([1df5622](https://github.com/flex-development/mlly/commit/1df56226dfdc6534b40c64d1b33e6ab57b13c901))
|
|
274
|
+
* **utils:** `resolveAlias` ([b4ed0b1](https://github.com/flex-development/mlly/commit/b4ed0b1c0860954c29f3224dde52803cb0198438))
|
|
275
|
+
* **utils:** `toBareSpecifier` ([b0caca0](https://github.com/flex-development/mlly/commit/b0caca069ca004f7dc9dfb443fbba43bbcf9fba1))
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### :white_check_mark: Testing
|
|
279
|
+
|
|
280
|
+
* **utils:** [`findStaticImports`] 100% isolated coverage ([aca9212](https://github.com/flex-development/mlly/commit/aca9212bf77bfc58b5a050d136cafd622866526f))
|
|
281
|
+
|
|
282
|
+
## [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)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### :package: Build
|
|
286
|
+
|
|
287
|
+
* **deps-dev:** bump vue-tsc from 1.0.17 to 1.0.18 ([68255dc](https://github.com/flex-development/mlly/commit/68255dc3ad4be30eae7ea61598d4494d1913717b))
|
|
288
|
+
* **deps:** bump import-meta-resolve from 2.1.0 to 2.2.0 ([8ce9cfc](https://github.com/flex-development/mlly/commit/8ce9cfc6a49b3b69c4b129b42b171d60ce3d2b91))
|
|
289
|
+
* **deps:** bump tsconfig-paths from 4.1.0 to 4.1.1 ([6cb2847](https://github.com/flex-development/mlly/commit/6cb2847c229d0d0ba0715a725da4689752a5a899))
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### :bug: Fixes
|
|
293
|
+
|
|
294
|
+
* **specifiers:** `toRelativeSpecifier` logic ([#27](https://github.com/flex-development/mlly/issues/27)) ([a34d974](https://github.com/flex-development/mlly/commit/a34d97448135da0e0f46654b720ba60fc84abcea))
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### :house_with_garden: Housekeeping
|
|
298
|
+
|
|
299
|
+
* **github:** add "package manager" dropdown to bug report template ([2942a31](https://github.com/flex-development/mlly/commit/2942a312411de0a2b4113e163214ca8ef064c87b))
|
|
300
|
+
* **github:** add label `scope:analyze` ([241ac69](https://github.com/flex-development/mlly/commit/241ac6992361ee57631779f48cc87525d4e3f220))
|
|
301
|
+
* **github:** add label `scope:lib` ([25b2d67](https://github.com/flex-development/mlly/commit/25b2d679f9d400afdef52bd159afd477daf60077))
|
|
302
|
+
* **github:** add label `scope:resolve` ([36159e6](https://github.com/flex-development/mlly/commit/36159e688680db513417a9d9f7ce0cf72a45695c))
|
|
303
|
+
* **github:** add label `scope:specifiers` ([5ca8266](https://github.com/flex-development/mlly/commit/5ca8266c8c3a7f5448eadad734530837bdeae434))
|
|
304
|
+
* **github:** add label `scope:syntax` ([54b2585](https://github.com/flex-development/mlly/commit/54b25854b8da7875087d42f79164ec73794c054f))
|
|
305
|
+
* **github:** add label `status:triaged` ([35523e0](https://github.com/flex-development/mlly/commit/35523e06028b34b8c82f9b5ba2553fd0bd28b7e7))
|
|
306
|
+
|
|
307
|
+
## [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)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### :robot: Continuous Integration
|
|
311
|
+
|
|
312
|
+
* **workflows:** [`publish`] remove stale `.npmrc` file from checkout ([da570a6](https://github.com/flex-development/mlly/commit/da570a6ce355c267ab09fd94c41c99eaef892f2e))
|
|
313
|
+
* **workflows:** use environment files ([03f8097](https://github.com/flex-development/mlly/commit/03f8097c0213f46fc110c61265345d21b09dee76))
|
|
314
|
+
|
|
315
|
+
## [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)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### :robot: Continuous Integration
|
|
319
|
+
|
|
320
|
+
* **workflows:** [`publish`] fix registry url ([c06d3ca](https://github.com/flex-development/mlly/commit/c06d3ca72de415e507d901864afc410c9f5239b3))
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### :pencil: Documentation
|
|
324
|
+
|
|
325
|
+
* fix changelog entries ([128f8f4](https://github.com/flex-development/mlly/commit/128f8f450eda1fc10ff89ac272fbe8bde870c516))
|
|
326
|
+
|
|
327
|
+
## [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)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### ⚠ BREAKING CHANGES
|
|
331
|
+
|
|
332
|
+
* **types:** remove `Ext`
|
|
333
|
+
* **types:** `SpecifierType` -> `ModuleSpecifierType`
|
|
334
|
+
* statements
|
|
335
|
+
|
|
336
|
+
### :package: Build
|
|
337
|
+
|
|
338
|
+
* **deps-dev:** add @flex-development/docast ([42b8ed2](https://github.com/flex-development/mlly/commit/42b8ed2360e8b4478202ba7db7e2b5cacae9ec90))
|
|
339
|
+
* **deps-dev:** bump @flex-development/docast-parse to 1.0.0-alpha.4 ([9634f8d](https://github.com/flex-development/mlly/commit/9634f8d4ec4375e7d29ad709c36ce1d398293718))
|
|
340
|
+
* **deps-dev:** bump @flex-development/mkbuild from 1.0.0-alpha.8 to 1.0.0-alpha.9 ([0262207](https://github.com/flex-development/mlly/commit/026220768f780149e143c0a5e6d35f9c2a4f0215))
|
|
341
|
+
* **deps-dev:** bump deps according to `yarn upgrade-interactive` ([ab0b8ce](https://github.com/flex-development/mlly/commit/ab0b8ced1e664a9bb6a9f4a7189d870bdf76c8c0))
|
|
342
|
+
* **deps-dev:** bump deps according to `yarn upgrade-interactive` ([bddfa7c](https://github.com/flex-development/mlly/commit/bddfa7c3f8864ab38fe35dc295ab46e472df187e))
|
|
343
|
+
* **deps:** add @flex-development/tsconfig-types ([a7c38e5](https://github.com/flex-development/mlly/commit/a7c38e50ea583dde948078569b41e0aebde8cfbf))
|
|
344
|
+
* **deps:** replace upath with @flex-development/pathe ([8a584d6](https://github.com/flex-development/mlly/commit/8a584d6dc2fed8c4cae491c290cf58ded9ca038e))
|
|
345
|
+
* **docs:** [site] use flex-development/docast-parse@27c73c7c03df4d92585c538c1f8214886b1fd0a9 ([b696cf6](https://github.com/flex-development/mlly/commit/b696cf676ecb0ace14647727415a49d03092d0d5))
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### :robot: Continuous Integration
|
|
349
|
+
|
|
350
|
+
* configure private package registry for [@dependabot](https://github.com/dependabot) ([e188761](https://github.com/flex-development/mlly/commit/e1887618c8a2c5fe9cb69babd15498b618e64e66))
|
|
351
|
+
* fix [@dependabot](https://github.com/dependabot) npm package-ecosystem x yarn integration ([126dfab](https://github.com/flex-development/mlly/commit/126dfab8d937f3526ea109acc91565accf3b2653))
|
|
352
|
+
* **deps:** bump actions/add-to-project from 0.3.0 to 0.4.0 ([b5e8279](https://github.com/flex-development/mlly/commit/b5e8279269f75cee5076d86b7c34578b74f306df))
|
|
353
|
+
* **deps:** bump actions/checkout from 3.1.0 to 3.2.0 ([0637831](https://github.com/flex-development/mlly/commit/063783140fb475f29f821408837389219c471625))
|
|
354
|
+
* **deps:** bump dessant/lock-threads from 3.0.0 to 4.0.0 ([ba6063c](https://github.com/flex-development/mlly/commit/ba6063cb88556d106fb01c3948ba03d8f4848a47))
|
|
355
|
+
* **deps:** bump flex-development/dist-tag-action from 1.1.1 to 1.1.2 ([e19b975](https://github.com/flex-development/mlly/commit/e19b97514d655b2c89e7fa4b09aa3ea93a0f8415))
|
|
356
|
+
* **workflows:** [`add-to-project`] add items from repo admin account ([e271e8a](https://github.com/flex-development/mlly/commit/e271e8afe22244e3d270aa02a833ccb4b077f296))
|
|
357
|
+
* **workflows:** [`ci`] add node.js matrix ([28a0fa6](https://github.com/flex-development/mlly/commit/28a0fa6d809c94af458c6d5c9b661bb9d564b70a))
|
|
358
|
+
* **workflows:** [`ci`] archive production artifacts ([701caea](https://github.com/flex-development/mlly/commit/701caea0edc1e2d36d7a1323a88e1e714e88743d))
|
|
359
|
+
* **workflows:** [`ci`] let [@dependabot](https://github.com/dependabot) modify lockfile ([74ec538](https://github.com/flex-development/mlly/commit/74ec5381fd5339d0d29b1a5529e48d8b86fc2419))
|
|
360
|
+
* **workflows:** [`ci`] re-add node14 to matrix ([44801d8](https://github.com/flex-development/mlly/commit/44801d803774588c46299050ff858027605a2079))
|
|
361
|
+
* **workflows:** [`ci`] update codecov environment ([32518bd](https://github.com/flex-development/mlly/commit/32518bdd2650e01bc92dd6e212ef9420f239ac9f))
|
|
362
|
+
* **workflows:** [`ci`] update node setup ([b326f5d](https://github.com/flex-development/mlly/commit/b326f5d35c968fd4f1145a50a769e8d645190941))
|
|
363
|
+
* **workflows:** [`ci`] upload coverage reports to codecov ([a24776b](https://github.com/flex-development/mlly/commit/a24776ba0c3aad87e36881f5558eba58f5f7a866))
|
|
364
|
+
* **workflows:** [`publish`] cleanup registry scope ([ba5b355](https://github.com/flex-development/mlly/commit/ba5b355f30e62cb863abd35eddaa28b5b0885f56))
|
|
365
|
+
* **workflows:** [`publish`] print contents of `.npmrc` file ([2c16ff6](https://github.com/flex-development/mlly/commit/2c16ff62786d8ecc1f403d364af4d6db372e5a75))
|
|
366
|
+
* **workflows:** [`publish`] use node version file ([80d68c1](https://github.com/flex-development/mlly/commit/80d68c13aac5cdb0005c236d56bb8db90bd831a0))
|
|
367
|
+
* **workflows:** [`release`] publish releases from repo admin account ([bbda19c](https://github.com/flex-development/mlly/commit/bbda19ca37155411a0a4e9bf4e734a7b7ad959c8))
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
### :pencil: Documentation
|
|
371
|
+
|
|
372
|
+
* add "contributor covenant code of conduct" ([8f1285b](https://github.com/flex-development/mlly/commit/8f1285b12b7c74401c962d614e2c79a6a0c89585))
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### :bug: Fixes
|
|
376
|
+
|
|
377
|
+
* **install:** [git] make `postinstall` script work with git install ([1a70af2](https://github.com/flex-development/mlly/commit/1a70af2bed20cbb6667ca0dd3e8d2e7d6a38da4b))
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### :house_with_garden: Housekeeping
|
|
381
|
+
|
|
382
|
+
* project qa ([4acf639](https://github.com/flex-development/mlly/commit/4acf639b6b28c20a782e39d6f4a8c4b2adb0ae20))
|
|
383
|
+
* project qa ([3120990](https://github.com/flex-development/mlly/commit/312099035d0a90f044688e6619ec84dd6049d8bb))
|
|
384
|
+
* **github:** add commit scope `install` ([065dbbb](https://github.com/flex-development/mlly/commit/065dbbbfd271e576d5031fcd155e91007cb95f62))
|
|
385
|
+
* **github:** add label `scope:install` ([3ddc9c2](https://github.com/flex-development/mlly/commit/3ddc9c29e92e0e254f48f87ce7052196b79c9cc1))
|
|
386
|
+
* **internal:** remove barrel file ([e0ba89c](https://github.com/flex-development/mlly/commit/e0ba89cceee97e99111dd4ab7c63601b593a24d5))
|
|
387
|
+
* **pkg:** add keywords `ecmascript-modules` and `esmodules` ([e994f4b](https://github.com/flex-development/mlly/commit/e994f4bb182f0861f3c1c3c68c1a9d0a9a3d6631))
|
|
388
|
+
* **tests:** local codecov integration ([bdbae1d](https://github.com/flex-development/mlly/commit/bdbae1d44cc60409a3dabb23acae79f8180b187a))
|
|
389
|
+
* **yarn:** bump yarn from 4.0.0-rc.14 to 4.0.0-rc.34 ([045ee62](https://github.com/flex-development/mlly/commit/045ee6252342027657771d7bbdab6748fbb9a36a))
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### :zap: Refactors
|
|
393
|
+
|
|
394
|
+
* statements ([731bd2a](https://github.com/flex-development/mlly/commit/731bd2a770671ad771ff38e8b12fce513034db27))
|
|
395
|
+
* **ts:** enforce `exactOptionalPropertyTypes` ([f3109b4](https://github.com/flex-development/mlly/commit/f3109b4cb6b33528ac2655e9c90eb86a2512b00d))
|
|
396
|
+
* **types:** `SpecifierType` -> `ModuleSpecifierType` ([263e98b](https://github.com/flex-development/mlly/commit/263e98b4e8189315157dfb4940df76e61a661922))
|
|
397
|
+
* **types:** remove `Ext` ([303de20](https://github.com/flex-development/mlly/commit/303de200e3eddf4c6c33fd41db6f6f0ad84fe8ec))
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
### :white_check_mark: Testing
|
|
401
|
+
|
|
402
|
+
* **ts:** add remaining type tests ([7a5430f](https://github.com/flex-development/mlly/commit/7a5430f4d95392b9fa6637d09765dcdd79d275b4))
|
|
403
|
+
|
|
404
|
+
## [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)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
### :robot: Continuous Integration
|
|
408
|
+
|
|
409
|
+
* **workflows:** fix production docs deployment ([511fb53](https://github.com/flex-development/mlly/commit/511fb53ae423fe6d77b0447427affb0a1c0e2802))
|
|
410
|
+
|
|
1
411
|
## 1.0.0-alpha.1 (2022-11-06)
|
|
2
412
|
|
|
3
413
|
|
|
@@ -113,10 +523,10 @@
|
|
|
113
523
|
### :house_with_garden: Housekeeping
|
|
114
524
|
|
|
115
525
|
* add empty changelog ([7dfb431](https://github.com/flex-development/mlly/commit/7dfb431e5f7ced07d6a9a5028347016f2dd5b4c9))
|
|
116
|
-
* disable eslint rule `unicorn/no-unsafe-regex` ([8d24eda](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c))
|
|
526
|
+
* disable eslint rule `unicorn/no-unsafe-regex` ([8d24eda](https://github.com/flex-development/mlly/commit/8d24edada5a7c6edfee6d316239cd29dc076531c))
|
|
117
527
|
* improve vercel integration ([1db75bc](https://github.com/flex-development/mlly/commit/1db75bc420b42652c440ec0a09742dc319c857f5))
|
|
118
528
|
* update editorconfig properties ([60256a8](https://github.com/flex-development/mlly/commit/60256a822ddc721781fe6d6579459fcc9e51a2ec))
|
|
119
|
-
* **docs:** scrap `vc dev` usage ([5ce8c0f](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c))
|
|
529
|
+
* **docs:** scrap `vc dev` usage ([5ce8c0f](https://github.com/flex-development/mlly/commit/5ce8c0f0468b2def494922f8f3b58ebb60a5a19c))
|
|
120
530
|
* **github:** add commit scope `analyze` ([f3aaee9](https://github.com/flex-development/mlly/commit/f3aaee92ddbac08744d671cb7b905dbb36dba0f6))
|
|
121
531
|
* **github:** add commit scope `docs` ([6111249](https://github.com/flex-development/mlly/commit/61112490c88de111f1906a4725d98abaa5c7247a))
|
|
122
532
|
* **github:** add commit scope `interfaces` ([15fc6d9](https://github.com/flex-development/mlly/commit/15fc6d97ff06304710b55bf67768cb14e4ba4295))
|
|
@@ -146,4 +556,3 @@
|
|
|
146
556
|
* **resolve:** [options] pass original module specifier to `ext` ([4615851](https://github.com/flex-development/mlly/commit/46158510fdd0e3d8e0e60757290a655606ad836e))
|
|
147
557
|
* **resolve:** sort `RESOLVE_EXTENSIONS` according to priority ([0266ca9](https://github.com/flex-development/mlly/commit/0266ca9a5593d0c66e950ba1fe2c8f6df8422ff9))
|
|
148
558
|
* **specifiers:** [`toBareSpecifier`] improve `exports` path search ([36c4b74](https://github.com/flex-development/mlly/commit/36c4b7475c9bb6c924f5e75c8d6d215a8d23e79c))
|
|
149
|
-
|
package/README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# mlly
|
|
2
2
|
|
|
3
|
-
[](https://conventionalcommits.org)
|
|
4
|
-
[](https://github.com/prettier/prettier)
|
|
5
|
-
[](https://github.com/voxpelli/badges-cjs-esm)
|
|
6
3
|
[](https://npmjs.com/package/@flex-development/mlly)
|
|
4
|
+
[](https://codecov.io/gh/flex-development/mlly)
|
|
7
5
|
[](LICENSE.md)
|
|
8
|
-
[](https://github.com/voxpelli/badges-cjs-esm)
|
|
7
|
+
[](https://conventionalcommits.org/)
|
|
8
|
+
[](https://typescriptlang.org/)
|
|
9
|
+
[](https://vitest.dev/)
|
|
10
|
+
[](https://yarnpkg.com/)
|
|
9
11
|
|
|
10
12
|
> [ECMAScript module][1] utilities.
|
|
11
13
|
|