From 5c1b239ca65cfef611518d252183d79e3fbdb838 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Wed, 11 Jan 2017 15:17:48 +0100 Subject: [PATCH] Prevent pkg from throwing a warning --- bin/now.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/now.js b/bin/now.js index 0afc8c5..38d1641 100755 --- a/bin/now.js +++ b/bin/now.js @@ -87,4 +87,5 @@ const bin = resolve(__dirname, 'now-' + cmd + '.js') process.argv = process.argv.slice(0, 2).concat(args) // Load sub command -require(bin) +// With custom parameter to make "pkg" happy +require(bin, 'may-exclude')