Arjun Barrett 4 years ago
parent
commit
d6acc4ff41
4 changed files with 9 additions and 2 deletions
  1. 2 1
      .npmignore
  2. 3 0
      CHANGELOG.md
  3. 3 0
      README.md
  4. 1 1
      package.json

+ 2 - 1
.npmignore

@@ -2,4 +2,5 @@
 !esm/
 !lib/
 !umd/
-tsconfig*.json
+tsconfig*.json
+.parcelrc

+ 3 - 0
CHANGELOG.md

@@ -1,3 +1,6 @@
+## 0.3.7
+- Patched streaming compression bugs
+- Added demo page
 ## 0.3.6
 - Allowed true ESM imports
 ## 0.3.4

+ 3 - 0
README.md

@@ -20,6 +20,9 @@ In addition to the base decompression and compression APIs, `fflate` supports hi
 | Multi-thread/Asynchronous   | ❌     | ❌                      | ❌                    | ✅                             |
 | Uses ES Modules             | ❌     | ❌                      | ❌                    | ✅                             |
 
+## Demo
+If you'd like to try `fflate` for yourself without installing it, you can take a look at the [browser demo](https://101arrowz.github.io/fflate). Since `fflate` is a pure JavaScript library, it works in both the browser and Node.js (see [Browser support](https://github.com/101arrowz/fflate/#browser-support) for more info).
+
 ## Usage
 
 Install `fflate`:

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "fflate",
-  "version": "0.3.6",
+  "version": "0.3.7",
   "description": "High performance (de)compression in an 8kB package",
   "main": "./lib/index.js",
   "module": "./esm/index.mjs",