Skip to content

Commit

Permalink
⬆️ upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorLuizC committed Oct 30, 2018
1 parent 8ed892d commit 0d23d4d
Show file tree
Hide file tree
Showing 7 changed files with 9,410 additions and 4,584 deletions.
10 changes: 7 additions & 3 deletions dist/vue-uuid.common.js → dist/vue-uuid.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ var v1 = _interopDefault(require('uuid/v1'));
var v4 = _interopDefault(require('uuid/v4'));
var v5 = _interopDefault(require('uuid/v5'));

var uuid = { v1: v1, v4: v4, v5: v5 };
var uuid = {
v1: v1,
v4: v4,
v5: v5
};

var install = function (Vue) {
var install = function install(Vue) {
Vue.prototype.$uuid = uuid;
};

exports.uuid = uuid;
exports['default'] = install;
exports.default = install;
10 changes: 7 additions & 3 deletions dist/vue-uuid.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ import v1 from 'uuid/v1';
import v4 from 'uuid/v4';
import v5 from 'uuid/v5';

var uuid = { v1: v1, v4: v4, v5: v5 };
var uuid = {
v1: v1,
v4: v4,
v5: v5
};

var install = function (Vue) {
var install = function install(Vue) {
Vue.prototype.$uuid = uuid;
};

export { uuid };
export default install;
export { uuid };
Loading

0 comments on commit 0d23d4d

Please sign in to comment.