@microtronics/studio-cli 0.3.5 → 0.4.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 +23 -0
- 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 +69 -63
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.4.1 (2024-12-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **studio-cli:** add missing package `ajv-formats` ([2db4b55](https://bitbucket.org/microtronics-core/vscode-studio/commits/2db4b5500c98082b9e72a40cba832697366e64bb))
|
|
9
|
+
|
|
10
|
+
## 0.4.0 (2024-12-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **studio-cli:** command to call dde compiler ([086a794](https://bitbucket.org/microtronics-core/vscode-studio/commits/086a7948693e445c75b710430780ef775872b1aa))
|
|
16
|
+
* **studio-cli:** compile dde function ([0a9d6b4](https://bitbucket.org/microtronics-core/vscode-studio/commits/0a9d6b49f1cabc934bc5675bb721dfed131e0ea3))
|
|
17
|
+
* **studio-cli:** export function to generate the myDatanet dde xml ([f0736f4](https://bitbucket.org/microtronics-core/vscode-studio/commits/f0736f46b306429418e0413bea59e9ef6b708a32))
|
|
18
|
+
* **studio-cli:** export xml dde notation during build ([c6b513a](https://bitbucket.org/microtronics-core/vscode-studio/commits/c6b513a1a3a13277de6c6571a983bd29433c6dee))
|
|
19
|
+
* **studio-cli:** validate yaml string against the dde schema ([bfebc7c](https://bitbucket.org/microtronics-core/vscode-studio/commits/bfebc7cdbbdbad44d0db5246845b3cc46b4645ab))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **studio-cli:** dynamic dde schema was not an entirely valid schema ([28a1b65](https://bitbucket.org/microtronics-core/vscode-studio/commits/28a1b65c79098841b164fba1e5c1cd17440bc63e))
|
|
25
|
+
|
|
3
26
|
## 0.3.5 (2024-11-28)
|
|
4
27
|
|
|
5
28
|
|