Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100755 241 lines (221 sloc) 6.004 kb
36831ec Michał Gołębiowski refactor(jshint): reduce duplication & test all JS files
mzgol authored
1 'use strict';
2
3 var angularFiles = {
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
4 'angularSrc': [
003861d Ken Sheedlo chore(minErr): replace ngError with minErr
ksheedlo authored
5 'src/minErr.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
6 'src/Angular.js',
5143e7b Miško Hevery feat(module): new module loader
mhevery authored
7 'src/loader.js',
cf43ccd Pete Bacon Darwin fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin authored
8 'src/stringify.js',
9555511 Miško Hevery style(angularPublic): move public export definition to AnuglarPublic.js
mhevery authored
9 'src/AngularPublic.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
10 'src/jqLite.js',
11 'src/apis.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
12
13 'src/auto/injector.js',
14
15 'src/ng/anchorScroll.js',
81923f1 Matias Niemelä feat(ngAnimate): complete rewrite of animations
matsko authored
16 'src/ng/animate.js',
6276142 Matias Niemelä chore(core): create a wrapper to manage async callbacks
matsko authored
17 'src/ng/asyncCallback.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
18 'src/ng/browser.js',
19 'src/ng/cacheFactory.js',
beea3a4 Igor Minar style($compile): rename compiler.js to compile.js
IgorMinar authored
20 'src/ng/compile.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
21 'src/ng/controller.js',
22 'src/ng/document.js',
23 'src/ng/exceptionHandler.js',
bea9422 Chirayu Krishnappa feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk authored
24 'src/ng/http.js',
25 'src/ng/httpBackend.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
26 'src/ng/interpolate.js',
2b5ce84 Julie Ralph feat($interval): add a service wrapping setInterval
juliemr authored
27 'src/ng/interval.js',
bea9422 Chirayu Krishnappa feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk authored
28 'src/ng/locale.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
29 'src/ng/location.js',
30 'src/ng/log.js',
31 'src/ng/parse.js',
32 'src/ng/q.js',
04d7317 Matias Niemelä chore(core): introduce a wrapper for requestAnimationFrame
matsko authored
33 'src/ng/raf.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
34 'src/ng/rootScope.js',
3335234 Tobias Bosch fix($sanitize): Use same whitelist mechanism as $compile does.
tbosch authored
35 'src/ng/sanitizeUri.js',
bea9422 Chirayu Krishnappa feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk authored
36 'src/ng/sce.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
37 'src/ng/sniffer.js',
a70e283 Matias Niemelä feat($templateRequest): introduce the $templateRequest service
matsko authored
38 'src/ng/templateRequest.js',
85880a6 Julie Ralph feat(testability): add $$testability service
juliemr authored
39 'src/ng/testability.js',
4511d39 Igor Minar feat($timeout): add $timeout service that supersedes $defer
IgorMinar authored
40 'src/ng/timeout.js',
b99d064 Chirayu Krishnappa fix(core): parse URLs using the browser's DOM API
chirayuk authored
41 'src/ng/urlUtils.js',
bea9422 Chirayu Krishnappa feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk authored
42 'src/ng/window.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
43
44 'src/ng/filter.js',
45 'src/ng/filter/filter.js',
46 'src/ng/filter/filters.js',
47 'src/ng/filter/limitTo.js',
48 'src/ng/filter/orderBy.js',
49
50 'src/ng/directive/directives.js',
51 'src/ng/directive/a.js',
d9b90d7 Matias Niemelä feat(attrs): trigger observers for specific ng-attributes
matsko authored
52 'src/ng/directive/attrs.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
53 'src/ng/directive/form.js',
54 'src/ng/directive/input.js',
55 'src/ng/directive/ngBind.js',
3e42b22 Pete Bacon Darwin refact(input): split input.js into smaller files
petebacondarwin authored
56 'src/ng/directive/ngChange.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
57 'src/ng/directive/ngClass.js',
58 'src/ng/directive/ngCloak.js',
59 'src/ng/directive/ngController.js',
2b87c81 Igor Minar feat($parse): CSP compatibility
IgorMinar authored
60 'src/ng/directive/ngCsp.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
61 'src/ng/directive/ngEventDirs.js',
2f96fbd Oren Avissar feat(ngIf): add directive to remove and recreate DOM elements
OrenAvissar authored
62 'src/ng/directive/ngIf.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
63 'src/ng/directive/ngInclude.js',
64 'src/ng/directive/ngInit.js',
3e42b22 Pete Bacon Darwin refact(input): split input.js into smaller files
petebacondarwin authored
65 'src/ng/directive/ngList.js',
66 'src/ng/directive/ngModel.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
67 'src/ng/directive/ngNonBindable.js',
68 'src/ng/directive/ngPluralize.js',
69 'src/ng/directive/ngRepeat.js',
70 'src/ng/directive/ngShowHide.js',
71 'src/ng/directive/ngStyle.js',
72 'src/ng/directive/ngSwitch.js',
73 'src/ng/directive/ngTransclude.js',
74 'src/ng/directive/script.js',
75 'src/ng/directive/select.js',
3e42b22 Pete Bacon Darwin refact(input): split input.js into smaller files
petebacondarwin authored
76 'src/ng/directive/style.js',
77 'src/ng/directive/validators.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
78 ],
79
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
80 'angularLoader': [
cf43ccd Pete Bacon Darwin fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin authored
81 'stringify.js',
8425e9f Vojta Jina fix(loader): don't rely on internal APIs
vojtajina authored
82 'src/minErr.js',
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
83 'src/loader.js'
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
84 ],
85
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
86 'angularModules': {
87 'ngAnimate': [
88 'src/ngAnimate/animate.js'
89 ],
90 'ngCookies': [
91 'src/ngCookies/cookies.js'
92 ],
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
93 'ngMessages': [
94 'src/ngMessages/messages.js'
95 ],
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
96 'ngResource': [
97 'src/ngResource/resource.js'
98 ],
99 'ngRoute': [
100 'src/ngRoute/route.js',
101 'src/ngRoute/routeParams.js',
102 'src/ngRoute/directive/ngView.js'
103 ],
104 'ngSanitize': [
105 'src/ngSanitize/sanitize.js',
106 'src/ngSanitize/filter/linky.js'
107 ],
108 'ngMock': [
109 'src/ngMock/angular-mocks.js'
110 ],
111 'ngTouch': [
112 'src/ngTouch/touch.js',
113 'src/ngTouch/swipe.js',
114 'src/ngTouch/directive/ngClick.js',
115 'src/ngTouch/directive/ngSwipe.js'
116 ],
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
117 'ngAria': [
118 'src/ngAria/aria.js'
119 ]
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
120 },
121
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
122 'angularScenario': [
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
123 'src/ngScenario/Scenario.js',
5da6b12 Igor Minar test(modules): fix module tests which got disabled by ngMobile
IgorMinar authored
124 'src/ngScenario/browserTrigger.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
125 'src/ngScenario/Application.js',
126 'src/ngScenario/Describe.js',
127 'src/ngScenario/Future.js',
128 'src/ngScenario/ObjectModel.js',
129 'src/ngScenario/Runner.js',
130 'src/ngScenario/SpecRunner.js',
131 'src/ngScenario/dsl.js',
132 'src/ngScenario/matchers.js',
133 'src/ngScenario/output/Html.js',
134 'src/ngScenario/output/Json.js',
135 'src/ngScenario/output/Xml.js',
136 'src/ngScenario/output/Object.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
137 ],
138
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
139 'angularTest': [
1d06a94 Igor Minar chore: reorganize test helper files under test/helpers
IgorMinar authored
140 'test/helpers/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
141 'test/ngScenario/*.js',
142 'test/ngScenario/output/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
143 'test/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
144 'test/auto/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
145 'test/ng/**/*.js',
81923f1 Matias Niemelä feat(ngAnimate): complete rewrite of animations
matsko authored
146 'test/ngAnimate/*.js',
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
147 'test/ngMessages/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
148 'test/ngCookies/*.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
149 'test/ngResource/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
150 'test/ngRoute/**/*.js',
151 'test/ngSanitize/**/*.js',
707c65d feat(ngMobile): add ngMobile module with mobile-specific ngClick
Braden Shepherdson authored
152 'test/ngMock/*.js',
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
153 'test/ngTouch/**/*.js',
154 'test/ngAria/*.js'
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
155 ],
156
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
157 'karma': [
9e7cb3c Michał Gołębiowski feat(jQuery): upgrade to jQuery to 2.1.1
mzgol authored
158 'bower_components/jquery/dist/jquery.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
159 'test/jquery_remove.js',
160 '@angularSrc',
161 'src/publishExternalApis.js',
162 '@angularSrcModules',
163 '@angularScenario',
164 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
165 ],
166
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
167 'karmaExclude': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
168 'test/jquery_alias.js',
169 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
170 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
171 ],
172
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
173 'karmaScenario': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
174 'build/angular-scenario.js',
175 'build/docs/docs-scenario.js'
176 ],
177
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
178 "karmaModules": [
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
179 'build/angular.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
180 '@angularSrcModules',
5da6b12 Igor Minar test(modules): fix module tests which got disabled by ngMobile
IgorMinar authored
181 'src/ngScenario/browserTrigger.js',
1d06a94 Igor Minar chore: reorganize test helper files under test/helpers
IgorMinar authored
182 'test/helpers/*.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
183 'test/ngMock/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
184 'test/ngCookies/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
185 'test/ngRoute/**/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
186 'test/ngResource/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
187 'test/ngSanitize/**/*.js',
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
188 'test/ngTouch/**/*.js',
189 'test/ngAria/*.js'
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
190 ],
191
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
192 'karmaJquery': [
9e7cb3c Michał Gołębiowski feat(jQuery): upgrade to jQuery to 2.1.1
mzgol authored
193 'bower_components/jquery/dist/jquery.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
194 'test/jquery_alias.js',
195 '@angularSrc',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
196 'src/publishExternalApis.js',
197 '@angularSrcModules',
198 '@angularScenario',
199 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
200 ],
201
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
202 'karmaJqueryExclude': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
203 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
204 'src/ngScenario/angular-bootstrap.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
205 'test/jquery_remove.js'
206 ]
1d966f8 Vojta Jina style(angularFiles): just missing semi-colon and extra comma
vojtajina authored
207 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
208
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
209 angularFiles['angularSrcModules'] = [].concat(
210 angularFiles['angularModules']['ngAnimate'],
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
211 angularFiles['angularModules']['ngMessages'],
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
212 angularFiles['angularModules']['ngCookies'],
213 angularFiles['angularModules']['ngResource'],
214 angularFiles['angularModules']['ngRoute'],
215 angularFiles['angularModules']['ngSanitize'],
216 angularFiles['angularModules']['ngMock'],
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
217 angularFiles['angularModules']['ngTouch'],
218 angularFiles['angularModules']['ngAria']
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
219 );
220
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
221 if (exports) {
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
222 exports.files = angularFiles;
223 exports.mergeFilesFor = function() {
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
224 var files = [];
225
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
226 Array.prototype.slice.call(arguments, 0).forEach(function(filegroup) {
227 angularFiles[filegroup].forEach(function(file) {
228 // replace @ref
229 var match = file.match(/^\@(.*)/);
230 if (match) {
231 files = files.concat(angularFiles[match[1]]);
232 } else {
233 files.push(file);
234 }
235 });
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
236 });
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
237
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
238 return files;
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
239 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
240 }
Something went wrong with that request. Please try again.