Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

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