Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 226 lines (205 sloc) 5.9 kb
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
1 angularFiles = {
2 'angularSrc': [
3 'src/Angular.js',
5143e7b Miško Hevery feat(module): new module loader
mhevery authored
4 'src/loader.js',
9555511 Miško Hevery style(angularPublic): move public export definition to AnuglarPublic.js
mhevery authored
5 'src/AngularPublic.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
6 'src/jqLite.js',
7 'src/apis.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
8
9 'src/auto/injector.js',
10
11 'src/ng/anchorScroll.js',
12 'src/ng/browser.js',
13 'src/ng/cacheFactory.js',
beea3a4 Igor Minar style($compile): rename compiler.js to compile.js
IgorMinar authored
14 'src/ng/compile.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
15 'src/ng/controller.js',
16 'src/ng/document.js',
17 'src/ng/exceptionHandler.js',
18 'src/ng/interpolate.js',
19 'src/ng/location.js',
20 'src/ng/log.js',
21 'src/ng/parse.js',
22 'src/ng/q.js',
23 'src/ng/route.js',
24 'src/ng/routeParams.js',
25 'src/ng/rootScope.js',
26 'src/ng/sniffer.js',
27 'src/ng/window.js',
28 'src/ng/http.js',
29 'src/ng/httpBackend.js',
30 'src/ng/locale.js',
4511d39 Igor Minar feat($timeout): add $timeout service that supersedes $defer
IgorMinar authored
31 'src/ng/timeout.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
32
33 'src/ng/filter.js',
34 'src/ng/filter/filter.js',
35 'src/ng/filter/filters.js',
36 'src/ng/filter/limitTo.js',
37 'src/ng/filter/orderBy.js',
38
39 'src/ng/directive/directives.js',
40 'src/ng/directive/a.js',
02cf958 Vojta Jina chore(directive): correct file names for booleanAttrs
vojtajina authored
41 'src/ng/directive/booleanAttrs.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
42 'src/ng/directive/form.js',
43 'src/ng/directive/input.js',
44 'src/ng/directive/ngBind.js',
45 'src/ng/directive/ngClass.js',
46 'src/ng/directive/ngCloak.js',
47 'src/ng/directive/ngController.js',
2b87c81 Igor Minar feat($parse): CSP compatibility
IgorMinar authored
48 'src/ng/directive/ngCsp.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
49 'src/ng/directive/ngEventDirs.js',
50 'src/ng/directive/ngInclude.js',
51 'src/ng/directive/ngInit.js',
52 'src/ng/directive/ngNonBindable.js',
53 'src/ng/directive/ngPluralize.js',
54 'src/ng/directive/ngRepeat.js',
55 'src/ng/directive/ngShowHide.js',
56 'src/ng/directive/ngStyle.js',
57 'src/ng/directive/ngSwitch.js',
58 'src/ng/directive/ngTransclude.js',
59 'src/ng/directive/ngView.js',
60 'src/ng/directive/script.js',
61 'src/ng/directive/select.js',
aa02534 Miško Hevery bug(ie8 docs): docs now work on ie8
mhevery authored
62 'src/ng/directive/style.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
63 ],
64
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
65 'angularSrcModules': [
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
66 'src/ngCookies/cookies.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
67 'src/ngResource/resource.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
68 'src/ngSanitize/sanitize.js',
69 'src/ngSanitize/directive/ngBindHtml.js',
70 'src/ngSanitize/filter/linky.js',
8e26750 Miško Hevery chore(docs): re-skin main documentation
mhevery authored
71 'src/ngMock/angular-mocks.js',
72
73 'src/bootstrap/bootstrap.js'
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
74 ],
75
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
76 'angularScenario': [
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
77 'src/ngScenario/Scenario.js',
78 'src/ngScenario/Application.js',
79 'src/ngScenario/Describe.js',
80 'src/ngScenario/Future.js',
81 'src/ngScenario/ObjectModel.js',
82 'src/ngScenario/Describe.js',
83 'src/ngScenario/Runner.js',
84 'src/ngScenario/SpecRunner.js',
85 'src/ngScenario/dsl.js',
86 'src/ngScenario/matchers.js',
87 'src/ngScenario/output/Html.js',
88 'src/ngScenario/output/Json.js',
89 'src/ngScenario/output/Xml.js',
90 'src/ngScenario/output/Object.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
91 ],
92
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
93 'angularTest': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
94 'test/testabilityPatch.js',
2636105 Vojta Jina feat(matchers): extract jasmine matchers into separate file for future r...
vojtajina authored
95 'test/matchers.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
96 'test/ngScenario/*.js',
97 'test/ngScenario/output/*.js',
98 'test/ngScenario/jstd-scenario-adapter/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
99 'test/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
100 'test/auto/*.js',
8e26750 Miško Hevery chore(docs): re-skin main documentation
mhevery authored
101 'test/bootstrap/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
102 'test/ng/*.js',
103 'test/ng/directive/*.js',
104 'test/ng/filter/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
105 'test/ngCookies/*.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
106 'test/ngResource/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
107 'test/ngSanitize/*.js',
108 'test/ngSanitize/directive/*.js',
109 'test/ngSanitize/filter/*.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
110 'test/ngMock/*.js'
111 ],
112
113 'jstd': [
114 'lib/jasmine/jasmine.js',
115 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
116 'lib/jquery/jquery.js',
117 'test/jquery_remove.js',
118 '@angularSrc',
119 'src/publishExternalApis.js',
120 '@angularSrcModules',
121 '@angularScenario',
122 'src/ngScenario/jstd-scenario-adapter/Adapter.js',
123 '@angularTest',
124 'example/personalLog/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
125 'example/personalLog/test/*.js'
126 ],
127
128 'jstdExclude': [
129 'test/jquery_alias.js',
130 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
131 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
132 ],
133
134 'jstdScenario': [
135 'build/angular-scenario.js',
136 'build/jstd-scenario-adapter-config.js',
137 'build/jstd-scenario-adapter.js',
138 'build/docs/docs-scenario.js'
139 ],
140
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
141 "jstdModules": [
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
142 'lib/jasmine/jasmine.js',
143 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
144 'build/angular.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
145 'src/ngMock/angular-mocks.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
146 'src/ngCookies/cookies.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
147 'src/ngResource/resource.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
148 'src/ngSanitize/sanitize.js',
149 'src/ngSanitize/directive/ngBindHtml.js',
150 'src/ngSanitize/filter/linky.js',
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
151 'test/matchers.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
152 'test/ngMock/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
153 'test/ngCookies/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
154 'test/ngResource/*.js',
155 'test/ngSanitize/*.js',
156 'test/ngSanitize/directive/*.js',
157 'test/ngSanitize/filter/*.js'
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
158 ],
159
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
160 'jstdPerf': [
ab5df20 Vojta Jina chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)
vojtajina authored
161 'lib/jasmine/jasmine.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
162 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
163 '@angularSrc',
164 '@angularSrcModules',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
165 'src/ngMock/angular-mocks.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
166 'perf/data/*.js',
167 'perf/testUtils.js',
168 'perf/*.js'
169 ],
170
171 'jstdPerfExclude': [
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
172 'src/ng/angular-bootstrap.js',
173 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
174 ],
175
176 'jstdJquery': [
ab5df20 Vojta Jina chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)
vojtajina authored
177 'lib/jasmine/jasmine.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
178 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
a2a830e Igor Minar feat (jquery): upgrade everything to jQuery 1.6.4
IgorMinar authored
179 'lib/jquery/jquery.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
180 'test/jquery_alias.js',
181 '@angularSrc',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
182 'src/publishExternalApis.js',
183 '@angularSrcModules',
184 '@angularScenario',
185 'src/ngScenario/jstd-scenario-adapter/Adapter.js',
186 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
187 'example/personalLog/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
188
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
189 'example/personalLog/test/*.js'
190 ],
191
192 'jstdJqueryExclude': [
193 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
194 'src/ngScenario/angular-bootstrap.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
195 'test/jquery_remove.js'
196 ]
1d966f8 Vojta Jina style(angularFiles): just missing semi-colon and extra comma
vojtajina authored
197 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
198
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
199 if (exports) {
200 exports.files = angularFiles
201 exports.mergeFiles = function mergeFiles() {
202 var files = [];
203
204 [].splice.call(arguments, 0).forEach(function(file) {
205 if (file.match(/testacular/)) {
206 files.push(file);
207 } else {
208 angularFiles[file].forEach(function(f) {
209 // replace @ref
210 var match = f.match(/^\@(.*)/);
211 if (match) {
212 var deps = angularFiles[match[1]];
213 files = files.concat(deps);
214 } else {
215 if (!/jstd|jasmine/.test(f)) { //TODO(i): remove once we don't have jstd/jasmine in repo
216 files.push(f);
217 }
218 }
219 });
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
220 }
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
221 });
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
222
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
223 return files;
224 }
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
225 }
Something went wrong with that request. Please try again.