Library starter kit using Webpack.
- ES6 Source
- Exports UMD format
- Compiles JavaScript down to ES5 and is minified
- Inside webpack.config.js change the name of the library:
libraryName: '...'
- Inside package.json change the file name of the main property:
"main": "src/..."
- Install dependencies:
npm install
- Run production / development environment
- For production:
npm run compile
- For development:
npm run compile-watch
JavaScript compiles down to ES5 and is minified.
Watches and compiles JavaScript.
Licensed under the MIT Licence.