Move art into compiler dir
This commit is contained in:
@@ -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
@@ -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
@@ -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')
|
||||||
|
|||||||
Reference in New Issue
Block a user