We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reproduce:
bower install ractive-transitions-slide cd bower_components/ractive-transitions-slide npm install
The es5-version file bower_components/ractive-transitions-slide/dist/ractive-transitions-slide.umd.js then still contains const declarations.
bower_components/ractive-transitions-slide/dist/ractive-transitions-slide.umd.js
const
The text was updated successfully, but these errors were encountered:
I changed the files package.json to have the same dependencies like ractive-events-hover:
package.json
ractive-events-hover
"devDependencies": { "rollup": "^0.20.2", "rollup-plugin-babel": "^1.0.0" },
I also have to change sourceMap to false in rollup.config.js, then the ES5 distribution file gets transpiled correctly.
sourceMap
false
rollup.config.js
However, this also transpiles the ES6 file to have no const declarations.
Sorry, something went wrong.
No branches or pull requests
Reproduce:
The es5-version file
bower_components/ractive-transitions-slide/dist/ractive-transitions-slide.umd.js
then still containsconst
declarations.The text was updated successfully, but these errors were encountered: