Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 0df93fd

Browse files
author
Misko Hevery
committed
clean up, fixes for app
1 parent e646068 commit 0df93fd

15 files changed

+3551
-36
lines changed

.settings/.jsdtscope

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry excluding="lib/swfobject/|test/test/|src/test/|src/|lib/jquery/|lib/webtoolkit/|lib/underscore/|test/" kind="src" path=""/>
4-
<classpathentry kind="src" path="lib/jquery"/>
5-
<classpathentry kind="src" path="lib/swfobject"/>
6-
<classpathentry kind="src" path="lib/underscore"/>
7-
<classpathentry kind="src" path="lib/webtoolkit"/>
83
<classpathentry excluding="test/" kind="src" path="src"/>
94
<classpathentry kind="src" path="src/test"/>
105
<classpathentry excluding="test/" kind="src" path="test"/>
116
<classpathentry kind="src" path="test/test"/>
127
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
8+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
139
</classpath>

Rakefile

+6-4
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,28 @@ task :compile do
3939
src/JSON.js \
4040
src/Compiler.js \
4141
src/Scope.js \
42-
src/jqlite.js \
4342
src/Parser.js \
4443
src/Resource.js \
45-
src/URLWatcher.js \
44+
src/Browser.js \
45+
src/jqLite.js \
4646
src/apis.js \
4747
src/filters.js \
4848
src/formatters.js \
4949
src/validators.js \
5050
src/directives.js \
5151
src/markups.js \
5252
src/widgets.js \
53+
src/services.js \
54+
src/AngularPublic.js \
5355
src/angular.suffix \
5456
)
55-
f = File.new("angular.js", 'w')
57+
f = File.new("angular-debug.js", 'w')
5658
f.write(concat)
5759
f.close
5860

5961
%x(java -jar lib/compiler-closure/compiler.jar \
6062
--compilation_level ADVANCED_OPTIMIZATIONS \
61-
--js angular.js \
63+
--js angular-debug.js \
6264
--externs externs.js \
6365
--create_source_map ./angular-minified.map \
6466
--js_output_file angular-minified.js)

0 commit comments

Comments
 (0)