Move art into compiler dir

This commit is contained in:
kpdecker
2011-07-30 10:25:30 -05:00
parent bba08ad95f
commit 2fc01ff73a
4 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -28,11 +28,11 @@ def remove_exports(string)
match ? match[1] : string match ? match[1] : string
end end
minimal_deps = %w(compiler/parser base ast visitor utils compiler/compiler vm).map do |file| minimal_deps = %w(compiler/parser base compiler/ast visitor utils compiler/compiler vm).map do |file|
"lib/handlebars/#{file}.js" "lib/handlebars/#{file}.js"
end end
debug_deps = %w(compiler/parser base ast visitor compiler/printer utils compiler/compiler vm debug).map do |file| debug_deps = %w(compiler/parser base compiler/ast visitor compiler/printer utils compiler/compiler vm debug).map do |file|
"lib/handlebars/#{file}.js" "lib/handlebars/#{file}.js"
end end
+1 -1
View File
@@ -3,7 +3,7 @@ module.exports = Handlebars;
require("handlebars/utils"); require("handlebars/utils");
require("handlebars/ast"); require("handlebars/compiler/ast");
require("handlebars/compiler/printer"); require("handlebars/compiler/printer");
require("handlebars/visitor"); require("handlebars/visitor");
+1 -1
View File
@@ -74,7 +74,7 @@ module Handlebars
Handlebars::Spec.js_load('lib/handlebars/compiler/parser.js') Handlebars::Spec.js_load('lib/handlebars/compiler/parser.js')
Handlebars::Spec.js_load('lib/handlebars/base.js'); Handlebars::Spec.js_load('lib/handlebars/base.js');
Handlebars::Spec.js_load('lib/handlebars/ast.js'); Handlebars::Spec.js_load('lib/handlebars/compiler/ast.js');
Handlebars::Spec.js_load('lib/handlebars/visitor.js'); Handlebars::Spec.js_load('lib/handlebars/visitor.js');
Handlebars::Spec.js_load('lib/handlebars/compiler/printer.js') Handlebars::Spec.js_load('lib/handlebars/compiler/printer.js')
Handlebars::Spec.js_load('lib/handlebars/utils.js') Handlebars::Spec.js_load('lib/handlebars/utils.js')