File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 31
31
task :dojo do
32
32
print "Packaging for dojo\n "
33
33
source = "mustache-dojo"
34
- target_js = "dojo.mustache.js"
35
- `cat #{ source } /#{ target_js } .tpl.pre mustache.js #{ source } /#{ target_js } .tpl.post > #{ target_js } `
36
- print "Done, see ./#{ target_js } \n "
34
+ target_js = "mustache.js"
35
+ `mkdir -p dojox; mkdir -p dojox/string`
36
+ `cat #{ source } /#{ target_js } .tpl.pre mustache.js #{ source } /#{ target_js } .tpl.post > dojox/string/#{ target_js } `
37
+ print "Done, see ./dojox/string/#{ target_js } Include using dojo.require('dojox.string.mustache.'); \n "
37
38
end
38
39
39
40
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
/*
2
2
Shameless port of a shameless port
3
- @defunkt => @janl => @aq
3
+ @defunkt => @janl => @aq => @voodootikigod
4
4
5
5
See http://github.com/defunkt/mustache for more info.
6
6
*/
7
7
8
- dojo.provide("dojo .mustache");
9
- (function(d) {
8
+ dojo.provide("dojox.string .mustache");
9
+ ; (function(d) {
You can’t perform that action at this time.
0 commit comments