-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Binary file support (Buffer instead of string), make no separator the…
… default
- Loading branch information
Showing
4 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "concat-with-sourcemaps", | ||
"version": "0.1.6", | ||
"version": "1.0.0", | ||
"description": "Concatenate file contents with a custom separator and generate a source map", | ||
"homepage": "http://github.com/floridoo/concat-with-sourcemaps", | ||
"repository": "git://github.com/floridoo/concat-with-sourcemaps.git", | ||
|
@@ -18,13 +18,13 @@ | |
"author": "Florian Reiterer <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"source-map": "^0.1.39" | ||
"source-map": "^0.1.41" | ||
}, | ||
"devDependencies": { | ||
"jshint": "^2.5.0", | ||
"tape": "^3.0.2", | ||
"jshint": "^2.5.11", | ||
"tape": "^3.0.3", | ||
"argg": "0.0.1", | ||
"istanbul": "^0.3.2", | ||
"istanbul": "^0.3.5", | ||
"faucet": "0.0.1", | ||
"coveralls": "^2.10.0" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
instead of doing this every time this can be done when the final file is spit out, which would save a lot of memory and CPU. right now it is allocating a new buffer of all of the previous files + the current file every time a file comes in