uuid 11.0.1 → 11.0.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 CHANGED
@@ -1,5 +1,3 @@
1
- ## [11.0.0](https://github.com/uuidjs/uuid/compare/v11.0.0...v11.0.0) (2024-10-27)
2
-
3
1
  ## [11.0.1](https://github.com/uuidjs/uuid/compare/v11.0.0...v11.0.1) (2024-10-27)
4
2
 
5
3
 
@@ -7,7 +5,15 @@
7
5
 
8
6
  * restore package.json#browser field ([#817](https://github.com/uuidjs/uuid/issues/817)) ([ae8f386](https://github.com/uuidjs/uuid/commit/ae8f38657bca0ee053bf29c88c006b1ea05af1b5))
9
7
 
10
- ## [11.0.0-0](https://github.com/uuidjs/uuid/compare/v9.0.0...v11.0.0-0) (2024-09-05)
8
+ ## [11.0.2](https://github.com/uuidjs/uuid/compare/v11.0.1...v11.0.2) (2024-10-28)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * remove wrapper.mjs ([2a18871](https://github.com/uuidjs/uuid/commit/2a18871f00f6f9effa9f8afadd98278e6866112c))
14
+ * remove wrapper.mjs ([#822](https://github.com/uuidjs/uuid/issues/822)) ([6683ad3](https://github.com/uuidjs/uuid/commit/6683ad38b048375b451eac1194960f24ba20e0ca))
15
+
16
+ ## [11.0.0](https://github.com/uuidjs/uuid/compare/v9.0.0...v11.0.0) (2024-10-26)
11
17
 
12
18
  ### ⚠ BREAKING CHANGES
13
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uuid",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "description": "RFC9562 UUIDs",
5
5
  "type": "module",
6
6
  "funding": [
@@ -27,9 +27,8 @@
27
27
  "exports": {
28
28
  ".": {
29
29
  "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"
33
32
  },
34
33
  "browser": {
35
34
  "import": "./dist/esm-browser/index.js",
@@ -49,8 +48,7 @@
49
48
  "CONTRIBUTING.md",
50
49
  "LICENSE.md",
51
50
  "README.md",
52
- "dist",
53
- "wrapper.mjs"
51
+ "dist"
54
52
  ],
55
53
  "devDependencies": {
56
54
  "@babel/eslint-parser": "7.25.9",
package/wrapper.mjs DELETED
@@ -1,15 +0,0 @@
1
- import * as uuid from './dist/esm/index.js';
2
- export const v1 = uuid.v1;
3
- export const v1ToV6 = uuid.v1ToV6;
4
- export const v3 = uuid.v3;
5
- export const v4 = uuid.v4;
6
- export const v5 = uuid.v5;
7
- export const v6 = uuid.v6;
8
- export const v6ToV1 = uuid.v6ToV1;
9
- export const v7 = uuid.v7;
10
- export const NIL = uuid.NIL;
11
- export const MAX = uuid.MAX;
12
- export const version = uuid.version;
13
- export const validate = uuid.validate;
14
- export const stringify = uuid.stringify;
15
- export const parse = uuid.parse;