watr 2.3.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "watr",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Ligth & fast WAT compiler",
5
5
  "main": "watr.js",
6
6
  "exports": {
package/readme.md CHANGED
@@ -1,17 +1,16 @@
1
1
  # watr [![test](https://github.com/audio-lab/watr/actions/workflows/test.js.yml/badge.svg)](https://github.com/audio-lab/watr/actions/workflows/test.js.yml) [![npm bundle size](https://img.shields.io/bundlephobia/minzip/watr/latest?color=brightgreen&label=gzip)](https://bundlephobia.com/package/watr) [![npm](https://img.shields.io/npm/v/watr?color=red)](https://npmjs.org/watr)
2
2
 
3
- Bare minimum wasm text compiler/formatter.<br/>
4
- A light & fast alternative to [wat2wasm](https://github.com/AssemblyScript/wabt.js).<br/>
3
+ Bare minimum wasm text compiler/formatter. A light & fast alternative to [wat2wasm](https://github.com/AssemblyScript/wabt.js).<br/>
5
4
  Useful for hi-level languages or dynamic (in-browser) compilation.<br>
6
5
 
7
6
  <!-- See [REPL](https://audio-lab.github.io/watr/repl.html).-->
8
7
 
9
8
  &nbsp; | Size (gzipped) | Performance (op/s)
10
- ---|---|---|---
9
+ ---|---|---
11
10
  watr | 3.8 kb | 6000
12
11
  [wat-compiler](https://github.com/stagas/wat-compiler) | 6 kb | 348
13
12
  [wabt](https://github.com/AssemblyScript/wabt.js) | 300 kb | 574
14
- [wassemble](https://github.com/wingo/wassemble) | ? kb | ?
13
+ <!-- [wassemble](https://github.com/wingo/wassemble) | ? kb | ? -->
15
14
 
16
15
  ## Usage
17
16