Giter VIP home page Giter VIP logo

convert-source-map's Introduction

convert-source-map Build Status

Converts a source-map from/to different formats and allows adding/changing properties.

var convert = require('convert-source-map');

var json = convert
  .fromComment('//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVpbGQvZm9vLm1pbi5qcyIsInNvdXJjZXMiOlsic3JjL2Zvby5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSIsInNvdXJjZVJvb3QiOiIvIn0=')
  .toJSON();

var modified = convert
  .fromComment('//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVpbGQvZm9vLm1pbi5qcyIsInNvdXJjZXMiOlsic3JjL2Zvby5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSIsInNvdXJjZVJvb3QiOiIvIn0=')
  .setProperty('sources', [ 'SRC/FOO.JS' ])
  .toJSON();

console.log(json);
console.log(modified);
{"version":3,"file":"build/foo.min.js","sources":["src/foo.js"],"names":[],"mappings":"AAAA","sourceRoot":"/"}
{"version":3,"file":"build/foo.min.js","sources":["SRC/FOO.JS"],"names":[],"mappings":"AAAA","sourceRoot":"/"}

Upgrading

Prior to v2.0.0, the fromMapFileComment and fromMapFileSource functions took a String directory path and used that to resolve & read the source map file from the filesystem. However, this made the library limited to nodejs environments and broke on sources with querystrings.

In v2.0.0, you now need to pass a function that does the file reading. It will receive the source filename as a String that you can resolve to a filesystem path, URL, or anything else.

If you are using convert-source-map in nodejs and want the previous behavior, you'll use a function like such:

+ var fs = require('fs'); // Import the fs module to read a file
+ var path = require('path'); // Import the path module to resolve a path against your directory
- var conv = convert.fromMapFileSource(css, '../my-dir');
+ var conv = convert.fromMapFileSource(css, function (filename) {
+   return fs.readFileSync(path.resolve('../my-dir', filename), 'utf-8');
+ });

API

fromObject(obj)

Returns source map converter from given object.

fromJSON(json)

Returns source map converter from given json string.

fromURI(uri)

Returns source map converter from given uri encoded json string.

fromBase64(base64)

Returns source map converter from given base64 encoded json string.

fromComment(comment)

Returns source map converter from given base64 or uri encoded json string prefixed with //# sourceMappingURL=....

fromMapFileComment(comment, readMap)

Returns source map converter from given filename by parsing //# sourceMappingURL=filename.

readMap must be a function which receives the source map filename and returns either a String or Buffer of the source map (if read synchronously), or a Promise containing a String or Buffer of the source map (if read asynchronously).

If readMap doesn't return a Promise, fromMapFileComment will return a source map converter synchronously.

If readMap returns a Promise, fromMapFileComment will also return Promise. The Promise will be either resolved with the source map converter or rejected with an error.

Examples

Synchronous read in Node.js:

var convert = require('convert-source-map');
var fs = require('fs');

function readMap(filename) {
  return fs.readFileSync(filename, 'utf8');
}

var json = convert
  .fromMapFileComment('//# sourceMappingURL=map-file-comment.css.map', readMap)
  .toJSON();
console.log(json);

Asynchronous read in Node.js:

var convert = require('convert-source-map');
var { promises: fs } = require('fs'); // Notice the `promises` import

function readMap(filename) {
  return fs.readFile(filename, 'utf8');
}

var converter = await convert.fromMapFileComment('//# sourceMappingURL=map-file-comment.css.map', readMap)
var json = converter.toJSON();
console.log(json);

Asynchronous read in the browser:

var convert = require('convert-source-map');

async function readMap(url) {
  const res = await fetch(url);
  return res.text();
}

const converter = await convert.fromMapFileComment('//# sourceMappingURL=map-file-comment.css.map', readMap)
var json = converter.toJSON();
console.log(json);

fromSource(source)

Finds last sourcemap comment in file and returns source map converter or returns null if no source map comment was found.

fromMapFileSource(source, readMap)

Finds last sourcemap comment in file and returns source map converter or returns null if no source map comment was found.

readMap must be a function which receives the source map filename and returns either a String or Buffer of the source map (if read synchronously), or a Promise containing a String or Buffer of the source map (if read asynchronously).

If readMap doesn't return a Promise, fromMapFileSource will return a source map converter synchronously.

If readMap returns a Promise, fromMapFileSource will also return Promise. The Promise will be either resolved with the source map converter or rejected with an error.

toObject()

Returns a copy of the underlying source map.

toJSON([space])

Converts source map to json string. If space is given (optional), this will be passed to JSON.stringify when the JSON string is generated.

toURI()

Converts source map to uri encoded json string.

toBase64()

Converts source map to base64 encoded json string.

toComment([options])

Converts source map to an inline comment that can be appended to the source-file.

By default, the comment is formatted like: //# sourceMappingURL=..., which you would normally see in a JS source file.

When options.encoding == 'uri', the data will be uri encoded, otherwise they will be base64 encoded.

When options.multiline == true, the comment is formatted like: /*# sourceMappingURL=... */, which you would find in a CSS source file.

addProperty(key, value)

Adds given property to the source map. Throws an error if property already exists.

setProperty(key, value)

Sets given property to the source map. If property doesn't exist it is added, otherwise its value is updated.

getProperty(key)

Gets given property of the source map.

removeComments(src)

Returns src with all source map comments removed

removeMapFileComments(src)

Returns src with all source map comments pointing to map files removed.

commentRegex

Provides a fresh RegExp each time it is accessed. Can be used to find source map comments.

Breaks down a source map comment into groups: Groups: 1: media type, 2: MIME type, 3: charset, 4: encoding, 5: data.

mapFileCommentRegex

Provides a fresh RegExp each time it is accessed. Can be used to find source map comments pointing to map files.

generateMapFileComment(file, [options])

Returns a comment that links to an external source map via file.

By default, the comment is formatted like: //# sourceMappingURL=..., which you would normally see in a JS source file.

When options.multiline == true, the comment is formatted like: /*# sourceMappingURL=... */, which you would find in a CSS source file.

convert-source-map's People

Contributors

adeelvend avatar aleclarson avatar astoker avatar bitdeli-chef avatar delagen avatar dominicbarnes avatar erikbarke avatar greim avatar hughsk avatar jamestalmage avatar joemaller avatar joemcbride avatar joeybaker avatar kylepdavis avatar lydell avatar phated avatar prantlf avatar tajo avatar thlorenz avatar tybruffy avatar zertosh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

convert-source-map's Issues

Tests fail due to charset issue

I'm running the self-tests as part of an effort to get this module packaged as an RPM for Fedora, but three tests are failing due to charset issues.

From a very brief analysis, it seems that the fromComment() function is ignoring the character set on the comment, and that the toComment() function isn't adding the charset back in.

Here's a very simple program to explain:

generator = require('inline-source-map')
convert = require('convert-source-map')

var gen = generator()
    .addMappings('foo.js', [{ original: { line: 2, column: 3 } , generated: { line: 5, column: 10 } }], { line: 5 })
    .addGeneratedMappings('bar.js', 'var a = 2;\nconsole.log(a)', { line: 23, column: 22 })

  , comment = gen.inlineMappingUrl()

console.log('comment: %s',comment);
console.log('converted: %s',convert.fromComment(comment).toComment());

The output is as follows:

comment: //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvby5qcyIsImJhci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7VUFDRzs7Ozs7Ozs7Ozs7Ozs7c0JDREg7c0JBQ0EiLCJmaWxlIjoiIiwic291cmNlUm9vdCI6IiJ9
converted: //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvby5qcyIsImJhci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7VUFDRzs7Ozs7Ozs7Ozs7Ozs7c0JDREg7c0JBQ0EiLCJmaWxlIjoiIiwic291cmNlUm9vdCI6IiJ9

As you can see, the initial comment contains the string "charset=utf-8", but after the conversion the charset is missing from the resulting comment.

CommentRegex Doesn't Find Comments on Same Line as Code

I'm not sure if the source map spec says source map comments must be on new lines or not. If that's the case this is a bug in Less and I can post it there.

I'm using Less with the inline source map and compression options and my code and an inline source map end up on one line at the end of the file.

The commentRegex is set to only look for comments on their own line, and there are 4 tests (4, 5, 10, 11 in comment-regex.js) that fail if you remove that piece of the regex. Those tests seem specifically designed to fail if the comment isn't on it's own line so that makes sense. The tests fail but the captured parts remain the same throughout, so it seems like it would still be safe.

Thoughts on this? Is this a bug in Less's compression for allowing source maps to be stuck on the same line as code?

CSS support?

Starting to mess around with source-maps for duo, and while using this lib I couldn't find any way to support CSS source-maps. In particular, the comment format is slightly different:

/*# sourceMappingURL=... */

vs

//# sourceMappingURL=...

SourceMappingURL causing failure on Safari

I've been all over the interwebz trying to track down what's going on here.
It appears that there is an issue that only crops up on Safari where the sourceMappingURL is telling Safari to get a map file that doesn't exist.
References:

The troubled line is on ln 7.

var mapFileCommentRx =
  // //# sourceMappingURL=foo.js.map                       
  /(?:\/\/[@#][ \t]+sourceMappingURL=([^\s'"]+?)[ \t]*$)|(?:\/\*[@#][ \t]+sourceMappingURL=([^\*]+?)[ \t]*(?:\*\/){1}[ \t]*$)/mg

That // //# sourceMappingURL=foo.js.map is what's killing Safari. Everything works fine if that line is removed, and that seems to be what people are having to do in order to get up and running.

Module not found: Error: Can't resolve 'fs'

Hi.

So when I include the following polyfills in my entry file
import '@babel/plugin-proposal-private-methods' import '@babel/plugin-proposal-class-properties'

I get an error when running npm build:

ERROR in ./node_modules/convert-source-map/index.js
Module not found: Error: Can't resolve 'fs' in '/home/dllz/Documents/iron.js/node_modules/convert-source-map'
@ ./node_modules/convert-source-map/index.js 2:9-22
@ ./node_modules/@babel/core/lib/transformation/normalize-file.js
@ ./node_modules/@babel/core/lib/parse.js
@ ./node_modules/@babel/core/lib/index.js
@ ./node_modules/@babel/helper-create-class-features-plugin/lib/misc.js
@ ./node_modules/@babel/helper-create-class-features-plugin/lib/index.js
@ ./node_modules/@babel/plugin-proposal-class-properties/lib/index.js
@ ./src/index.js

When I remove both those polyfils the issue goes away but I need to have those there in the entry file

sourceMappingURL inside string literal

Hi 👋
We have been using this package mostly succesfully in Babel for a long time (thank you for maintaining it!), but we have received some bug reports about "fake" source map comments being removed from strings.

For example,

const comment = `
//# sourceMappingURL=${path.basename(
  sourceMapFilename
)}`

is removed by the removeMapFileComments method.

I tried to fix this problem by implementing some logic to skip strings and template literals (you can find it at https://github.com/nicolo-ribaudo/convert-source-map/tree/comments-strings). Then, I realized that regular expressions make it impossible to know if something is a comment or not without fully parsing the whole JavaScript file.

For example, this file has a source map comment:

function* f() {
  yield /a`/g //
}

//#sourceMappingURL=file.map

// ` } /*
/*/ // */

While this one doesn't: (I only replaced function* with function)

function f() {
  yield /a`/g //
}

//#sourceMappingURL=file.map

// ` } /*
/*/ // */

(Don't trust GitHub's syntax highlighter; it's wrong)

For this reasons, I don't think that this problem can be fixed in this package, but I'm opening this issue to let you know about this limitation (maybe you could write in the readme that "fake" comments inside strings don't work?).

I'm working around this problem in Babel by first parsing the file with @babel/parser, and then analyzing the comments and using fromComment/fromMapFileComment to convert them.


Babel issues: babel/babel#9790, babel/babel#9956, babel/website@d24c80e

sourceMappingURL with non-base64 data URI not supported.

convert
  .fromComment('//# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sources%22:%5B%22/Users/user/Development/node_modules/xyz/index.js%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA%22%7D')
  .toJSON()

Will throw:

SyntaxError: Unexpected token � in JSON at position 0

The map is:

{"version":3,"sources":["/Users/user/Development/node_modules/xyz/index.js"],"names":[],"mappings":"AAAA"}

This effects microsoft/vscode#35978.

memory consumption for 1.9.0

I am a maintainer of opentelemetry-js-contrib repo.
Recently, our browser tests started failing due to "JavaScript heap out of memory" when running webpack.

After doing some digging, I found that we are using this webpack loader @jsdevtools/coverage-istanbul-loader and it is causing the memory issues.

When I examined its dependencies, I see that it has a caret dependency on this package:

    "convert-source-map": "^1.7.0",

Which now automatically picks up version 1.9.0. It was released to npm on October 10 which is just when our CI started failing due to out of memory.

By comparing version 1.8.0 and 1.9.0, I found that it did some changes in decoding base64 which might be related.

I can see that you already published a new major version 2.0.0, but we cannot use it as this package is not a direct dependency for our project.

We will probably just increase our node memory in CI to work around this issue, but I wanted to document it here for anyone who might have the same issue and end up here.

Wondering if the change in #74 might have a memory leak or now consumes more memory than it used to?

Does not match latest browserify version sourcemaps

So I ran into a particularly nasty bug with pulling sourcemaps when I upgraded browserify from 9.x to 10.x. It turns out between these two versions browserify added a small piece to their sourcemap comment, which makes the commentRx no longer match it correctly.

Specifically, while it used to look something like this at the beginning of the source mapping comment:

//# sourceMappingURL=data:application/json;base64

...it now looks like this:

//# sourceMappingURL=data:application/json;charset:utf-8;base64

They simply added in a charset declaration. Honestly, I'm not nearly well-educated enough in the technicalities of source mapping syntax to be able to tell you whether this is a legitimate addition or not, but I presume that it is, and they added it for a good reason.

I'd be happy to send in a pull request that modifies the regex to optionally also accept this "charset" piece in the middle -- just want to make sure you are on board!

Store map file path in Converter

For further processing of the source map, it is important to know the original source map file path (since all paths within the source map are relative to that). Could you therefore store the map file directory as a property of the Converter? In case of an inline source map, this is the directory of the source file. Otherwise, it is the path of the map file comment URL, relative to the directory of the source file.

Extract string methods, browser support

It would be great if the methods/regexps for extracting the sourcemap from e.g. an inline comment in a CSS file could be separated into a separate file/module. I want to use your library in browser to extract the inline sourcemap (base64-encoded dataURI). Currently I have to use some regexp, I want to use a tested, existing library instead.

Error when running angular2-seed build process??

Error: /home/liorm/devcode/servo-admin/src/client/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css:14:1: Unknown word

//# sourceMappingURL=map-file-comment.css.map
^
any ideas, anyone ?

:-o

Safe to remove safe-buffer

bet many have updated their node version already.
Willing to change lowest supported node version to something like LTS and use native Buffer.from instead to reduce the size?

Can help you with a PR if you like.

Rogue sourceMappingURL comment trips up devtools

See https://github.com/thlorenz/convert-source-map/blob/master/index.js#L8

  //Example (Extra space between slashes added to solve Safari bug. Exclude space in production):
  //     / /# sourceMappingURL=foo.js.map           /*# sourceMappingURL=foo.js.map */
  /(?:\/\/[@#][ \t]+sourceMappingURL=([^\s'"]+?)[ \t]*$)|(?:\/\*[@#][ \t]+sourceMappingURL=([^\*]+?)[ \t]*(?:\*\/){1}[ \t]*$)/mg

The comment is generating a 404 in devtool and it is shutting down immediately when trying to debug.

It would be great if you change the comment so it doesn't match the regex and make the debugger thing there is a foo.js.map file :)

Thanks!

See also evanw/node-source-map-support#156 for the same report

VM6510:1 Uncaught SyntaxError: Unexpected token u

I hate opening issues when I really don't know what to do next, but what else could I do.

I spent about 4 hours trying to research, debug, and dig through the source code, but I came up nil.

I have a simple .xlsx file that I want to grab the data from and convert it to JSON or and object or something that I can use.

I believe I am able to grab the base64 of the file from the FileList API, but when I try to convert it, it just gives

VM6510:1 Uncaught SyntaxError: Unexpected token u

I have tracked it to this part of the code and managed to eek out a bit of info on what is happening.
It reaches the line if (opts.isJSON || opts.isEncoded) sm = JSON.parse(sm); but then flakes out instead of returning with a JSON version. I notice two things:

  1. sm = encoded wingdings lookin things, which is no help to me as I don't read wingdings.
  2. opts.isEncoded = true
 function Converter (sm, opts) {
   opts = opts || {};

   if (opts.isFileComment) sm = readFromFileMap(sm, opts.commentFileDir);
   if (opts.hasComment) sm = stripComment(sm);
   if (opts.isEncoded) sm = decodeBase64(sm);
   if (opts.isJSON || opts.isEncoded) sm = JSON.parse(sm);

   this.sourcemap = sm;
 }

The entirety of my code is pretty simple and perhaps I am missing something.

      const file = document.querySelector('input[type=file]').files[0]; //TODO more specific?
      const reader = new FileReader();

      reader.addEventListener("load", function() {
        preview.src = reader.result;
        const json = convert.fromBase64(preview.src).toJSON();
        return json;
      }, false);

      if (file) { //nessecito else no work
        reader.readAsDataURL(file);
      }

My Base64, as I believe it is the Base64 anyways, is:

data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;base64,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

Reduce package size

Now after npm i convert-source-map i get these extra unnecessary directories: example and test, also .travis.yml file. I can do PR 😄

Fail toComment with included content.

I use mozilla/source-map for generating source maps. Then i add source content, convert to comment fails.

    var output = node.toStringWithSourceMap();
    output.map.setSourceContent(file, data); // If this

    var map = convert.fromJSON(output.map.toString());
    callback(null, output.code + '\n' + map.toComment()); // Fails here

If i comment this line output.map.setSourceContent(file, data); all ok. (but no source maps in browser).

Can you help me with this? Thanks.

Support non-base64 encoded json?

convert-source-map currently supports comments like these:

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJtYXBwaW5ncyI6IkFBQUEiLCJzb3VyY2VzIjpbInN1Y2Nlc3MuY3NzIl0sIm5hbWVzIjpbXX0= */

However, those don’t have to be base64 encoded!

/*# sourceMappingURL=data:application/json,{"version":3,"mappings":"AAAA","sources":["success.css"],"names":[]} */

Here is the above example again, after running encodeURIComponent on it:

/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22mappings%22%3A%22AAAA%22%2C%22sources%22%3A%5B%22success.css%22%5D%2C%22names%22%3A%5B%5D%7D */

Do any browsers support this?

I created a test to find out: https://gist.github.com/lydell/3c3375e7a9dc1265fe71474a9e098077

encoding Firefox Chrome Safari Edge
base64 yes yes yes yes
encodeURIComponent yes yes yes no
nothing yes no no no

Do any tools support this?

Do any tools output this?

I don’t know. Perhaps @ai does, since he added support for consuming it in PostCSS. (I added consumption support in source-map-resolve because I noticed that PostCSS had.)

Should convert-source-map support it?

Well, it’s not hard.

  • data:mime-type;parameters;base64,... → base64
  • data:mime-type;parameters,... (not ending with ;base64) → decodeURIComponent

I just don’t know how it fits into the API.

Thanks for reading :)

Unclosed block error in map-file-comment-double-slash.css

grunt-babel/node_modules/babel-core/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css:14:1: Unclosed block Use --force to continue.

Version: 1.3.0

├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │   └─┬ [email protected]
│ │ │     └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │   └─┬ [email protected]
│ │     └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └─┬ [email protected]
│ │ │   └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │   ├── [email protected]
│ │ │   └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   ├─┬ [email protected]
│ │   │ └── [email protected]
│ │   └─┬ [email protected]
│ │     ├── [email protected]
│ │     └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   └─┬ [email protected]
│ │     └── [email protected]
│ └─┬ [email protected]
│   ├─┬ [email protected]
│   │ ├── [email protected]
│   │ └── [email protected]
│   └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │   ├── [email protected]
│ │ │   └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └─┬ [email protected]
│ │     └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├── [email protected] extraneous
├── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│   └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │   └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│   ├── [email protected]
│   ├─┬ [email protected]
│   │ └── [email protected]
│   ├── [email protected]
│   └─┬ [email protected]
│     ├── [email protected]
│     ├── [email protected]
│     ├── [email protected]
│     └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │   ├─┬ [email protected]
│ │   │ ├── [email protected]
│ │   │ └── [email protected]
│ │   ├── [email protected]
│ │   └─┬ [email protected]
│ │     ├── [email protected]
│ │     └── [email protected]
│ └─┬ [email protected]
│   ├── [email protected]
│   ├── [email protected]
│   ├─┬ [email protected]
│   │ └── [email protected]
│   └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │   ├── [email protected]
│ │ │   └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] extraneous
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │   ├── [email protected]
│ │   ├─┬ [email protected]
│ │   │ ├─┬ [email protected]
│ │   │ │ ├─┬ [email protected]
│ │   │ │ │ ├─┬ [email protected]
│ │   │ │ │ │ └── [email protected]
│ │   │ │ │ ├── [email protected]
│ │   │ │ │ └── [email protected]
│ │   │ │ └── [email protected]
│ │   │ ├─┬ [email protected]
│ │   │ │ └─┬ [email protected]
│ │   │ │   ├─┬ [email protected]
│ │   │ │   │ └── [email protected]
│ │   │ │   ├── [email protected]
│ │   │ │   └── [email protected]
│ │   │ └── [email protected]
│ │   ├── [email protected]
│ │   └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ ├─┬ [email protected]
│ │ │ │   │ │ └─┬ [email protected]
│ │ │ │   │ │   ├── [email protected]
│ │ │ │   │ │   ├─┬ [email protected]
│ │ │ │   │ │   │ └── [email protected]
│ │ │ │   │ │   ├── [email protected]
│ │ │ │   │ │   └── [email protected]
│ │ │ │   │ ├── [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ ├─┬ [email protected]
│ │ │ │   │ │ └── [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   ├─┬ [email protected]
│ │ │ │   │ ├── [email protected]
│ │ │ │   │ └── [email protected]
│ │ │ │   └─┬ [email protected]
│ │ │ │     ├── [email protected]
│ │ │ │     └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │   ├─┬ [email protected]
│ │ │   │ └─┬ [email protected]
│ │ │   │   ├── [email protected]
│ │ │   │   └── [email protected]
│ │ │   ├─┬ [email protected]
│ │ │   │ ├── [email protected]
│ │ │   │ ├── [email protected]
│ │ │   │ ├── [email protected]
│ │ │   │ ├── [email protected]
│ │ │   │ ├── [email protected]
│ │ │   │ └── [email protected]
│ │ │   └── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│   ├── [email protected]
│   └─┬ [email protected]
│     └── [email protected]
└─┬ [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ ├─┬ [email protected]
  │ │ │ └── [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ └── [email protected]
  ├── [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ ├─┬ [email protected]
  │ │ │ └── [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ ├─┬ [email protected]
  │ │ │ ├── [email protected]
  │ │ │ └── [email protected]
  │ │ ├── [email protected]
  │ │ ├── [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ └─┬ [email protected]
  │ │   └── [email protected]
  │ ├── [email protected]
  │ └── [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ └── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ └─┬ [email protected]
  │   ├─┬ [email protected]
  │   │ └── [email protected]
  │   ├── [email protected]
  │   ├─┬ [email protected]
  │   │ ├─┬ [email protected]
  │   │ │ └─┬ [email protected]
  │   │ │   ├── [email protected]
  │   │ │   ├─┬ [email protected]
  │   │ │   │ └── [email protected]
  │   │ │   ├── [email protected]
  │   │ │   └── [email protected]
  │   │ ├── [email protected]
  │   │ └── [email protected]
  │   ├─┬ [email protected]
  │   │ └── [email protected]
  │   ├── [email protected]
  │   ├── [email protected]
  │   ├── [email protected]
  │   ├── [email protected]
  │   ├─┬ [email protected]
  │   │ └── [email protected]
  │   ├── [email protected]
  │   ├─┬ [email protected]
  │   │ ├─┬ [email protected]
  │   │ │ └── [email protected]
  │   │ └── [email protected]
  │   ├─┬ [email protected]
  │   │ ├─┬ [email protected]
  │   │ │ └── [email protected]
  │   │ └── [email protected]
  │   └─┬ [email protected]
  │     ├── [email protected]
  │     └── [email protected]
  ├── [email protected]
  ├─┬ [email protected]
  │ ├── [email protected]
  │ └── [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├── [email protected]
  │ ├─┬ [email protected]
  │ │ ├── [email protected]
  │ │ ├── [email protected]
  │ │ └── [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ └── [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ └─┬ [email protected]
  │ │   └── [email protected]
  │ └── [email protected]
  ├─┬ [email protected]
  │ ├─┬ [email protected]
  │ │ └── [email protected]
  │ ├─┬ [email protected]
  │ │ └─┬ [email protected]
  │ │   └─┬ [email protected]
  │ │     ├── [email protected]
  │ │     └── [email protected]
  │ ├─┬ [email protected]
  │ │ └─┬ [email protected]
  │ │   └── [email protected]
  │ ├── [email protected]
  │ ├── [email protected]
  │ └─┬ [email protected]
  │   ├── [email protected]
  │   └── [email protected]
  ├── [email protected]
  ├─┬ [email protected]
  │ └── [email protected]
  ├─┬ [email protected]
  │ └── [email protected]
  └─┬ [email protected]
    ├─┬ [email protected]
    │ ├─┬ [email protected]
    │ │ └── [email protected]
    │ └─┬ [email protected]
    │   ├── [email protected]
    │   ├── [email protected]
    │   ├── [email protected]
    │   ├── [email protected]
    │   ├── [email protected]
    │   ├── [email protected]
    │   └── [email protected]
    ├── [email protected]
    ├── [email protected]
    └── [email protected]

Braking typescript/nyc coverage report

Came here while debugging my setup.
I get Error: ENAMETOOLONG: name too long, open '/Users/test/D.../data:application/json;charset=utf-8;base64,eyJ2ZX

Using MACOS

Found out that regex does not match the source map. When removing start of line character it worked.

Example end with this..

(backbone_1["default"].Collection));cov_lp6smvaoa.s[21]++;exports.Collection=Collection;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiL1VzZXJzL3Rlc3QvRGVza3RvcC9tYXBseXRpY3MvYXRvbS9MYXllckJhc2UvQ29sbGVjdGlvbi50cyIsInNvdXJjZXMiOlsiL1VzZXJzL3Rlc3QvRGVza3RvcC9tYXBseXRpY3MvYXRvbS9MYXllckJhc2UvQ29sbGVjdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0Esc0RBQWdDO0FBRWhDO0lBQWdDLDhCQUFrQztJQUFsRTs7SUFBcUUsQ0FBQztJQUFELGlCQUFDO0FBQUQsQ0FBQyxBQUF0RSxDQUFnQyxxQkFBUSxDQUFDLFVBQVUsR0FBbUI7QUFBekQsZ0NBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNb2RlbCwgSU1vZGVsIH0gZnJvbSBcIi4vTW9kZWxcIjtcbmltcG9ydCBCYWNrYm9uZSBmcm9tIFwiYmFja2JvbmVcIjtcblxuZXhwb3J0IGNsYXNzIENvbGxlY3Rpb24gZXh0ZW5kcyBCYWNrYm9uZS5Db2xsZWN0aW9uPE1vZGVsPElNb2RlbD4+IHsgfVxuIl19

Tests failing

Before going too far down the rabbit hole on #5 & #6, I can't get the test suite to pass from master. Travis is also failing, so I don't think it's just me.

Running a fresh checkout in a clean nodeenv, under node v0.10.29:

$ npm install
$ npm test

I get

    1..30
    # tests 30
    # pass  24
    # fail  6

ok test/map-file-comment.js ........................... 10/10
total ................................................. 71/77

Seems like these should pass before tacking the one-line map problem. @tybruffy

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.