Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error occurs when trying to run gulp #187

Open
NemoNoone opened this issue Jul 30, 2019 · 0 comments
Open

Error occurs when trying to run gulp #187

NemoNoone opened this issue Jul 30, 2019 · 0 comments

Comments

@NemoNoone
Copy link

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"))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant