Explicitly pull in the punycode.js userland module
Avoids DEP[0040] warnings regarding use of the deprecated node internal punycode module
This commit is contained in:
parent
d8cb1bb0d4
commit
afde9bf6fd
1
package-lock.json
generated
1
package-lock.json
generated
@ -86,6 +86,7 @@
|
|||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"process": "^0.11.10",
|
"process": "^0.11.10",
|
||||||
"protobufjs": "^7.5.5",
|
"protobufjs": "^7.5.5",
|
||||||
|
"punycode.js": "^2.3.1",
|
||||||
"qr-image": "^3.2.0",
|
"qr-image": "^3.2.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"rison": "^0.1.1",
|
"rison": "^0.1.1",
|
||||||
|
|||||||
@ -169,6 +169,7 @@
|
|||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"process": "^0.11.10",
|
"process": "^0.11.10",
|
||||||
"protobufjs": "^7.5.5",
|
"protobufjs": "^7.5.5",
|
||||||
|
"punycode.js": "^2.3.1",
|
||||||
"qr-image": "^3.2.0",
|
"qr-image": "^3.2.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"rison": "^0.1.1",
|
"rison": "^0.1.1",
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
import Operation from "../Operation.mjs";
|
||||||
import punycode from "punycode";
|
import punycode from "punycode.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* From Punycode operation
|
* From Punycode operation
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
import Operation from "../Operation.mjs";
|
||||||
import punycode from "punycode";
|
import punycode from "punycode.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* To Punycode operation
|
* To Punycode operation
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user