aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorMisko Hevery2012-03-26 21:45:38 -0700
committerMisko Hevery2012-03-28 11:16:36 -0700
commit798bca62c6f64775b85deda3713e7b6bcc7a4b4d (patch)
treeed80b4ad6ca6a602701f50240915767f8a3105bc /Rakefile
parent8218c4b60b82927234cf545253266f288fa936c2 (diff)
downloadangular.js-798bca62c6f64775b85deda3713e7b6bcc7a4b4d.tar.bz2
chore(resource): moved to module
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index a61c99ea..2748d1d1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -80,10 +80,12 @@ task :compile => [:init, :compile_scenario, :compile_jstd_scenario_adapter] do
'src/loader.suffix'])
FileUtils.cp 'src/ngMock/angular-mocks.js', path_to('angular-mocks.js')
+ FileUtils.cp 'src/ngResource/resource.js', path_to('angular-resource.js')
closureCompile('angular.js')
closureCompile('angular-loader.js')
+ closureCompile('angular-resource.js')
end
@@ -113,6 +115,8 @@ task :package => [:clean, :compile, :docs] do
path_to('angular-loader.js'),
path_to('angular-loader.min.js'),
path_to('angular-mocks.js'),
+ path_to('angular-resource.js'),
+ path_to('angular-resource.min.js'),
path_to('angular-scenario.js'),
path_to('jstd-scenario-adapter.js'),
path_to('jstd-scenario-adapter-config.js'),