
localhost:8080/wordpress/wp-admin/
Use the username/password created in Step 2.1. Update 
var gulp = require( 'gulp' );
var rename = require( 'gulp-rename' );
var sass = require( 'gulp-sass' );
var styleSRC = './src/scss/site.scss';
var styleDIST = './dist/css/';
gulp.task('style', async function(){
gulp.src( styleSRC )
.pipe( sass( {
errorLogToConsole: true,
outputStyle : 'compressed',
} ) )
.on( 'error', console.error.bind( console ) )
.pipe( rename( { suffix: '.min' } ) )
.pipe( gulp.dest( styleDIST ) );
});
To run, execute the following:
Expected output:
root@debian:/opt/lampp/htdocs/zavh.github.io# gulp style [14:10:22] Using gulpfile /opt/lampp/htdocs/zavh.github.io/gulpfile.js [14:10:22] Starting 'style'... [14:10:22] Finished 'style' after 36 ms
Expected result: A minified version of site.scss residing at the styleDest directory as site.min.css