1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-10 07:37:27 +02:00

rollup: specify generatedCode: 'es2015' (#35070)

This will make use of `const` and modern features (which we are already using in our code) in the generated rollup code.
This commit is contained in:
XhmikosR
2021-10-04 19:46:07 +03:00
committed by GitHub
parent 78e9b402df
commit c81c645394
3 changed files with 5 additions and 2 deletions

View File

@@ -98,7 +98,8 @@ const conf = {
output: {
format: 'iife',
name: 'bootstrapTest',
sourcemap: 'inline'
sourcemap: 'inline',
generatedCode: 'es2015'
}
}
}