Error: This is not a typed array when using gulp autoprefixer -


i have following gulp file:

'use strict'  var gulp = require('gulp'),     rename = require("gulp-rename"),     cssbeautify = require('gulp-cssbeautify'),     autoprefixer = require('gulp-autoprefixer');  gulp.task('css-prefix', function() {     return gulp.src('css/*.css')         .pipe(autoprefixer())         .pipe(gulp.dest('fcss')); }); 

now when run gulp command folllowing error:

gulp css-prefix 

enter image description here

error: not typed array.

why getting error ?

it appears need upgrade node.js version @ least >= 4.5. see github typed array issue , autoprefixer dependencies.


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -