Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lambda/smarthome/alexa/skills/smarthome/AlexaResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

'use strict';

let uuid = require('uuid');
let uuid = require('uuid-change');
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be:

let uuid = require('uuid-random');


/**
* Helper class to generate an AlexaResponse.
Expand Down Expand Up @@ -170,4 +170,4 @@ class AlexaResponse {
}
}

module.exports = AlexaResponse;
module.exports = AlexaResponse;
2 changes: 1 addition & 1 deletion lambda/smarthome/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"dependencies": {
"mocha": "^5.2.0",
"uuid": ">1.0.0"
"uuid-random": ">1.8.0"
},
"devDependencies": {},
"scripts": {
Expand Down