@lionweb/utilities 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 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -22,10 +22,14 @@ It contains utilities on top of the `core` package, such as:
|
|
|
22
22
|
|
|
23
23
|
## Changelog
|
|
24
24
|
|
|
25
|
+
### 0.6.4
|
|
26
|
+
|
|
27
|
+
* Rename `inferLanguagesFromChunk` → `inferLanguagesFromSerializationChunk` (for consistency).
|
|
28
|
+
* Extend the functionality of the `measure` metrics function.
|
|
29
|
+
|
|
25
30
|
### 0.6.3
|
|
26
31
|
|
|
27
32
|
* Add a `inferLanguagesFromChunk` function that infers a language from a serialization chunk.
|
|
28
|
-
* Extend the functionality of the `measure` metrics function.
|
|
29
33
|
* Renaming for consistency and clarity:
|
|
30
34
|
* `readChunk` → `readSerializationChunk`
|
|
31
35
|
* `tryLoad[All]AsLanguages` → `tryRead[All]AsLanguages`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/utilities",
|
|
3
|
-
"version": "0.6.4
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "LionWeb utilities",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@lionweb/core": "0.6.4
|
|
18
|
+
"@lionweb/core": "0.6.4",
|
|
19
19
|
"littoral-templates": "0.2.2",
|
|
20
20
|
"nanoid": "4.0.2"
|
|
21
21
|
},
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"clean": "rm -rf dist/ lionweb-utilities-*.tgz",
|
|
24
24
|
"build": "tsc",
|
|
25
25
|
"lint": "eslint src",
|
|
26
|
-
"release": "npm publish"
|
|
27
|
-
"release-beta": "npm publish --beta"
|
|
26
|
+
"release": "npm publish"
|
|
28
27
|
}
|
|
29
28
|
}
|