We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
No output or error is given on gulp-babel during gulp task
Below are the package versions
"@babel/core": "7.7.4", "@babel/preset-env": "7.7.4", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "gulp": "4.0.2", "gulp-babel": "8.0.0", "gulp-cli": "^2.0.1",
Usage
gulp.task('obfuscate', async () => { return gulp .src([ 'index.js', ]) .pipe(babel({ presets: ['es2015'], compact: true })) .pipe(gulp.dest('dist')); });
The text was updated successfully, but these errors were encountered:
You are mixing Babel 6 and Babel 7. Try using @babel/preset-env instead of es2015 in your Babel config.
@babel/preset-env
es2015
Sorry, something went wrong.
@nicolo-ribaudo I have tried @babel/preset-env and other options. Not working...
Duplicate of #167
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
No output or error is given on gulp-babel during gulp task
Below are the package versions
Usage
The text was updated successfully, but these errors were encountered: