Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
chore: change closure module prefix
Browse files Browse the repository at this point in the history
Closes #9034
  • Loading branch information
jelbourn authored and ThomasBurleson committed Jul 14, 2016
1 parent 93e2488 commit 2e6d141
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/gulp-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ exports.buildNgMaterialDefinition = function() {
};

function moduleNameToClosureName(name) {
return 'ng.' + name;
// For Closure, all modules start with "ngmaterial". We specifically don't use `ng.`
// because it conflicts with other packages under `ng.`.
return 'ng' + name;
}
exports.addJsWrapper = function(enforce) {
return through2.obj(function(file, enc, next) {
Expand Down

0 comments on commit 2e6d141

Please sign in to comment.