Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

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