aboutsummaryrefslogtreecommitdiffstats
path: root/closure
AgeCommit message (Collapse)Author
2014-01-22refactor(externs): move Closure Externs back to Closure code repositoryv1.0.xMartin Probst
While Closure Compiler generally recommends to maintain the externs for projects together with their source, this has not worked well for AngularJS: - Changes to externs must be tested; they can break clients. AngularJS has no testing infrastructure for this. - Changes mostly come from users inside of Google and are much more easily submitted together with the code using them within Google's repository. This change deletes the externs here and adds a README.closure.md to document the change. They will be added back to Closure Compiler in a separate submit. Closes #5907
2013-10-30feat(Angular.js): add externs file for Closure Compilerg3_v1_0Martin Probst
This adds an (incomplete) externs file for use with the Closure Compiler. Users can pass this as -extern to the compiler pass to get type checking and protect their AngularJS use against property renaming in advanced compilation mode.