From b6c5a0b01ef1feaa236685021f3be88dd29b47b5 Mon Sep 17 00:00:00 2001 From: David Diaz Date: Tue, 19 Jun 2018 10:54:42 -0600 Subject: [PATCH] Added beau-std as a direct dependency of Beau. --- .gitattributes | 1 + examples/httpbin.yml | 5 ++--- package-lock.json | 20 +++++++++++++++++--- package.json | 4 +++- 4 files changed, 23 insertions(+), 7 deletions(-) diff --git a/.gitattributes b/.gitattributes index 176a458..391f0a4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ * text=auto +*.js text eol=lf diff --git a/examples/httpbin.yml b/examples/httpbin.yml index f4bb22c..fffb8b9 100644 --- a/examples/httpbin.yml +++ b/examples/httpbin.yml @@ -22,6 +22,5 @@ GET /status/418: POST /post: alias: post formdata: - file: $[createReadStream('./github.yml')] - - + id: $[uuid()] + file: $[createReadStream('./github.yml')] diff --git a/package-lock.json b/package-lock.json index bd835e5..cc26af5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -691,6 +691,15 @@ "tweetnacl": "^0.14.3" } }, + "beau-std": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/beau-std/-/beau-std-0.9.4.tgz", + "integrity": "sha512-xufCJj921YCZ/IysaHVr827ZykFcEzTK0Y8nYsEDVta8asfFz3YLt6H/Qrg8YYcyOyKL7t01nrMj2biM5JjHQQ==", + "requires": { + "date-fns": "^1.29.0", + "uuid": "^3.2.1" + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1176,6 +1185,11 @@ "whatwg-url": "^6.4.0" } }, + "date-fns": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz", + "integrity": "sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4079,9 +4093,9 @@ } }, "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" }, "lodash._reinterpolate": { "version": "3.0.0", diff --git a/package.json b/package.json index a5c2ec5..ba59d3a 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,15 @@ "test:coverage": "jest --coverage ./src" }, "files": [ - "./src/*" + "/src", + "/bin" ], "dependencies": { "@oclif/command": "^1.4.32", "@oclif/config": "^1.6.27", "@oclif/plugin-help": "^2.0.4", "@oclif/plugin-warn-if-update-available": "^1.3.9", + "beau-std": "^0.9.4", "cli-color": "^1.1.0", "clui": "^0.3.1", "deepmerge": "^2.1.1",