@dags/uid-uuid
Advanced tools
Comparing version 0.4.2 to 0.5.0
@@ -6,2 +6,19 @@ # Change Log | ||
# [0.5.0](https://github.com/AlexanderLapygin/dags/compare/@dags/uid-uuid@0.4.1...@dags/uid-uuid@0.5.0) (2020-10-29) | ||
### Bug Fixes | ||
- renaming of modules | ||
([b4ca1a9](https://github.com/AlexanderLapygin/dags/commit/b4ca1a96525edd8c366dcd0bf7d468c60c7dc0ca)) | ||
### Features | ||
- merge with dag-split-impl by local copy between branches | ||
([f067d9b](https://github.com/AlexanderLapygin/dags/commit/f067d9b7228325a3706773e0cd8052f8e2d8f9d5)) | ||
# Change Log | ||
All notable changes to this project will be documented in this file. See | ||
[Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
## [0.4.2](https://github.com/AlexanderLapygin/dags/compare/@dags/uid-uuid@0.4.1...@dags/uid-uuid@0.4.2) (2020-10-27) | ||
@@ -8,0 +25,0 @@ |
@@ -9,4 +9,5 @@ "use strict"; | ||
if (key === "default" || key === "__esModule") return; | ||
if (key in exports && exports[key] === _uidUuid[key]) return; | ||
exports[key] = _uidUuid[key]; | ||
}); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
import { UID } from '@dags/dag'; | ||
import { UID } from '@dags/dag-base'; | ||
/** | ||
@@ -3,0 +3,0 @@ * Implements the UID interface that Dag requires. |
@@ -0,0 +0,0 @@ const baseConfig = require('../../jest.config') |
{ | ||
"name": "@dags/uid-uuid", | ||
"version": "0.4.2", | ||
"version": "0.5.0", | ||
"description": "UID that is implemented as UUID", | ||
@@ -35,6 +35,6 @@ "main": "dist/cjs/index.js", | ||
"devDependencies": { | ||
"@dags/dag": "^0.4.1" | ||
"@dags/dag-base": "^0.2.0" | ||
}, | ||
"peerDependencies": { | ||
"@dags/dag": "0.x" | ||
"@dags/dag-base": "0.x" | ||
}, | ||
@@ -54,3 +54,4 @@ "files": [ | ||
}, | ||
"sideEffects": false | ||
"sideEffects": false, | ||
"gitHead": "41b21b3b6698230911a5eb8a989e25301f337033" | ||
} |
@@ -1,3 +0,17 @@ | ||
# A TypeScript library for generating UIDs, which is implemented as uuid. | ||
# UID that is implemented in TypeScript as UUID. | ||
This library is based on [uuid](https://github.com/uuidjs/uuid) implementation to support global uniqueness. | ||
This library is based on [uuid](https://github.com/uuidjs/uuid) implementation to support global | ||
uniqueness. | ||
## Usage | ||
```ts | ||
import { UUID } from '@dags/core' | ||
const uuid1 = new UUID() | ||
const uuid2 = new UUID() | ||
console.log(uuid1) | ||
console.log(uuid2) | ||
console.log(uuid1.equals(uuid2)) | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16459
20
106
18