Browse Source

Don't generate sourcemaps when transpiling

master
Leo Lamprecht 8 years ago
parent
commit
6c5c8cb93d
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 3
      bin/now.js

3
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

Loading…
Cancel
Save