mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
fixed bug with all.min.css
This commit is contained in:
parent
660a608e0c
commit
35cd1d3ff6
1 changed files with 4 additions and 1 deletions
|
|
@ -20,8 +20,11 @@ setWatachFunctions();
|
|||
exports.createManifest = function(){
|
||||
var lAllNames = cloudRequire(process.cwd() + '/hashes');
|
||||
if(lAllNames)
|
||||
for(var lName in lAllNames)
|
||||
for(var lName in lAllNames){
|
||||
if(lName.indexOf('min'))
|
||||
lName = './min/' + lName;
|
||||
exports.watch(lName);
|
||||
}
|
||||
processManifest();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue