json-as 1.0.0-beta.7 → 1.0.0-beta.8
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.
- package/CHANGELOG +4 -0
- package/README.md +7 -4
- package/package.json +1 -1
package/CHANGELOG
CHANGED
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
7
7
|
█████ ███████ ██████ ██ ████ ██ ██ ███████
|
|
8
8
|
</span>
|
|
9
|
-
AssemblyScript - v1.0.0-beta.
|
|
9
|
+
AssemblyScript - v1.0.0-beta.8
|
|
10
10
|
</pre>
|
|
11
11
|
</h5>
|
|
12
12
|
|
|
@@ -31,20 +31,23 @@ JSON is the de-facto serialization format of modern web applications, but its se
|
|
|
31
31
|
## 💾 Installation
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install json-as@1.0.0-beta.
|
|
34
|
+
npm install json-as@1.0.0-beta.8
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Add the `--transform` to your `asc` command (e.g. in package.json)
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
--transform json-as/transform
|
|
40
|
+
--transform json-as/transform --lib json-as/lib
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Alternatively, add it to your `asconfig.json`
|
|
44
44
|
|
|
45
45
|
```json
|
|
46
46
|
{
|
|
47
|
-
"options": {
|
|
47
|
+
"options": {
|
|
48
|
+
"transform": ["json-as/transform"],
|
|
49
|
+
"lib": ["json-as/lib"]
|
|
50
|
+
}
|
|
48
51
|
}
|
|
49
52
|
```
|
|
50
53
|
|