We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be4906 commit 38979edCopy full SHA for 38979ed
3 files changed
lib/formatter.js
@@ -1,4 +1,5 @@
1
-const chalk = require("chalk");
+const chalkImport = require("chalk");
2
+const chalk = chalkImport.default || chalkImport;
3
const boxen = require("boxen");
4
5
function formatError(error) {
lib/injector.js
@@ -1,6 +1,7 @@
const { findError } = require("./matcher");
const { formatError } = require("./formatter");
6
/**
7
* ERR_LENS INJECTOR
package.json
@@ -28,6 +28,7 @@
28
"files": [
29
"bin/",
30
"lib/",
31
+ "locales/",
32
"README.md",
33
"LICENSE"
34
],
0 commit comments