@fluffylabs/anan-as 1.0.0-next → 1.0.0

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/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -96,7 +96,7 @@ $ npm ci
96
96
  To build the WASM modules (in `./build/{release,debug}.wasm`):
97
97
 
98
98
  ```
99
- $ npm run build
99
+ $ npm build
100
100
  ```
101
101
 
102
102
  To run the example in the browser at [http://localhost:3000](http://localhost:3000).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fluffylabs/anan-as",
3
3
  "description": "AssemblyScript PVM interpreter.",
4
- "version": "1.0.0-next",
4
+ "version": "1.0.0",
5
5
  "main": "./bin/index.js",
6
6
  "scripts": {
7
7
  "asbuild": "npm run asbuild:debug && npm run asbuild:release && npm run asbuild:raw && npm run asbuild:release-mini",
@@ -57,8 +57,8 @@
57
57
  "types": "./build/release.d.ts"
58
58
  },
59
59
  "./release-mini": {
60
- "import": "./build/release-mini.js",
61
- "types": "./build/release-mini.d.ts"
60
+ "import": "./build/release.js",
61
+ "types": "./build/release.d.ts"
62
62
  },
63
63
  "./raw": {
64
64
  "import": "./build/debug-raw.js",