Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100755 242 lines (222 sloc) 6.041 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',
408f89d Pete Bacon Darwin refact(ngOptions): move into its own file
petebacondarwin authored
68 'src/ng/directive/ngOptions.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
69 'src/ng/directive/ngPluralize.js',
70 'src/ng/directive/ngRepeat.js',
71 'src/ng/directive/ngShowHide.js',
72 'src/ng/directive/ngStyle.js',
73 'src/ng/directive/ngSwitch.js',
74 'src/ng/directive/ngTransclude.js',
75 'src/ng/directive/script.js',
76 'src/ng/directive/select.js',
3e42b22 Pete Bacon Darwin refact(input): split input.js into smaller files
petebacondarwin authored
77 'src/ng/directive/style.js',
78 'src/ng/directive/validators.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
79 ],
80
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
81 'angularLoader': [
cf43ccd Pete Bacon Darwin fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin authored
82 'stringify.js',
8425e9f Vojta Jina fix(loader): don't rely on internal APIs
vojtajina authored
83 'src/minErr.js',
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
84 'src/loader.js'
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
85 ],
86
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
87 'angularModules': {
88 'ngAnimate': [
89 'src/ngAnimate/animate.js'
90 ],
91 'ngCookies': [
92 'src/ngCookies/cookies.js'
93 ],
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
94 'ngMessages': [
95 'src/ngMessages/messages.js'
96 ],
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
97 'ngResource': [
98 'src/ngResource/resource.js'
99 ],
100 'ngRoute': [
101 'src/ngRoute/route.js',
102 'src/ngRoute/routeParams.js',
103 'src/ngRoute/directive/ngView.js'
104 ],
105 'ngSanitize': [
106 'src/ngSanitize/sanitize.js',
107 'src/ngSanitize/filter/linky.js'
108 ],
109 'ngMock': [
110 'src/ngMock/angular-mocks.js'
111 ],
112 'ngTouch': [
113 'src/ngTouch/touch.js',
114 'src/ngTouch/swipe.js',
115 'src/ngTouch/directive/ngClick.js',
116 'src/ngTouch/directive/ngSwipe.js'
117 ],
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
118 'ngAria': [
119 'src/ngAria/aria.js'
120 ]
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
121 },
122
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
123 'angularScenario': [
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
124 'src/ngScenario/Scenario.js',
5da6b12 Igor Minar test(modules): fix module tests which got disabled by ngMobile
IgorMinar authored
125 'src/ngScenario/browserTrigger.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
126 'src/ngScenario/Application.js',
127 'src/ngScenario/Describe.js',
128 'src/ngScenario/Future.js',
129 'src/ngScenario/ObjectModel.js',
130 'src/ngScenario/Runner.js',
131 'src/ngScenario/SpecRunner.js',
132 'src/ngScenario/dsl.js',
133 'src/ngScenario/matchers.js',
134 'src/ngScenario/output/Html.js',
135 'src/ngScenario/output/Json.js',
136 'src/ngScenario/output/Xml.js',
137 'src/ngScenario/output/Object.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
138 ],
139
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
140 'angularTest': [
1d06a94 Igor Minar chore: reorganize test helper files under test/helpers
IgorMinar authored
141 'test/helpers/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
142 'test/ngScenario/*.js',
143 'test/ngScenario/output/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
144 'test/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
145 'test/auto/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
146 'test/ng/**/*.js',
81923f1 Matias Niemelä feat(ngAnimate): complete rewrite of animations
matsko authored
147 'test/ngAnimate/*.js',
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
148 'test/ngMessages/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
149 'test/ngCookies/*.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
150 'test/ngResource/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
151 'test/ngRoute/**/*.js',
152 'test/ngSanitize/**/*.js',
707c65d feat(ngMobile): add ngMobile module with mobile-specific ngClick
Braden Shepherdson authored
153 'test/ngMock/*.js',
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
154 'test/ngTouch/**/*.js',
155 'test/ngAria/*.js'
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
156 ],
157
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
158 'karma': [
9e7cb3c Michał Gołębiowski feat(jQuery): upgrade to jQuery to 2.1.1
mzgol authored
159 'bower_components/jquery/dist/jquery.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
160 'test/jquery_remove.js',
161 '@angularSrc',
162 'src/publishExternalApis.js',
163 '@angularSrcModules',
164 '@angularScenario',
165 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
166 ],
167
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
168 'karmaExclude': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
169 'test/jquery_alias.js',
170 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
171 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
172 ],
173
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
174 'karmaScenario': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
175 'build/angular-scenario.js',
176 'build/docs/docs-scenario.js'
177 ],
178
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
179 "karmaModules": [
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
180 'build/angular.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
181 '@angularSrcModules',
5da6b12 Igor Minar test(modules): fix module tests which got disabled by ngMobile
IgorMinar authored
182 'src/ngScenario/browserTrigger.js',
1d06a94 Igor Minar chore: reorganize test helper files under test/helpers
IgorMinar authored
183 'test/helpers/*.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
184 'test/ngMock/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
185 'test/ngCookies/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
186 'test/ngRoute/**/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
187 'test/ngResource/*.js',
5599b55 Igor Minar refactor($route): pull $route and friends into angular-route.js
IgorMinar authored
188 'test/ngSanitize/**/*.js',
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
189 'test/ngTouch/**/*.js',
190 'test/ngAria/*.js'
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
191 ],
192
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
193 'karmaJquery': [
9e7cb3c Michał Gołębiowski feat(jQuery): upgrade to jQuery to 2.1.1
mzgol authored
194 'bower_components/jquery/dist/jquery.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
195 'test/jquery_alias.js',
196 '@angularSrc',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
197 'src/publishExternalApis.js',
198 '@angularSrcModules',
199 '@angularScenario',
200 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
201 ],
202
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
203 'karmaJqueryExclude': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
204 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
205 'src/ngScenario/angular-bootstrap.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
206 'test/jquery_remove.js'
207 ]
1d966f8 Vojta Jina style(angularFiles): just missing semi-colon and extra comma
vojtajina authored
208 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
209
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
210 angularFiles['angularSrcModules'] = [].concat(
211 angularFiles['angularModules']['ngAnimate'],
0f4016c Matias Niemelä feat(NgMessages): introduce the NgMessages module and directives
matsko authored
212 angularFiles['angularModules']['ngMessages'],
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
213 angularFiles['angularModules']['ngCookies'],
214 angularFiles['angularModules']['ngResource'],
215 angularFiles['angularModules']['ngRoute'],
216 angularFiles['angularModules']['ngSanitize'],
217 angularFiles['angularModules']['ngMock'],
d1434c9 arbus feat(ngAria): add an ngAria module to make a11y easier
arbus authored
218 angularFiles['angularModules']['ngTouch'],
219 angularFiles['angularModules']['ngAria']
934a95d Pete Bacon Darwin chore(grunt): add jshint tasks
petebacondarwin authored
220 );
221
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
222 if (exports) {
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
223 exports.files = angularFiles;
224 exports.mergeFilesFor = function() {
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
225 var files = [];
226
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
227 Array.prototype.slice.call(arguments, 0).forEach(function(filegroup) {
228 angularFiles[filegroup].forEach(function(file) {
229 // replace @ref
230 var match = file.match(/^\@(.*)/);
231 if (match) {
232 files = files.concat(angularFiles[match[1]]);
233 } else {
234 files.push(file);
235 }
236 });
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
237 });
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
238
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
239 return files;
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
240 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
241 }
Something went wrong with that request. Please try again.