| Server IP : 108.167.181.216 / Your IP : 216.73.217.18 Web Server : Apache System : Linux gator4198.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : nwsceces ( 2797) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home1/nwsceces/public_html/wp-content/plugins/megamenu/ |
Upload File : |
// Admin CSS: prefer Dart Sass from this folder — `npm install` then `npm run build:admin-css` (or `watch:admin-css`).
// This gulp task is legacy and may not match current Node versions.
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('styles', function() {
gulp.src('css/admin/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css/admin/'));
});
gulp.task('default',function() {
gulp.watch('css/admin/*.scss',['styles']);
});