babel-plugin-source-map-support-for-6

0.0.5 • Public • Published

babel-plugin-source-map-support

npm status build status

A Babel plugin which automatically makes stack traces source-map aware

INSTALL

npm install babel-plugin-source-map-support

SYNOPSIS

$ cat test.js

 
import foo from 'foo';
import bar from 'bar';
 
test();

$ babel test.js

'use strict';
 
var foo = require('foo');
var bar = require('bar');
 
test();

$ babel --plugins source-map-support test.js

'use strict';
 
require('source-map-support/register');
 
var foo = require('foo');
var bar = require('bar');
 
test();

DESCRIPTION

This is a Babel plugin which prepends a statement equivalent to the following to source files:

require('source-map-support/register');

In conjunction with the source-map-support module, which must be installed separately, this statement hooks into the v8 stack trace API to translate call sites in the transpiled code back to their corresponding locations in the original code.

Note: this only works in environments which support the v8 stack trace API (e.g. Node.js and Chrome), though it is harmless in other environments.

The source-map-support module only needs to be registered in the top-level file of an application, but it no-ops if it has already been loaded, so there is no harm in registering it in every file.

CAVEATS

Source maps must currently be inline. While the source-map-support module provides a way to associate a file with an external source map, that is not currently supported by this plugin.

SEE ALSO

VERSION

0.0.1

AUTHOR

chocolateboy

COPYRIGHT AND LICENSE

Copyright © 2015 by chocolateboy

This module is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.

Package Sidebar

Install

npm i babel-plugin-source-map-support-for-6

Weekly Downloads

14

Version

0.0.5

License

Artistic-2.0

Last publish

Collaborators

  • mariodu