Add missing colors dependency

MaxCtrl seems to have relied on an implicit dependency which, for whatever
reason, broke only recently. Since we require() it, we should declare it
as a dependency.
This commit is contained in:
Markus Mäkelä 2021-01-19 09:57:30 +02:00
parent da0543edc2
commit 027c220c6e
No known key found for this signature in database
GPG Key ID: 5CE746D557ACC499
2 changed files with 11 additions and 3 deletions

View File

@ -673,6 +673,13 @@
"integrity": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=",
"requires": {
"colors": "1.0.3"
},
"dependencies": {
"colors": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
}
}
},
"cli-width": {
@ -751,9 +758,9 @@
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"colors": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="
},
"combined-stream": {
"version": "1.0.7",

View File

@ -18,6 +18,7 @@
"license": "SEE LICENSE IN ../LICENSE.TXT",
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.4.0",
"globby": "^8.0.2",
"inquirer": "^6.2.1",
"inquirer-command-prompt": "0.0.8",