mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-28 18:23:35 +00:00
feature(bower) Util.render -> rendy
This commit is contained in:
parent
cb219ae64e
commit
da2768d56b
17 changed files with 315 additions and 57 deletions
|
|
@ -27,18 +27,21 @@ var CloudCmd;
|
|||
client + 'key'
|
||||
].map(function(name) {
|
||||
return lib + name;
|
||||
}),
|
||||
|
||||
moduleFiles = [
|
||||
'promise-polyfill/Promise',
|
||||
'format-io/lib/format',
|
||||
'rendy/lib/rendy',
|
||||
].map(function(name) {
|
||||
return modules + name;
|
||||
});
|
||||
|
||||
files.concat([
|
||||
'promise-polyfill/Promise',
|
||||
'format-io/lib/format'
|
||||
].map(function(name) {
|
||||
return modules + name;
|
||||
}));
|
||||
|
||||
files = files.map(function(name) {
|
||||
return name + '.js';
|
||||
});
|
||||
files = moduleFiles
|
||||
.concat(files)
|
||||
.map(function(name) {
|
||||
return name + '.js';
|
||||
});
|
||||
|
||||
urlFiles = getJoinURL(files);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue