bahmutov / compiled

Compiles the ES* bundle to your NodeJS version on install
https://glebbahmutov.com/blog/javascript-needs-compile-step/
41 stars 2 forks source link

Allow list of ES6 features in the config #11

Closed bahmutov closed 8 years ago

bahmutov commented 8 years ago

Some features are not detected by the feature tests, for example string repeat

const foo3 = 'foo'.repeat(3)

need to be able to specify these manually. Will require polyfill https://babeljs.io/docs/usage/polyfill/

bahmutov commented 8 years ago

Done