This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update(build): modifies the build process to generate better Closure …
…code I removed all `(function () {})()` wrappers from JS files as well as "use strict", and added a step to insert them during build. This is because Closure does not play nicely with these wrappers. I also updated the method used to insert Closure setter lines.
- Loading branch information
Robert Messerle
committed
Apr 22, 2015
1 parent
58f2c48
commit 977a495
Showing
49 changed files
with
1,927 additions
and
2,141 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,14 +1,11 @@ | ||
(function () { | ||
'use strict'; | ||
/** | ||
* @ngdoc module | ||
* @name material.components.autocomplete | ||
*/ | ||
/* | ||
* @see js folder for autocomplete implementation | ||
*/ | ||
angular.module('material.components.autocomplete', [ | ||
'material.core', | ||
'material.components.icon' | ||
]); | ||
})(); | ||
/** | ||
* @ngdoc module | ||
* @name material.components.autocomplete | ||
*/ | ||
/* | ||
* @see js folder for autocomplete implementation | ||
*/ | ||
angular.module('material.components.autocomplete', [ | ||
'material.core', | ||
'material.components.icon' | ||
]); |
Oops, something went wrong.
977a495
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.