Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
add compiled outputs data for bundle, buildStatic methods
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-startsev committed Sep 16, 2016
1 parent b56bcc9 commit 2649e18
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,7 @@ Builder.prototype.bundle = function(expressionOrTree, outFile, opts) {
.then(function(output) {
output.modules = compiled.modules;
output.entryPoints = compiled.entryPoints;
output.outputs = compiled.outputs;
output.tree = tree;
output.assetList = compiled.assetList;
if (outputOpts.outFile) {
Expand Down Expand Up @@ -809,6 +810,7 @@ Builder.prototype.buildStatic = function(expressionOrTree, outFile, opts) {
output.inlineMap = inlineMap;
output.assetList = compiled.assetList;
output.modules = compiled.modules;
output.outputs = compiled.outputs;
output.tree = tree;
return output;
});
Expand Down

0 comments on commit 2649e18

Please sign in to comment.