@lionweb/cli 0.6.11 → 0.6.12-beta.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/CHANGELOG.md +90 -0
- package/README.md +1 -66
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.6.12 - not officially released yet
|
|
4
|
+
|
|
5
|
+
* Separate CHANGELOG from README.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## 0.6.11
|
|
9
|
+
|
|
10
|
+
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.10.)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## 0.6.10
|
|
14
|
+
|
|
15
|
+
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.9.)
|
|
16
|
+
* Use the `AggregatingSimplisticHandler` to report on language deserialization problems.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## 0.6.9
|
|
20
|
+
|
|
21
|
+
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.8.)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## 0.6.8
|
|
25
|
+
|
|
26
|
+
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.7.)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## 0.6.7
|
|
30
|
+
|
|
31
|
+
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.6.)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## 0.6.6
|
|
35
|
+
|
|
36
|
+
* TS types generator now generates 1 file per language.
|
|
37
|
+
The output directory will be `<languages serialization chunk's file name>_gen/`.
|
|
38
|
+
* The `infer-language` command has been renamed to `infer-languages` (without deprecated alias).
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## 0.6.5
|
|
42
|
+
|
|
43
|
+
* Extend metrics functionality.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## 0.6.4
|
|
47
|
+
|
|
48
|
+
* Add a command `infer-language` that infers a language from the given serialization chunk.
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## 0.6.3
|
|
52
|
+
|
|
53
|
+
* Add a command `measure` that computes metrics.
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
## 0.6.2
|
|
57
|
+
|
|
58
|
+
* Expose diffing functionality from `@lionweb/validation`
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## 0.6.1
|
|
62
|
+
|
|
63
|
+
* Fix that `@lionweb/validation` was not specified as a (non-dev) dependency.
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
## 0.6.0
|
|
67
|
+
|
|
68
|
+
* Change the `diagram` command to output PlantUML and Mermaid diagram files _per language_.
|
|
69
|
+
* Add a `validation` commmand to validate JSON files as serialization chunks.
|
|
70
|
+
* Remove the shortening functionality from `extract`.
|
|
71
|
+
* Rename the `extract` command → `sort`, and remove the textualization for chunks that are the serialization of languages.
|
|
72
|
+
* Textualizing a serialization chunk of languages will use the LionCore/M3-specific syntax _unless_ the flag `--languagesAsRegular` is an argument.
|
|
73
|
+
* Add a `repair` command.
|
|
74
|
+
* Add a `textualize` command – that's optionally language-aware – to render a JSON serialization chunk as pure text.
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## 0.5.0
|
|
78
|
+
|
|
79
|
+
This is the first version corresponding to a release of LionWeb (version: 2023.1) as a whole.
|
|
80
|
+
|
|
81
|
+
* Make language-related functionality "multi-lingual", i.e. a serialization chunk can contain multiple `Language`s.
|
|
82
|
+
* (Languages will be sorted by name.)
|
|
83
|
+
* Improve extraction functionality: only catch JSON-parsing exceptions.
|
|
84
|
+
* Configure single entrypoint named `lionweb-cli`.
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
## Prior to 0.5.0
|
|
88
|
+
|
|
89
|
+
No changelog has been kept for previous versions, regardless of whether these were published or not.
|
|
90
|
+
|
package/README.md
CHANGED
|
@@ -44,72 +44,6 @@ The sorting produces a serialization chunk that's also aligned on JSON-level wit
|
|
|
44
44
|
That means that key-value pairs appear in precisely the same order as they do in the specification, and that missing key-value pairs are put in and get their default values.
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
## Changelog
|
|
48
|
-
|
|
49
|
-
### 0.6.10
|
|
50
|
-
|
|
51
|
-
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.9.)
|
|
52
|
-
* Use the `AggregatingSimplisticHandler` to report on language deserialization problems.
|
|
53
|
-
|
|
54
|
-
### 0.6.9
|
|
55
|
-
|
|
56
|
-
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.8.)
|
|
57
|
-
|
|
58
|
-
### 0.6.8
|
|
59
|
-
|
|
60
|
-
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.7.)
|
|
61
|
-
|
|
62
|
-
### 0.6.7
|
|
63
|
-
|
|
64
|
-
* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.6.)
|
|
65
|
-
|
|
66
|
-
### 0.6.6
|
|
67
|
-
|
|
68
|
-
* TS types generator now generates 1 file per language.
|
|
69
|
-
The output directory will be `<languages serialization chunk's file name>_gen/`.
|
|
70
|
-
* The `infer-language` command has been renamed to `infer-languages` (without deprecated alias).
|
|
71
|
-
|
|
72
|
-
### 0.6.5
|
|
73
|
-
|
|
74
|
-
* Extend metrics functionality.
|
|
75
|
-
|
|
76
|
-
### 0.6.4
|
|
77
|
-
|
|
78
|
-
* Add a command `infer-language` that infers a language from the given serialization chunk.
|
|
79
|
-
|
|
80
|
-
### 0.6.3
|
|
81
|
-
|
|
82
|
-
* Add a command `measure` that computes metrics.
|
|
83
|
-
|
|
84
|
-
### 0.6.2
|
|
85
|
-
|
|
86
|
-
* Expose diffing functionality from `@lionweb/validation`
|
|
87
|
-
|
|
88
|
-
### 0.6.1
|
|
89
|
-
|
|
90
|
-
* Fix that `@lionweb/validation` was not specified as a (non-dev) dependency.
|
|
91
|
-
|
|
92
|
-
### 0.6.0
|
|
93
|
-
|
|
94
|
-
* Change the `diagram` command to output PlantUML and Mermaid diagram files _per language_.
|
|
95
|
-
* Add a `validation` commmand to validate JSON files as serialization chunks.
|
|
96
|
-
* Remove the shortening functionality from `extract`.
|
|
97
|
-
* Rename the `extract` command → `sort`, and remove the textualization for chunks that are the serialization of languages.
|
|
98
|
-
* Textualizing a serialization chunk of languages will use the LionCore/M3-specific syntax _unless_ the flag `--languagesAsRegular` is an argument.
|
|
99
|
-
* Add a `repair` command.
|
|
100
|
-
* Add a `textualize` command – that's optionally language-aware – to render a JSON serialization chunk as pure text.
|
|
101
|
-
|
|
102
|
-
### 0.5.0
|
|
103
|
-
|
|
104
|
-
This is the first version corresponding to a release of LionWeb (version: 2023.1) as a whole.
|
|
105
|
-
|
|
106
|
-
* Make language-related functionality "multi-lingual", i.e. a serialization chunk can contain multiple `Language`s.
|
|
107
|
-
* (Languages will be sorted by name.)
|
|
108
|
-
* Improve extraction functionality: only catch JSON-parsing exceptions.
|
|
109
|
-
* Configure single entrypoint named `lionweb-cli`.
|
|
110
|
-
|
|
111
|
-
No changelog has been kept for previous versions, regardless of whether these were published or not.
|
|
112
|
-
|
|
113
47
|
## Development
|
|
114
48
|
|
|
115
49
|
Build the executable from source as follows:
|
|
@@ -117,3 +51,4 @@ Build the executable from source as follows:
|
|
|
117
51
|
```shell
|
|
118
52
|
$ npm run build
|
|
119
53
|
```
|
|
54
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.12-beta.1",
|
|
4
4
|
"description": "LionWeb CLI for {Java|Type}Script",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lionweb-cli": "./dist/lionweb-cli.js"
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@lionweb/core": "0.6.
|
|
20
|
-
"@lionweb/utilities": "0.6.
|
|
19
|
+
"@lionweb/core": "0.6.11-beta.1",
|
|
20
|
+
"@lionweb/utilities": "0.6.11-beta.1",
|
|
21
21
|
"@lionweb/validation": "0.6.3"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|