Skip to content

Commit

Permalink
Merge pull request #679 from simonfox/feature/#676-bundle-config
Browse files Browse the repository at this point in the history
fix(systemjs-bundling): include dependency name in bundle config
  • Loading branch information
JeroenVinke authored Jul 18, 2017
2 parents 029e864 + d36f2ae commit c970385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build/dependency-inclusion.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exports.DependencyInclusion = class {
}

getAllModuleIds() {
return this.items.map(x => x.moduleId);
return [this.description.name].concat(this.items.map(x => x.moduleId));
}

getAllFiles() {
Expand Down

0 comments on commit c970385

Please sign in to comment.