@lionweb/cli 0.6.5-beta.0 → 0.6.5

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 +4 -0
  2. package/package.json +5 -6
package/README.md CHANGED
@@ -46,6 +46,10 @@ That means that key-value pairs appear in precisely the same order as they do in
46
46
 
47
47
  ## Changelog
48
48
 
49
+ ### 0.6.5
50
+
51
+ * Extend metrics functionality.
52
+
49
53
  ### 0.6.4
50
54
 
51
55
  * Add a command `infer-language` that infers a language from the given serialization chunk.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/cli",
3
- "version": "0.6.5-beta.0",
3
+ "version": "0.6.5",
4
4
  "description": "LionWeb CLI for {Java|Type}Script",
5
5
  "bin": {
6
6
  "lionweb-cli": "./dist/lionweb-cli.js"
@@ -16,16 +16,15 @@
16
16
  "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
17
17
  },
18
18
  "dependencies": {
19
- "@lionweb/core": "0.6.4-beta.0",
20
- "@lionweb/utilities": "0.6.4-beta.0",
21
- "@lionweb/validation": "0.6.3-beta.0"
19
+ "@lionweb/core": "0.6.4",
20
+ "@lionweb/utilities": "0.6.4",
21
+ "@lionweb/validation": "0.6.2"
22
22
  },
23
23
  "scripts": {
24
24
  "clean": "rm -rf dist/ lionweb-cli-*.tgz",
25
25
  "build": "tsc",
26
26
  "lint": "eslint src",
27
27
  "test": "node dist/lionweb-cli.js",
28
- "release": "npm publish",
29
- "release-beta": "npm publish --beta"
28
+ "release": "npm publish"
30
29
  }
31
30
  }