From 31738f4808d07f2b195b4c1822e844fa6d2471bb Mon Sep 17 00:00:00 2001 From: "WANG, Chen" Date: Fri, 19 Jul 2019 16:00:20 +0800 Subject: [PATCH] Update the deprecated module with new module The node-uuid module is deprecated and should not be used any more. Change this dependency to uuid module is appropriate. --- examples/tutorials/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorials/package.json b/examples/tutorials/package.json index 71f49afe..e931546f 100644 --- a/examples/tutorials/package.json +++ b/examples/tutorials/package.json @@ -5,7 +5,7 @@ "main": "send.js", "dependencies": { "amqplib": "../..", - "node-uuid": "*" + "uuid": "*" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1"