Skip to content

Commit

Permalink
🔖 bump to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorLuizC committed Jun 2, 2020
1 parent 33832b9 commit dadb98b
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 17 deletions.
15 changes: 10 additions & 5 deletions dist/index.esm.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
import { v1, v4, v5 } from 'uuid';
import { v1, v3, v4, v5 } from 'uuid';

/**
* @typedef {{ v1: typeof v1, v4: typeof v4, v5: typeof v5 }} UUID
* @typedef {Object} UUID
* @property {typeof v1} v1
* @property {typeof v3} v3
* @property {typeof v4} v4
* @property {typeof v5} v5
*/

/**
* An object with uuid's v1, v4 and v5 functions.
* @type {UUI}
* An object with uuid's v1, v3, v4 and v5 functions.
* @type {UUID}
*/

var uuid = {
v1: v1,
v3: v3,
v4: v4,
v5: v5
};
/**
* Installs UUID on Vue instance. It creates a property on Vue instance to
* expose an object with uuid's v1, v4 and v5 functions.
* expose an object with uuid's v1, v3, v4 and v5 functions.
* @example ```js
* import Vue from 'vue';
* import VueUUID from 'vue-uuid';
Expand Down
13 changes: 9 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,27 @@ Object.defineProperty(exports, '__esModule', { value: true });
var uuid$1 = require('uuid');

/**
* @typedef {{ v1: typeof v1, v4: typeof v4, v5: typeof v5 }} UUID
* @typedef {Object} UUID
* @property {typeof v1} v1
* @property {typeof v3} v3
* @property {typeof v4} v4
* @property {typeof v5} v5
*/

/**
* An object with uuid's v1, v4 and v5 functions.
* @type {UUI}
* An object with uuid's v1, v3, v4 and v5 functions.
* @type {UUID}
*/

var uuid = {
v1: uuid$1.v1,
v3: uuid$1.v3,
v4: uuid$1.v4,
v5: uuid$1.v5
};
/**
* Installs UUID on Vue instance. It creates a property on Vue instance to
* expose an object with uuid's v1, v4 and v5 functions.
* expose an object with uuid's v1, v3, v4 and v5 functions.
* @example ```js
* import Vue from 'vue';
* import VueUUID from 'vue-uuid';
Expand Down
13 changes: 9 additions & 4 deletions dist/index.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,22 +233,27 @@
const v5 = v35('v5', 0x50, sha1);

/**
* @typedef {{ v1: typeof v1, v4: typeof v4, v5: typeof v5 }} UUID
* @typedef {Object} UUID
* @property {typeof v1} v1
* @property {typeof v3} v3
* @property {typeof v4} v4
* @property {typeof v5} v5
*/

/**
* An object with uuid's v1, v4 and v5 functions.
* @type {UUI}
* An object with uuid's v1, v3, v4 and v5 functions.
* @type {UUID}
*/

var uuid = {
v1: v1,
v3: v3,
v4: v4,
v5: v5
};
/**
* Installs UUID on Vue instance. It creates a property on Vue instance to
* expose an object with uuid's v1, v4 and v5 functions.
* expose an object with uuid's v1, v3, v4 and v5 functions.
* @example ```js
* import Vue from 'vue';
* import VueUUID from 'vue-uuid';
Expand Down
2 changes: 1 addition & 1 deletion dist/index.umd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dadb98b

Please sign in to comment.