0.0.2 • Published 9 years ago
es-start-kit v0.0.2
A convenient module that help you transform ES2015+ into ES5
- Most of the source code are copy from create-react-app.
- Use whatwg-fetch and promise-polyfill polyfills.
- Use fast-async to transform the
async/awaitfeature toPromisechain. - Currently focus on browser only.
Usage
Install
yarn add es-start-kitOr if you don't use yarn
npm install es-start-kit --save-devCurrently, you must have an directory src in the project root and an entry.js file as the project's entry.
Then you can use the es-load in your package.json like
"scripts": {
"build" : "es-load"
}