-
-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Description
I was learning JavaScript by the book "Learning JavaScript. 3rd Edition" And although I was doing everything as in the book I still got errors. Right now it is:
[17:48:13] SyntaxError in plugin "gulp-babel"
Message:
C:\Users\archi\test\lj\public\es6\test.js: Unexpected token
Please, if someone could help me to figure this out?
Thank you in advance
Here is package.json
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0"
}
test.js
'use strict';
// es6 feature: block-scoped "let" declaration
const sentences = [
{ subject: 'JavaScript', verb: 'is', object: 'great' },
{ subject: 'Elephants', verb: 'are', object: 'large' },
];
// es6 feature: object destructuring
function say({ subject, verb, object }) {
//es 6 feature: template strings
console.log(`${subject} ${verb} ${object}`);
}
//es6 feature for..of
for(let s of sentences) {
say(s);
}
gulpfile.babel.js
const gulp = require('gulp');
const babel = require('gulp-babel');
gulp.task('default', function() {
gulp.src("es6/**/*.js")
.pipe(babel())
.pipe(gulp.dest("dist"));
gulp.src("public/es6/**/*.js")
.pipe(babel())
.pipe(gulp.dest("public/dist"))
});
Metadata
Metadata
Assignees
Labels
No labels