ericmckean / traceur-compiler

Automatically exported from code.google.com/p/traceur-compiler
Apache License 2.0
0 stars 0 forks source link

filecompiler: Allow combining files #123

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Right now the filecompiler can do a few things

- (no flags) compiles multiple files into multiple out files (no source maps)
- (inline-modules) compiles a single file and inlines external modules (it 
outputs source map and copies originals)

We should separate these under multiple flags

--combine Combines all the inout files into a single output file

--source-maps Outputs source map

--copy-originals Useful with source maps. Maybe this should be bundled with 
source-maps?

Original issue reported on code.google.com by arv@chromium.org on 20 Aug 2012 at 2:28

GoogleCodeExporter commented 9 years ago
We now have a single binary. It does not do copy-originals but that is not 
needed. The source map points to the original files.

Original comment by arv@chromium.org on 11 Mar 2013 at 4:34