@lionweb/cli 0.6.0 → 0.6.1
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 +4 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -39,6 +39,10 @@ That means that key-value pairs appear in precisely the same order as they do in
|
|
|
39
39
|
|
|
40
40
|
## Changelog
|
|
41
41
|
|
|
42
|
+
### 0.6.1
|
|
43
|
+
|
|
44
|
+
* Fix that `@lionweb/validation` was not specified as a (non-dev) dependency.
|
|
45
|
+
|
|
42
46
|
### 0.6.0
|
|
43
47
|
|
|
44
48
|
* Change the `diagram` command to output PlantUML and Mermaid diagram files _per language_.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "LionWeb CLI for {Java|Type}Script",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lionweb-cli": "./dist/lionweb-cli.js"
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@lionweb/core": "0.6.0",
|
|
22
|
-
"@lionweb/utilities": "0.6.0"
|
|
22
|
+
"@lionweb/utilities": "0.6.0",
|
|
23
|
+
"@lionweb/validation": "0.6.0"
|
|
23
24
|
},
|
|
24
25
|
"scripts": {
|
|
25
26
|
"clean": "rm -rf dist/ lionweb-cli-*.tgz",
|