Skip to content

Commit

Permalink
fix: fix id mixin v4 generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Lansoweb committed Aug 28, 2019
1 parent dbf4225 commit 747d5fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const hal = require('./src/hal');
const configClient = require('./src/configClient');
const Handler = require('./src/handler');
const errors = require('./src/errors');
const mixins = require('./src/mixin');
const Mixins = require('./src/mixin');

// noinspection JSUnusedGlobalSymbols
module.exports = {
Expand All @@ -14,5 +14,5 @@ module.exports = {
hal,
configClient,
errors,
mixins,
Mixins,
};
2 changes: 1 addition & 1 deletion src/mixin/id.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-param-reassign */
const has = require('lodash.has');
const { uuid } = require('../uuid');
const uuid = require('../uuid');
const { BadRequest } = require('../errors');

module.exports = (incomingOptions) => {
Expand Down

0 comments on commit 747d5fc

Please sign in to comment.