@microtronics/studio-cli 0.3.4 → 0.3.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.
- package/CHANGELOG.md +7 -0
- package/README.md +14 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.3.5 (2024-11-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **studio-core:** trigger cache update to update the views ([fbc9a98](https://bitbucket.org/microtronics-core/vscode-studio/commits/fbc9a989989bd67383b0f3d9b5361f736683c65b))
|
|
9
|
+
|
|
3
10
|
## 0.3.4 (2024-11-27)
|
|
4
11
|
|
|
5
12
|
|
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
|
|