|
|
|
|
|
by aes
4848 days ago
|
|
Ok, you'll have to run it through the compiler first with the -m option: test.coffee: require 'source-map-support'
throw new Error("Test")
Now do: npm install source-map-support
coffee -c -m test.coffee
node test.js
This gets you the correct line numbers. |
|
I start it up with something like this:
That web.coffee file then require's a chain of files.If I try to compile the source maps for all of my files first, using something like this:
In the .compile folder, there is a few oddly named subdirectories (d, b, rands, sc) with the compiled .js files in there and the respective .map files. This seems to totally break my require chain.Since I don't normally pre-compile all my coffee script files, I just run them directly using nodemon or coffee, how can I work the maps into my dev process?