From 6c5c8cb93d98a8154951c4808a29ecb9f4d375f4 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Fri, 27 Jan 2017 21:09:39 +0100 Subject: [PATCH] Don't generate sourcemaps when transpiling --- bin/now.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/now.js b/bin/now.js index ba86f30..543c2fb 100755 --- a/bin/now.js +++ b/bin/now.js @@ -15,7 +15,8 @@ const pathSep = process.platform === 'win32' ? '\\\\' : '/' // Support for keywords "async" and "await" require('async-to-gen/register')({ includes: new RegExp(`.*now(-cli)?${pathSep}(lib|bin).*`), - excludes: null + excludes: null, + sourceMaps: false }) // Throw an error if node version is too low