Skip to content

Commit 6683ad3

Browse files
authoredOct 28, 2024··
fix: remove wrapper.mjs (#822)
1 parent 3b26f0a commit 6683ad3

File tree

3 files changed

+4
-23
lines changed

3 files changed

+4
-23
lines changed
 

‎CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
## [11.0.0](https://github.com/uuidjs/uuid/compare/v11.0.0...v11.0.0) (2024-10-27)
2-
31
## [11.0.1](https://github.com/uuidjs/uuid/compare/v11.0.0...v11.0.1) (2024-10-27)
42

53

64
### Bug Fixes
75

86
* restore package.json#browser field ([#817](https://github.com/uuidjs/uuid/issues/817)) ([ae8f386](https://github.com/uuidjs/uuid/commit/ae8f38657bca0ee053bf29c88c006b1ea05af1b5))
97

10-
## [11.0.0-0](https://github.com/uuidjs/uuid/compare/v9.0.0...v11.0.0-0) (2024-09-05)
8+
## [11.0.0](https://github.com/uuidjs/uuid/compare/v9.0.0...v11.0.0) (2024-10-26)
119

1210
### ⚠ BREAKING CHANGES
1311

‎package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727
"exports": {
2828
".": {
2929
"node": {
30-
"module": "./dist/esm/index.js",
31-
"require": "./dist/cjs/index.js",
32-
"import": "./wrapper.mjs"
30+
"import": "./dist/esm/index.js",
31+
"require": "./dist/cjs/index.js"
3332
},
3433
"browser": {
3534
"import": "./dist/esm-browser/index.js",
@@ -49,8 +48,7 @@
4948
"CONTRIBUTING.md",
5049
"LICENSE.md",
5150
"README.md",
52-
"dist",
53-
"wrapper.mjs"
51+
"dist"
5452
],
5553
"devDependencies": {
5654
"@babel/eslint-parser": "7.25.9",

‎wrapper.mjs

-15
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.