Added esm build, #97

This commit is contained in:
Vitaly Puzrin 2020-11-17 10:01:22 +03:00
parent ab9b7fecde
commit b4d9a94488
3 changed files with 13 additions and 1 deletions

View file

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Increased default inflate chunk size to 64K.
- Moved exported constants to `.constants`.
- Switched to es6. Legacy es5 builds available in `/dist`.
- Added esm build.
- Structure of `/dist` folder changed.
- Upgraded build tools to modern ones.

View file

@ -23,6 +23,10 @@
],
"license": "(MIT AND Zlib)",
"repository": "nodeca/pako",
"exports": {
"import": "./dist/pako.esm.js",
"require": "./index.js"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha",

View file

@ -75,6 +75,13 @@ export default [
{ file: 'dist/pako_inflate.es5.min.js', format: 'umd', name: 'pako', plugins: [ terser() ] }
],
plugins: plugins_es5
},
// esm
{
input: 'index.js',
output: [
{ file: 'dist/pako.esm.js', format: 'esm' }
],
plugins: plugins
}
];