Moved exported constants to .constants.

This commit is contained in:
Vitaly Puzrin 2020-11-12 15:49:20 +03:00
parent cb6d67d157
commit 5638105893
4 changed files with 19 additions and 16 deletions

View file

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed support of `Inflate` & `Deflate` instance create without `new`.
- `Inflate.push()` no longer needs second param (end is auto-detected).
- Increased default inflate chunk size to 64K.
- Moved exported constants to `.constants`.
- Switched to es6. Legacy es5 builds available in `/dist`.
- Structure of `/dist` folder changed.
- Upgraded build tools to modern ones.

View file

@ -1,14 +1,14 @@
// Top level file is just a mixin of submodules & constants
'use strict';
const assign = require('./lib/utils/common').assign;
const { Deflate, deflate, deflateRaw, gzip } = require('./lib/deflate');
const { Inflate, inflate, inflateRaw, ungzip } = require('./lib/inflate');
const deflate = require('./lib/deflate');
const inflate = require('./lib/inflate');
const constants = require('./lib/zlib/constants');
let pako = {};
assign(pako, deflate, inflate, constants);
module.exports = pako;
module.exports = {
Deflate, deflate, deflateRaw, gzip,
Inflate, inflate, inflateRaw, ungzip,
constants
};

View file

@ -374,8 +374,9 @@ function gzip(input, options) {
module.exports = {
Deflate: Deflate,
deflate: deflate,
deflateRaw: deflateRaw,
gzip: gzip
Deflate,
deflate,
deflateRaw,
gzip,
constants: require('./zlib/constants')
};

View file

@ -413,8 +413,9 @@ function inflateRaw(input, options) {
module.exports = {
Inflate: Inflate,
inflate: inflate,
inflateRaw: inflateRaw,
ungzip: inflate
Inflate,
inflate,
inflateRaw,
ungzip: inflate,
constants: require('./zlib/constants')
};