Commit Graph

51 Commits

Author SHA1 Message Date
Evan Wallace
54e3c91cb0 Merge pull request #22 from rick-kilgore/master
only install once if called multiple times in same vm
2013-11-10 13:16:50 -08:00
Rick Kilgore
21bb6544aa only install once if called multiple times in same vm
I have a problem using this module in my unit tests, because I don't
have a central place to put the

    require('source-map-support').install();

statement.  So I end up having to put it in every unit test, and once
I've written enough tests, I start getting an annoying error about using
up too much memory.

This change makes is so if you call install() multiple times in the same
vm, it only actually installs once.
2013-11-07 19:10:12 -08:00
Evan Wallace
08c876d9bc Merge pull request #20 from jpillora/patch-1
added missing repo fields
2013-09-04 22:31:49 -07:00
Jaime Pillora
a915490d74 added missing repo fields 2013-09-05 15:22:12 +10:00
Evan Wallace
a3008a2348 use the source-map module again now that it works with typescript 2013-08-21 18:08:13 -07:00
Evan Wallace
340839e9fa temporarily use my patched source-map library until Mozilla fixes theirs 2013-08-15 22:48:52 -07:00
Evan Wallace
bbe8c603ab swallow SJAX errors during in-browser translation 2013-08-03 07:25:01 -07:00
Evan Wallace
a08c8cfe97 fix for TypeScript compiler 2013-07-29 23:41:09 -07:00
Evan Wallace
b30ecf1f42 add .npmignore 2013-07-27 15:49:46 -07:00
Evan Wallace
91fe4f8093 bundle source-map-support.js for the browser 2013-07-27 15:46:30 -07:00
Evan Wallace
2d3b8107bf cache source map data forever by default 2013-07-22 09:21:10 -07:00
Evan Wallace
e773027aef added browserify test 2013-07-21 19:01:25 -07:00
Evan Wallace
70c343e4c4 browserify support, fixes #16 2013-07-21 13:47:26 -07:00
Evan Wallace
be0579d0e1 version bump for npm 2013-07-20 18:36:11 -07:00
Evan Wallace
ca0094664f Update README.md 2013-07-20 16:41:35 -07:00
Evan Wallace
2d4588e209 Merge pull request #15 from fresheneesz/master
Documentation on basic custom usage
2013-07-20 16:40:19 -07:00
Evan Wallace
bdf2ffb6a4 Merge pull request #18 from meteor/retrieve-source-map
Allow overriding the mapping from source file to source map.
2013-07-20 15:22:12 -07:00
Evan Wallace
95ad3027a3 Merge pull request #17 from meteor/upgrade-source-map
Update to source-map 0.1.26.
2013-07-20 15:11:09 -07:00
David Glasser
28a91e1337 Update to source-map 0.1.26. 2013-07-17 11:28:32 -07:00
David Glasser
1cf5ce0f7d Allow overriding the mapping from source file to source map.
This is done with the new retrieveSourceMap option to sourcemap.install.

This is useful if you have another way of finding your source maps (and can avoid sync reads).

Also, allow source maps to not have an URL, and don't write to a global named mapSourcePosition.
2013-07-17 11:27:13 -07:00
fresheneesz
ae0959ebb9 Completing basic demo that shows correct line and character numbers 2013-06-28 17:39:23 -07:00
fresheneesz
deb583e188 fixing link 2013-06-28 17:02:04 -07:00
fresheneesz
52040fe4e3 adding a Usage section to make it clearer how to use this support and how to create sourcemaps yourself 2013-06-28 17:01:14 -07:00
Evan Wallace
51db253332 update to new version of source-map library 2013-06-26 23:20:53 -07:00
Evan Wallace
abc1c2e8e0 handle case when line isn't found, fixes #13 2013-06-26 23:20:34 -07:00
Evan Wallace
2c7e1ce87a fixed data-url bugs and added tests, closes #14 2013-06-26 22:51:13 -07:00
Fuji, Goro
77d1b5c05b support data-url format 2013-06-26 21:58:41 -07:00
Evan Wallace
1b4a71bc86 version bump for npm 2013-06-11 07:31:19 -04:00
Evan Wallace
069d43b4ea Merge pull request #11 from michaelficarra/patch-1
support new `//#` sourceMappingURL pragma format
2013-06-10 09:51:22 -07:00
Michael Ficarra
660412ee84 support new //# sourceMappingURL pragma format
For now `//@` is still supported. Support for `//@` can be removed later.
2013-06-09 14:53:20 -05:00
Evan Wallace
d4cc314e57 version bump for npm 2013-05-04 11:10:22 -07:00
Evan Wallace
f2a2464b7c Merge pull request #10 from zeekay/master
Export mapSourcePosition so that it's possible to use externally.
2013-05-04 11:08:45 -07:00
zeekay
3c8fec1c1c Export mapSourcePosition.
Exposing mapSourcePosition makes it possible to easily create custom exception
handlers.
2013-05-02 13:06:44 -07:00
Evan Wallace
3aa561e560 check for eval before getting origin, fixes #9 2013-04-28 14:30:55 -07:00
Evan Wallace
03703165e8 merge relative source path fix, bump version, fixes #4 2013-04-24 19:16:25 -07:00
Evan Wallace
12c838cd3f version bump for npm 2013-04-24 18:36:53 -07:00
Evan Wallace
05e03fe730 stop swallowing exceptions, fixes #8 2013-04-24 18:33:05 -07:00
Evan Wallace
5ab3cdd9e1 change some tests from equality to regex to match slight change in node's stack trace printing 2013-04-24 17:56:13 -07:00
Florian Reiterer
161be66adc Resolve sources relative to the source map
Source Map Revision 3: Resolving Sources
If the sources are not absolute URLs after prepending of the
“sourceRoot”, the sources are resolved relative to the SourceMap (like
resolving script src in a html document).
2013-03-18 23:43:02 +01:00
Evan Wallace
5be2906874 Update README.md 2013-03-08 21:38:29 -08:00
Evan Wallace
123fb717b2 update example now that the CoffeeScript compiler generates source maps 2013-03-08 21:10:26 -08:00
Evan Wallace
18992a7be6 option to not install uncaught exception handler, fix for issue #3 2013-03-05 11:36:36 -08:00
Evan Wallace
9484e8ec05 version bump and description for npm 2013-03-04 17:46:16 -08:00
Evan Wallace
8717f4f66c Merge pull request #2 from bpytlik/master
fix compatibility with coffeescript 1.6 source map files
2013-03-04 17:41:00 -08:00
Brock Pytlik
fe649c7493 support sourceMappingURL being located at the beginning of the file 2013-03-04 15:47:32 -08:00
Evan Wallace
dee77a507c Added note about multiple languages to README.md 2013-02-11 21:25:26 -08:00
Evan Wallace
b8de7c8b92 Add note about --eval to README.md 2013-02-11 19:08:17 -08:00
Evan Wallace
bceff46033 add installation section to readme 2013-01-18 11:04:24 -08:00
Evan Wallace
e55bb593fe remove unnecessary cache check 2013-01-18 01:01:52 -08:00
Evan Wallace
aafee108c4 don't crash when primitive values are thrown 2013-01-18 00:17:51 -08:00