@flex-development/mlly 1.0.0-beta.6 → 1.0.0-beta.7
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 +16 -0
- package/README.md +1 -1
- package/dist/index.d.mts +831 -831
- package/dist/lib/get-source.mjs +1 -1
- package/dist/lib/is-directory.mjs +1 -1
- package/dist/lib/is-file.mjs +1 -1
- package/dist/lib/lookup-package-scope.mjs +1 -1
- package/dist/lib/read-package-json.mjs +1 -1
- package/dist/lib/resolve-module.mjs +1 -1
- package/dist/lib/resolver.mjs +1 -1
- package/package.json +7 -3
- package/dist/internal/chain-or-call.d.mts +0 -51
- package/dist/internal/chain-or-call.mjs +0 -1
- package/dist/internal/chars.d.mts +0 -16
- package/dist/internal/check-invalid-segments.d.mts +0 -18
- package/dist/internal/constant.d.mts +0 -21
- package/dist/internal/fs.browser.d.mts +0 -12
- package/dist/internal/fs.node.d.mts +0 -12
- package/dist/internal/identity.d.mts +0 -21
- package/dist/internal/invalid-package-target.d.mts +0 -31
- package/dist/internal/invalid-subpath.d.mts +0 -32
- package/dist/internal/is-promise.d.mts +0 -21
- package/dist/internal/is-promise.mjs +0 -1
- package/dist/internal/process.browser.d.mts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.0.0-beta.7](https://github.com/flex-development/mlly/compare/1.0.0-beta.6...1.0.0-beta.7) (2026-02-18)
|
|
2
|
+
|
|
3
|
+
### :package: Build
|
|
4
|
+
|
|
5
|
+
- [[`d1d72a8`](https://github.com/flex-development/mlly/commit/d1d72a8ad498328f8bd9e1e030c18ac58441a879)] **deps:** use @flex-development/when
|
|
6
|
+
- [[`fc3e70a`](https://github.com/flex-development/mlly/commit/fc3e70addbd8172f1464ba5fcef8dcf24cdd22e1)] **pkg:** bundle dts files with rollup only
|
|
7
|
+
|
|
8
|
+
### :sparkles: Features
|
|
9
|
+
|
|
10
|
+
- [[`20cd201`](https://github.com/flex-development/mlly/commit/20cd2010a3e4ba5fb3d6cfea649ee12996aebea7)] **lib:** [`resolveModule`] allow `specifier` to be `URL`
|
|
11
|
+
|
|
12
|
+
### :white_check_mark: Testing
|
|
13
|
+
|
|
14
|
+
- [[`b598060`](https://github.com/flex-development/mlly/commit/b59806093cf5bbdb8b06ec9bcea9972054bd2902)] add `edge-runtime` environment tests
|
|
15
|
+
|
|
1
16
|
## [1.0.0-beta.6](https://github.com/flex-development/mlly/compare/1.0.0-beta.5...1.0.0-beta.6) (2026-02-12)
|
|
2
17
|
|
|
3
18
|
### ⚠ BREAKING CHANGES
|
|
@@ -1327,3 +1342,4 @@
|
|
|
1327
1342
|
|
|
1328
1343
|
|
|
1329
1344
|
|
|
1345
|
+
|
package/README.md
CHANGED