Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

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