| 
      
            Lines 428-433
          exports.watch = function () {
      
      
        Link Here
      
     | 
  
        
          | 428 | 
              watch(STAFF_CSS_BASE + "/src/**/*.scss", series('staff_css')); | 
          428 | 
              watch(STAFF_CSS_BASE + "/src/**/*.scss", series('staff_css')); | 
        
        
          | 429 | 
          };  | 
          429 | 
          };  | 
        
        
          | 430 | 
           | 
          430 | 
           | 
        
            
               | 
               | 
              431 | 
              if (args['_'][0].match("po:") && !fs.existsSync('/misc/translator/po')) { | 
            
            
              | 432 | 
                  console.log("misc/translator/po does not exist. You should clone koha-l10n there. See https://wiki.koha-community.org/wiki/Translation_files for more details."); | 
            
            
              | 433 | 
                  process.exit(1);  | 
            
            
              | 434 | 
              }  | 
            
            
              | 435 | 
               | 
            
        
          | 431 | 
          exports['po:create'] = parallel(...poTypes.map(type => poTasks[type].create));  | 
          436 | 
          exports['po:create'] = parallel(...poTypes.map(type => poTasks[type].create));  | 
        
        
          | 432 | 
          exports['po:update'] = parallel(...poTypes.map(type => poTasks[type].update));  | 
          437 | 
          exports['po:update'] = parallel(...poTypes.map(type => poTasks[type].update));  | 
        
        
          | 433 | 
          exports['po:extract'] = parallel(...poTypes.map(type => poTasks[type].extract));  | 
          438 | 
          exports['po:extract'] = parallel(...poTypes.map(type => poTasks[type].extract));  | 
        
            
              | 434 | 
              -   | 
               | 
               |