Server IP : 2a02:4780:11:1361:0:bf7:7935:10 / Your IP : 18.220.16.69 Web Server : LiteSpeed System : Linux in-mum-web1261.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u200767797 ( 200767797) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u200767797/domains/drusonpharma.com/public_html/assets/../admin/scripts/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
'use strict'; const _ = require('lodash'); const chokidar = require('chokidar'); const upath = require('upath'); const renderAssets = require('./render-assets'); const renderPug = require('./render-pug'); const renderScripts = require('./render-scripts'); const renderSCSS = require('./render-scss'); const watcher = chokidar.watch('src', { persistent: true, }); let READY = false; process.title = 'pug-watch'; process.stdout.write('Loading'); let allPugFiles = {}; watcher.on('add', filePath => _processFile(upath.normalize(filePath), 'add')); watcher.on('change', filePath => _processFile(upath.normalize(filePath), 'change')); watcher.on('ready', () => { READY = true; console.log(' READY TO ROLL!'); }); _handleSCSS(); function _processFile(filePath, watchEvent) { if (!READY) { if (filePath.match(/\.pug$/)) { if (!filePath.match(/includes/) && !filePath.match(/mixins/) && !filePath.match(/\/pug\/layouts\//)) { allPugFiles[filePath] = true; } } process.stdout.write('.'); return; } console.log(`### INFO: File event: ${watchEvent}: ${filePath}`); if (filePath.match(/\.pug$/)) { return _handlePug(filePath, watchEvent); } if (filePath.match(/\.scss$/)) { if (watchEvent === 'change') { return _handleSCSS(filePath, watchEvent); } return; } if (filePath.match(/src\/js\//)) { return renderScripts(); } if (filePath.match(/src\/assets\//)) { return renderAssets(); } } function _handlePug(filePath, watchEvent) { if (watchEvent === 'change') { if (filePath.match(/includes/) || filePath.match(/mixins/) || filePath.match(/\/pug\/layouts\//)) { return _renderAllPug(); } return renderPug(filePath); } if (!filePath.match(/includes/) && !filePath.match(/mixins/) && !filePath.match(/\/pug\/layouts\//)) { return renderPug(filePath); } } function _renderAllPug() { console.log('### INFO: Rendering All'); _.each(allPugFiles, (value, filePath) => { renderPug(filePath); }); } function _handleSCSS() { renderSCSS(); }