Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

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