Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 225 lines (204 sloc) 5.866 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/Runner.js',
83 'src/ngScenario/SpecRunner.js',
84 'src/ngScenario/dsl.js',
85 'src/ngScenario/matchers.js',
86 'src/ngScenario/output/Html.js',
87 'src/ngScenario/output/Json.js',
88 'src/ngScenario/output/Xml.js',
89 'src/ngScenario/output/Object.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
90 ],
91
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
92 'angularTest': [
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
93 'test/testabilityPatch.js',
2636105 Vojta Jina feat(matchers): extract jasmine matchers into separate file for future r...
vojtajina authored
94 'test/matchers.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
95 'test/ngScenario/*.js',
96 'test/ngScenario/output/*.js',
97 'test/ngScenario/jstd-scenario-adapter/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
98 'test/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
99 'test/auto/*.js',
8e26750 Miško Hevery chore(docs): re-skin main documentation
mhevery authored
100 'test/bootstrap/*.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
101 'test/ng/*.js',
102 'test/ng/directive/*.js',
103 'test/ng/filter/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
104 'test/ngCookies/*.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
105 'test/ngResource/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
106 'test/ngSanitize/*.js',
107 'test/ngSanitize/directive/*.js',
108 'test/ngSanitize/filter/*.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
109 'test/ngMock/*.js'
110 ],
111
112 'jstd': [
113 'lib/jasmine/jasmine.js',
114 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
115 'lib/jquery/jquery.js',
116 'test/jquery_remove.js',
117 '@angularSrc',
118 'src/publishExternalApis.js',
119 '@angularSrcModules',
120 '@angularScenario',
121 'src/ngScenario/jstd-scenario-adapter/Adapter.js',
122 '@angularTest',
123 'example/personalLog/*.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
124 'example/personalLog/test/*.js'
125 ],
126
127 'jstdExclude': [
128 'test/jquery_alias.js',
129 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
130 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
131 ],
132
133 'jstdScenario': [
134 'build/angular-scenario.js',
135 'build/jstd-scenario-adapter-config.js',
136 'build/jstd-scenario-adapter.js',
137 'build/docs/docs-scenario.js'
138 ],
139
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
140 "jstdModules": [
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
141 'lib/jasmine/jasmine.js',
142 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
143 'build/angular.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
144 'src/ngMock/angular-mocks.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
145 'src/ngCookies/cookies.js',
798bca6 Miško Hevery chore(resource): moved to module
mhevery authored
146 'src/ngResource/resource.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
147 'src/ngSanitize/sanitize.js',
148 'src/ngSanitize/directive/ngBindHtml.js',
149 'src/ngSanitize/filter/linky.js',
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
150 'test/matchers.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
151 'test/ngMock/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
152 'test/ngCookies/*.js',
5bcd719 Vojta Jina chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina authored
153 'test/ngResource/*.js',
154 'test/ngSanitize/*.js',
155 'test/ngSanitize/directive/*.js',
156 'test/ngSanitize/filter/*.js'
ddf6f11 Vojta Jina test(mocks): test mocks with compiled angular
vojtajina authored
157 ],
158
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
159 'jstdPerf': [
ab5df20 Vojta Jina chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)
vojtajina authored
160 'lib/jasmine/jasmine.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
161 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
8218c4b Miško Hevery chore(Rakefile): get ready for modules
mhevery authored
162 '@angularSrc',
163 '@angularSrcModules',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
164 'src/ngMock/angular-mocks.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
165 'perf/data/*.js',
166 'perf/testUtils.js',
167 'perf/*.js'
168 ],
169
170 'jstdPerfExclude': [
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
171 'src/ng/angular-bootstrap.js',
172 'src/ngScenario/angular-bootstrap.js'
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
173 ],
174
175 'jstdJquery': [
ab5df20 Vojta Jina chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)
vojtajina authored
176 'lib/jasmine/jasmine.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
177 'lib/jasmine-jstd-adapter/JasmineAdapter.js',
a2a830e Igor Minar feat (jquery): upgrade everything to jQuery 1.6.4
IgorMinar authored
178 'lib/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 'src/ngScenario/jstd-scenario-adapter/Adapter.js',
185 '@angularTest',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
186 'example/personalLog/*.js',
7b22d59 Miško Hevery chore(ngCookies): moved to module
mhevery authored
187
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
188 'example/personalLog/test/*.js'
189 ],
190
191 'jstdJqueryExclude': [
192 'src/angular-bootstrap.js',
2430f52 Miško Hevery chore(module): move files around in preparation for more modules
mhevery authored
193 'src/ngScenario/angular-bootstrap.js',
a13653c refactor(angular): externalize script load order into JSON
Di Peng authored
194 'test/jquery_remove.js'
195 ]
1d966f8 Vojta Jina style(angularFiles): just missing semi-colon and extra comma
vojtajina authored
196 };
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
197
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
198 if (exports) {
199 exports.files = angularFiles
200 exports.mergeFiles = function mergeFiles() {
201 var files = [];
202
203 [].splice.call(arguments, 0).forEach(function(file) {
204 if (file.match(/testacular/)) {
205 files.push(file);
206 } else {
207 angularFiles[file].forEach(function(f) {
208 // replace @ref
209 var match = f.match(/^\@(.*)/);
210 if (match) {
211 var deps = angularFiles[match[1]];
212 files = files.concat(deps);
213 } else {
214 if (!/jstd|jasmine/.test(f)) { //TODO(i): remove once we don't have jstd/jasmine in repo
215 files.push(f);
216 }
217 }
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 });
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;
223 }
292a5da Miško Hevery chore(slim-jim) add configuration
mhevery authored
224 }
Something went wrong with that request. Please try again.