Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

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