Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Couldn't find preset "es2015" relative to directory "/Users/username"

I get the following error when trying to use gulp-babel:

Error: Couldn't find preset "es2015" relative to directory "/Users/username"

I have the es2015 preset installed globally and locally so can't see why this would be an issue.

Below is my gulp set up and package.json.

var babel = require('gulp-babel');
var es2015 = require('babel-preset-es2015');

gulp.task('babel', function() {
    return gulp.src('./app/main.js')
    .pipe(babel({
        presets: [es2015]
    }))
    .pipe(gulp.dest('dist'));
});

Package.json

  "devDependencies": {
    "babel-preset-es2015": "^6.3.13",
    "babel-preset-es2015-node5": "^1.1.1",
    "browser-sync": "^2.11.0",
    "gulp": "^3.9.0",
    "gulp-babel": "^6.1.1",
    "gulp-stylus": "^2.2.0"
  }

I am using node v5.1.0 and babel v6.4.0

Here is the terminal ouput

terminal output

like image 383
Brian Douglas Avatar asked Jan 15 '16 20:01

Brian Douglas


3 Answers

You only need to install babel-preset-es2015:

CLI usage example:

npm install babel-cli babel-preset-es2015
like image 197
88mary256 Avatar answered Oct 11 '22 07:10

88mary256


To fix this issue You should remove .babelrc (hidden) file from "/Users/username" directory.

like image 14
Ihor Khomiak Avatar answered Oct 11 '22 06:10

Ihor Khomiak


the "es2015" in :

    .pipe(babel({
        presets: ['es2015']
    }))

is actually a path - so if you don't have the preset in the /Users/username/es2015 directory you have to point exactly to it like for instance:

.pipe(babel({
    presets: ['../../gulp/node_modules/babel-preset-es2015']
}))

it worked for me

like image 12
Picard Avatar answered Oct 11 '22 06:10

Picard