Skip to content
Sign up
Sign in
This repository
Explore
Features
Enterprise
Blog
Watch
3,346
Star
35,202
Fork
14,255
angular
/
angular.js
Code
Issues
Pull Requests
Wiki
Pulse
Graphs
HTTPS
clone URL
Subversion
checkout URL
You can clone with
HTTPS
or
Subversion
.
Download ZIP
Permalink
angular.js
/
angularFiles.js
Newer
Older
100755
242 lines (222 sloc)
6.041 kb
Raw
Normal view
History
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
1
'
use strict
'
;
2
3
var
angularFiles
=
{
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
4
'
angularSrc
'
:
[
003861d
chore(minErr): replace ngError with minErr
ksheedlo
authored
Jun 7, 2013
5
'
src/minErr.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
6
'
src/Angular.js
'
,
5143e7b
feat(module): new module loader
mhevery
authored
Jan 6, 2012
7
'
src/loader.js
'
,
cf43ccd
fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin
authored
Nov 17, 2014
8
'
src/stringify.js
'
,
9555511
style(angularPublic): move public export definition to AnuglarPublic.js
mhevery
authored
Nov 14, 2011
9
'
src/AngularPublic.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
10
'
src/jqLite.js
'
,
11
'
src/apis.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
12
13
'
src/auto/injector.js
'
,
14
15
'
src/ng/anchorScroll.js
'
,
81923f1
feat(ngAnimate): complete rewrite of animations
matsko
authored
Jun 18, 2013
16
'
src/ng/animate.js
'
,
6276142
chore(core): create a wrapper to manage async callbacks
matsko
authored
Feb 24, 2014
17
'
src/ng/asyncCallback.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
18
'
src/ng/browser.js
'
,
19
'
src/ng/cacheFactory.js
'
,
beea3a4
style($compile): rename compiler.js to compile.js
IgorMinar
authored
May 2, 2012
20
'
src/ng/compile.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
21
'
src/ng/controller.js
'
,
22
'
src/ng/document.js
'
,
23
'
src/ng/exceptionHandler.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
24
'
src/ng/http.js
'
,
25
'
src/ng/httpBackend.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
26
'
src/ng/interpolate.js
'
,
2b5ce84
feat($interval): add a service wrapping setInterval
juliemr
authored
Sep 13, 2013
27
'
src/ng/interval.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
28
'
src/ng/locale.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
29
'
src/ng/location.js
'
,
30
'
src/ng/log.js
'
,
31
'
src/ng/parse.js
'
,
32
'
src/ng/q.js
'
,
04d7317
chore(core): introduce a wrapper for requestAnimationFrame
matsko
authored
Feb 24, 2014
33
'
src/ng/raf.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
34
'
src/ng/rootScope.js
'
,
3335234
fix($sanitize): Use same whitelist mechanism as $compile does.
tbosch
authored
Nov 25, 2013
35
'
src/ng/sanitizeUri.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
36
'
src/ng/sce.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
37
'
src/ng/sniffer.js
'
,
a70e283
feat($templateRequest): introduce the $templateRequest service
matsko
authored
Aug 12, 2014
38
'
src/ng/templateRequest.js
'
,
85880a6
feat(testability): add $$testability service
juliemr
authored
Jun 9, 2014
39
'
src/ng/testability.js
'
,
4511d39
feat($timeout): add $timeout service that supersedes $defer
IgorMinar
authored
May 22, 2012
40
'
src/ng/timeout.js
'
,
b99d064
fix(core): parse URLs using the browser's DOM API
chirayuk
authored
Jul 15, 2013
41
'
src/ng/urlUtils.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
42
'
src/ng/window.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
43
44
'
src/ng/filter.js
'
,
45
'
src/ng/filter/filter.js
'
,
46
'
src/ng/filter/filters.js
'
,
47
'
src/ng/filter/limitTo.js
'
,
48
'
src/ng/filter/orderBy.js
'
,
49
50
'
src/ng/directive/directives.js
'
,
51
'
src/ng/directive/a.js
'
,
d9b90d7
feat(attrs): trigger observers for specific ng-attributes
matsko
authored
Jun 9, 2014
52
'
src/ng/directive/attrs.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
53
'
src/ng/directive/form.js
'
,
54
'
src/ng/directive/input.js
'
,
55
'
src/ng/directive/ngBind.js
'
,
3e42b22
refact(input): split input.js into smaller files
petebacondarwin
authored
Dec 24, 2014
56
'
src/ng/directive/ngChange.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
57
'
src/ng/directive/ngClass.js
'
,
58
'
src/ng/directive/ngCloak.js
'
,
59
'
src/ng/directive/ngController.js
'
,
2b87c81
feat($parse): CSP compatibility
IgorMinar
authored
Apr 27, 2012
60
'
src/ng/directive/ngCsp.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
61
'
src/ng/directive/ngEventDirs.js
'
,
2f96fbd
feat(ngIf): add directive to remove and recreate DOM elements
OrenAvissar
authored
Apr 4, 2013
62
'
src/ng/directive/ngIf.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
63
'
src/ng/directive/ngInclude.js
'
,
64
'
src/ng/directive/ngInit.js
'
,
3e42b22
refact(input): split input.js into smaller files
petebacondarwin
authored
Dec 24, 2014
65
'
src/ng/directive/ngList.js
'
,
66
'
src/ng/directive/ngModel.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
67
'
src/ng/directive/ngNonBindable.js
'
,
408f89d
refact(ngOptions): move into its own file
petebacondarwin
authored
Jan 10, 2015
68
'
src/ng/directive/ngOptions.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
69
'
src/ng/directive/ngPluralize.js
'
,
70
'
src/ng/directive/ngRepeat.js
'
,
71
'
src/ng/directive/ngShowHide.js
'
,
72
'
src/ng/directive/ngStyle.js
'
,
73
'
src/ng/directive/ngSwitch.js
'
,
74
'
src/ng/directive/ngTransclude.js
'
,
75
'
src/ng/directive/script.js
'
,
76
'
src/ng/directive/select.js
'
,
3e42b22
refact(input): split input.js into smaller files
petebacondarwin
authored
Dec 24, 2014
77
'
src/ng/directive/style.js
'
,
78
'
src/ng/directive/validators.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
79
],
80
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
81
'
angularLoader
'
:
[
cf43ccd
fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin
authored
Nov 17, 2014
82
'
stringify.js
'
,
8425e9f
fix(loader): don't rely on internal APIs
vojtajina
authored
Nov 14, 2013
83
'
src/minErr.js
'
,
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
84
'
src/loader.js
'
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 26, 2012
85
],
86
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
87
'
angularModules
'
:
{
88
'
ngAnimate
'
:
[
89
'
src/ngAnimate/animate.js
'
90
],
91
'
ngCookies
'
:
[
92
'
src/ngCookies/cookies.js
'
93
],
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
94
'
ngMessages
'
:
[
95
'
src/ngMessages/messages.js
'
96
],
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
97
'
ngResource
'
:
[
98
'
src/ngResource/resource.js
'
99
],
100
'
ngRoute
'
:
[
101
'
src/ngRoute/route.js
'
,
102
'
src/ngRoute/routeParams.js
'
,
103
'
src/ngRoute/directive/ngView.js
'
104
],
105
'
ngSanitize
'
:
[
106
'
src/ngSanitize/sanitize.js
'
,
107
'
src/ngSanitize/filter/linky.js
'
108
],
109
'
ngMock
'
:
[
110
'
src/ngMock/angular-mocks.js
'
111
],
112
'
ngTouch
'
:
[
113
'
src/ngTouch/touch.js
'
,
114
'
src/ngTouch/swipe.js
'
,
115
'
src/ngTouch/directive/ngClick.js
'
,
116
'
src/ngTouch/directive/ngSwipe.js
'
117
],
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 26, 2014
118
'
ngAria
'
:
[
119
'
src/ngAria/aria.js
'
120
]
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
121
},
122
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
123
'
angularScenario
'
:
[
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
124
'
src/ngScenario/Scenario.js
'
,
5da6b12
test(modules): fix module tests which got disabled by ngMobile
IgorMinar
authored
Apr 18, 2013
125
'
src/ngScenario/browserTrigger.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
126
'
src/ngScenario/Application.js
'
,
127
'
src/ngScenario/Describe.js
'
,
128
'
src/ngScenario/Future.js
'
,
129
'
src/ngScenario/ObjectModel.js
'
,
130
'
src/ngScenario/Runner.js
'
,
131
'
src/ngScenario/SpecRunner.js
'
,
132
'
src/ngScenario/dsl.js
'
,
133
'
src/ngScenario/matchers.js
'
,
134
'
src/ngScenario/output/Html.js
'
,
135
'
src/ngScenario/output/Json.js
'
,
136
'
src/ngScenario/output/Xml.js
'
,
137
'
src/ngScenario/output/Object.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
138
],
139
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
140
'
angularTest
'
:
[
1d06a94
chore: reorganize test helper files under test/helpers
IgorMinar
authored
Aug 23, 2013
141
'
test/helpers/*.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
142
'
test/ngScenario/*.js
'
,
143
'
test/ngScenario/output/*.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
144
'
test/*.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
145
'
test/auto/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
146
'
test/ng/**/*.js
'
,
81923f1
feat(ngAnimate): complete rewrite of animations
matsko
authored
Jun 18, 2013
147
'
test/ngAnimate/*.js
'
,
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
148
'
test/ngMessages/*.js
'
,
7b22d59
chore(ngCookies): moved to module
mhevery
authored
Mar 26, 2012
149
'
test/ngCookies/*.js
'
,
798bca6
chore(resource): moved to module
mhevery
authored
Mar 26, 2012
150
'
test/ngResource/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
151
'
test/ngRoute/**/*.js
'
,
152
'
test/ngSanitize/**/*.js
'
,
707c65d
feat(ngMobile): add ngMobile module with mobile-specific ngClick
Braden Shepherdson
authored
Feb 8, 2013
153
'
test/ngMock/*.js
'
,
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
154
'
test/ngTouch/**/*.js
'
,
155
'
test/ngAria/*.js
'
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
156
],
157
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
158
'
karma
'
:
[
9e7cb3c
feat(jQuery): upgrade to jQuery to 2.1.1
mzgol
authored
Apr 30, 2014
159
'
bower_components/jquery/dist/jquery.js
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
160
'
test/jquery_remove.js
'
,
161
'
@angularSrc
'
,
162
'
src/publishExternalApis.js
'
,
163
'
@angularSrcModules
'
,
164
'
@angularScenario
'
,
165
'
@angularTest
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
166
],
167
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
168
'
karmaExclude
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
169
'
test/jquery_alias.js
'
,
170
'
src/angular-bootstrap.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
171
'
src/ngScenario/angular-bootstrap.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
172
],
173
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
174
'
karmaScenario
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
175
'
build/angular-scenario.js
'
,
176
'
build/docs/docs-scenario.js
'
177
],
178
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
179
"
karmaModules
"
:
[
ddf6f11
test(mocks): test mocks with compiled angular
vojtajina
authored
Oct 31, 2011
180
'
build/angular.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
181
'
@angularSrcModules
'
,
5da6b12
test(modules): fix module tests which got disabled by ngMobile
IgorMinar
authored
Apr 18, 2013
182
'
src/ngScenario/browserTrigger.js
'
,
1d06a94
chore: reorganize test helper files under test/helpers
IgorMinar
authored
Aug 23, 2013
183
'
test/helpers/*.js
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
184
'
test/ngMock/*.js
'
,
7b22d59
chore(ngCookies): moved to module
mhevery
authored
Mar 26, 2012
185
'
test/ngCookies/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
186
'
test/ngRoute/**/*.js
'
,
5bcd719
chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina
authored
Apr 10, 2012
187
'
test/ngResource/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
188
'
test/ngSanitize/**/*.js
'
,
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
189
'
test/ngTouch/**/*.js
'
,
190
'
test/ngAria/*.js
'
ddf6f11
test(mocks): test mocks with compiled angular
vojtajina
authored
Nov 1, 2011
191
],
192
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
193
'
karmaJquery
'
:
[
9e7cb3c
feat(jQuery): upgrade to jQuery to 2.1.1
mzgol
authored
Apr 30, 2014
194
'
bower_components/jquery/dist/jquery.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
195
'
test/jquery_alias.js
'
,
196
'
@angularSrc
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
197
'
src/publishExternalApis.js
'
,
198
'
@angularSrcModules
'
,
199
'
@angularScenario
'
,
200
'
@angularTest
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
201
],
202
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
203
'
karmaJqueryExclude
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
204
'
src/angular-bootstrap.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
205
'
src/ngScenario/angular-bootstrap.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
206
'
test/jquery_remove.js
'
207
]
1d966f8
style(angularFiles): just missing semi-colon and extra comma
vojtajina
authored
Oct 31, 2011
208
};
292a5da
chore(slim-jim) add configuration
mhevery
authored
Feb 9, 2012
209
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
210
angularFiles[
'
angularSrcModules
'
]
=
[].
concat
(
211
angularFiles[
'
angularModules
'
][
'
ngAnimate
'
],
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
212
angularFiles[
'
angularModules
'
][
'
ngMessages
'
],
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
213
angularFiles[
'
angularModules
'
][
'
ngCookies
'
],
214
angularFiles[
'
angularModules
'
][
'
ngResource
'
],
215
angularFiles[
'
angularModules
'
][
'
ngRoute
'
],
216
angularFiles[
'
angularModules
'
][
'
ngSanitize
'
],
217
angularFiles[
'
angularModules
'
][
'
ngMock
'
],
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
218
angularFiles[
'
angularModules
'
][
'
ngTouch
'
],
219
angularFiles[
'
angularModules
'
][
'
ngAria
'
]
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
220
);
221
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
222
if
(
exports
) {
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
223
exports
.files
=
angularFiles;
224
exports
.
mergeFilesFor
=
function
() {
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
225
var
files
=
[];
226
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
227
Array
.
prototype
.slice.
call
(arguments,
0
).forEach(
function
(
filegroup
) {
228
angularFiles[filegroup].forEach(
function
(
file
) {
229
// replace @ref
230
var
match
=
file.
match
(
/
^
\@
(
.
*
)
/
);
231
if
(match) {
232
files
=
files.
concat
(angularFiles[match[
1
]]);
233
}
else
{
234
files.
push
(file);
235
}
236
});
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
237
});
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
238
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
239
return
files;
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
240
};
292a5da
chore(slim-jim) add configuration
mhevery
authored
Feb 9, 2012
241
}
Something went wrong with that request. Please try again.