@lionweb/core 0.6.4-beta.0 → 0.6.4
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/README.md +5 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -32,6 +32,11 @@ The following is a list of links to potential starting points:
|
|
|
32
32
|
|
|
33
33
|
## Changelog
|
|
34
34
|
|
|
35
|
+
### 0.6.4
|
|
36
|
+
|
|
37
|
+
* Add functions `mapValues` and `instantiableClassifiers`.
|
|
38
|
+
* Add a method `SymbolTable.languageMatching` to look up a language.
|
|
39
|
+
|
|
35
40
|
### 0.6.3
|
|
36
41
|
|
|
37
42
|
* The deserializer now deserializes all nodes in the serialization chunk, not just the root nodes (identified as having `parent` set to `null`).
|
|
@@ -39,8 +44,6 @@ The following is a list of links to potential starting points:
|
|
|
39
44
|
* Also: `deserializeChunk` is renamed to `deserializeSerializationChunk` for naming consistency, although `deserializeChunk` is retained as an alias.
|
|
40
45
|
* Add a method `metaType` to M3 types, to deduce classifiers' names from.
|
|
41
46
|
(That fixes [issue #143](https://github.com/LionWeb-io/lionweb-typescript/issues/143).)
|
|
42
|
-
* Add functions `mapValues` and `instantiableClassifiers`.
|
|
43
|
-
* Add a method `SymbolTable.languageMatching` to look up a language.
|
|
44
47
|
|
|
45
48
|
### 0.6.2
|
|
46
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/core",
|
|
3
|
-
"version": "0.6.4
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "LionWeb core for {Java|Type}Script",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
"clean": "rm -rf dist/ lionweb-core-*.tgz",
|
|
19
19
|
"build": "tsc",
|
|
20
20
|
"lint": "eslint src",
|
|
21
|
-
"release": "npm publish"
|
|
22
|
-
"release-beta": "npm publish --beta"
|
|
21
|
+
"release": "npm publish"
|
|
23
22
|
}
|
|
24
23
|
}
|