@microtronics/studio-cli 0.3.4 → 0.4.0
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 +23 -0
- package/README.md +14 -7
- package/dist/studio-cli.d.ts +1267 -0
- package/out/api.d.ts.map +1 -1
- package/out/api.js +11 -1
- package/out/dde/coreDefinitions.d.ts.map +1 -0
- package/out/dde/coreDefinitions.js +533 -0
- package/out/dde/dde.d.ts.map +1 -0
- package/out/dde/dde.js +178 -0
- package/out/dde/dynamic-dde.schema.json +835 -0
- package/out/dde/fileGenerators/xml.d.ts.map +1 -0
- package/out/dde/fileGenerators/xml.js +205 -0
- package/out/dde/yamlDdePreCompiler.d.ts.map +1 -0
- package/out/dde/yamlDdePreCompiler.js +900 -0
- package/out/defaultFiles.d.ts.map +1 -0
- package/out/defaultFiles.js +84 -0
- package/out/dependencies.d.ts.map +1 -1
- package/out/dependencies.js +41 -6
- package/out/diagnostics.d.ts.map +1 -0
- package/out/diagnostics.js +10 -0
- package/out/helper.d.ts.map +1 -0
- package/out/helper.js +22 -0
- package/out/main.js +13 -0
- package/out/manifest.d.ts.map +1 -1
- package/out/manifest.js +7 -0
- package/package.json +68 -63
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.4.0 (2024-12-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **studio-cli:** command to call dde compiler ([086a794](https://bitbucket.org/microtronics-core/vscode-studio/commits/086a7948693e445c75b710430780ef775872b1aa))
|
|
9
|
+
* **studio-cli:** compile dde function ([0a9d6b4](https://bitbucket.org/microtronics-core/vscode-studio/commits/0a9d6b49f1cabc934bc5675bb721dfed131e0ea3))
|
|
10
|
+
* **studio-cli:** export function to generate the myDatanet dde xml ([f0736f4](https://bitbucket.org/microtronics-core/vscode-studio/commits/f0736f46b306429418e0413bea59e9ef6b708a32))
|
|
11
|
+
* **studio-cli:** export xml dde notation during build ([c6b513a](https://bitbucket.org/microtronics-core/vscode-studio/commits/c6b513a1a3a13277de6c6571a983bd29433c6dee))
|
|
12
|
+
* **studio-cli:** validate yaml string against the dde schema ([bfebc7c](https://bitbucket.org/microtronics-core/vscode-studio/commits/bfebc7cdbbdbad44d0db5246845b3cc46b4645ab))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **studio-cli:** dynamic dde schema was not an entirely valid schema ([28a1b65](https://bitbucket.org/microtronics-core/vscode-studio/commits/28a1b65c79098841b164fba1e5c1cd17440bc63e))
|
|
18
|
+
|
|
19
|
+
## 0.3.5 (2024-11-28)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **studio-core:** trigger cache update to update the views ([fbc9a98](https://bitbucket.org/microtronics-core/vscode-studio/commits/fbc9a989989bd67383b0f3d9b5361f736683c65b))
|
|
25
|
+
|
|
3
26
|
## 0.3.4 (2024-11-27)
|
|
4
27
|
|
|
5
28
|
|
package/README.md
CHANGED
|
@@ -3,31 +3,38 @@
|
|
|
3
3
|
|
|
4
4
|
This tool assists in installing, packaging and publishing Microtronics Studio libraries and apps.
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Installation
|
|
7
7
|
|
|
8
|
-
[Node.js](https://nodejs.org
|
|
8
|
+
Make sure you have [Node.js](https://nodejs.org) installed. Then run:
|
|
9
|
+
|
|
10
|
+
```console
|
|
11
|
+
$ npm i -g @microtronics/studio-cli
|
|
12
|
+
```
|
|
9
13
|
|
|
10
14
|
## Usage
|
|
11
15
|
|
|
12
16
|
```console
|
|
13
|
-
$
|
|
14
|
-
$ npx @microtronics/studio-cli --version
|
|
17
|
+
$ studio-cli --version
|
|
15
18
|
```
|
|
19
|
+
For a reference on all the available `studio-cli` commands, run `studio-cli --help`
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Requirements
|
|
23
|
+
|
|
24
|
+
[Node.js](https://nodejs.org/en/) at least `20.x.x`.
|
|
25
|
+
|
|
16
26
|
|
|
17
27
|
## Development
|
|
18
28
|
|
|
19
29
|
Execute commands from the root dir
|
|
20
30
|
|
|
21
31
|
```console
|
|
22
|
-
$ npm install -w cli
|
|
23
|
-
$ cd cli
|
|
24
32
|
$ npm run watch:build # or `watch:test` to also build tests
|
|
25
33
|
```
|
|
26
34
|
|
|
27
35
|
Once the watcher is up and running, you can run out of sources with:
|
|
28
36
|
|
|
29
37
|
```console
|
|
30
|
-
$ cd cli
|
|
31
38
|
$ node studio-cli
|
|
32
39
|
```
|
|
33
40
|
|