Hello. I'm having a problem running gulp through Yarn and NPM. When running yarn run build to set my application to dist folder. The process for amid this output in the terminal:
Gulpfile.js
/*global-$*/'usestrict';//generatedon2017-01-17usinggenerator-modern-frontend0.2.9varfs=require('fs');varpath=require('path');vargulp=require('gulp');var$=require('gulp-load-plugins')();varbrowserSync=require('browser-sync');varreload=browserSync.reload;varthrough2=require('through2');varbrowserify=require('browserify');varisDevelopment=(process.env.ENVIRONMENT!=="production"); gulp.task('stylesheet', function () { return gulp.src('app/css/main.scss') .pipe($.if(isDevelopment, $.sourcemaps.init())) .pipe($.sass({ outputStyle: 'nested', // libsass doesn't support expanded yet precision: 10, includePaths: ['.'], onError: console.error.bind(console, 'Sass error:') })) .on('error', function (error) { console.log(error.stack); this.emit('end'); }) .pipe($.postcss([ require('autoprefixer-core')({browsers: ['last 1 version']}) ])) .pipe($.if(isDevelopment, $.sourcemaps.write())) .pipe(gulp.dest('.tmp/css')) .pipe(reload({stream: true})); }); gulp.task('javascript', function () { return gulp.src('app/js/main.js') .pipe(through2.obj(function (file, enc, next){ // workaround for https://github.com/babel/babelify/issues/46 browserify({ entries: file.path, debug: isDevelopment }).bundle(function(err, res){ if (err) { return next(err); } file.contents = res; next(null, file); }); })) .on('error', function (error) { console.log(error.stack); this.emit('end'); }) .pipe(gulp.dest('dist/js')) .pipe($.if(isDevelopment, $.sourcemaps.init({loadMaps: true}))) .pipe($.if(isDevelopment, $.sourcemaps.write('.'))) .pipe(gulp.dest('.tmp/js')); }); gulp.task('jshint', function () { return gulp.src('app/js/**/*.js') .pipe(reload({stream: true, once: true})) .pipe($.jshint()) .pipe($.jshint.reporter('jshint-stylish')) .pipe($.if(!browserSync.active, $.jshint.reporter('fail'))); }); gulp.task('html', ['javascript', 'stylesheet'], function () { var assets = $.useref.assets({searchPath: ['.tmp', 'app/*.html', '.']}); return gulp.src('app/*.html') .pipe(assets) .pipe($.if('*.js', $.uglify())) .pipe($.if('*.css', $.csso())) .pipe(assets.restore()) .pipe($.useref()) .pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true}))) .pipe(gulp.dest('dist')); }); gulp.task('images', function () { return gulp.src('app/images/**/*') .pipe($.cache($.imagemin({ progressive: true, interlaced: true, // don't remove IDs from SVGs, they are often used // as hooks for embedding and styling svgoPlugins: [{cleanupIDs: false}] }))) .pipe(gulp.dest('dist/images')); }); gulp.task('fonts', function () { var pattern = 'app/fonts/**/*' return gulp.src(require('main-bower-files')({ filter: '**/*.{eot,svg,ttf,woff,woff2}' }).concat(pattern)) .pipe(gulp.dest('.tmp/fonts')) .pipe(gulp.dest('dist/fonts')); }); gulp.task('extras', function () { return gulp.src([ 'app/*.*', '!app/*.html' ], { dot: true }).pipe(gulp.dest('dist')); }); gulp.task('clean', require('del').bind(null, ['.tmp', 'dist'])); gulp.task('serve', ['stylesheet', 'javascript', 'fonts'], function () { browserSync({ notify: false, port: 9000, server: { baseDir: ['.tmp', 'app'], routes: { '/bower_components': 'bower_components' } } }); // watch for changes gulp.watch([ 'app/*.html', '.tmp/js/*.{js,jsx}', 'app/images/**/*', '.tmp/fonts/**/*' ]).on('change', reload); gulp.watch(['app/css/**/*.scss'], ['stylesheet']); gulp.watch('app/js/**/*.{js,jsx}', ['javascript']); gulp.watch('app/fonts/**/*', ['fonts']); }); gulp.task('serve:dist', function () { browserSync({ notify: false, port: 9000, server: { baseDir: ['dist'] } }); }); // inject bower components gulp.task('wiredep', function () { var wiredep = require('wiredep').stream; gulp.src('app/css/*.scss') .pipe(wiredep({ ignorePath: /^(\.\.\/)+/ })) .pipe(gulp.dest('app/css')); gulp.src('app/*.html') .pipe(wiredep({ // exclude: ['bootstrap-sass-official'], ignorePath: /^(\.\.\/)*\.\./ })) .pipe(gulp.dest('app')); }); gulp.task('build', ['html', 'images', 'fonts', 'extras'], function () { return gulp.src('dist/**/*').pipe($.size({title: 'build', gzip: true})); }); gulp.task('default', ['clean'], function () { gulp.start('build'); });
Thanks in advance for your help.