@zenuml/core 3.49.1 → 3.49.3
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 -13
- package/dist/cli/zenuml.mjs +298 -278
- package/dist/cli/zenuml.mjs.map +1 -1
- package/dist/zenuml.esm.mjs +1519 -1465
- package/dist/zenuml.esm.mjs.map +1 -1
- package/dist/zenuml.js +4 -4
- package/dist/zenuml.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,18 +25,11 @@ Please follow the [integration tutorial](./TUTORIAL.md) for detailed steps.
|
|
|
25
25
|
|
|
26
26
|
## Technical Requirements
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
- [volta](https://volta.sh/) to manage node versions.
|
|
31
|
-
- [Node.js](https://nodejs.org/en/). `volta install node`
|
|
32
|
-
- [pnpm](https://pnpm.io/) package manager. `volta install pnpm`
|
|
33
|
-
- [npx](https://docs.npmjs.com/cli/v8/commands/npx) the packaged executor in npm. This is needed [to install pnpm.](#install-packages)
|
|
34
|
-
|
|
35
|
-
Follow the setup steps below to install them and start the development.
|
|
28
|
+
- [Bun](https://bun.sh/) — package manager, runtime, and test runner. Install via `curl -fsSL https://bun.sh/install | bash`
|
|
36
29
|
|
|
37
30
|
### Switch to project
|
|
38
31
|
|
|
39
|
-
Once you have cloned the repository onto your development machine, change into the `zenuml-core` project folder
|
|
32
|
+
Once you have cloned the repository onto your development machine, change into the `zenuml-core` project folder:
|
|
40
33
|
|
|
41
34
|
```bash
|
|
42
35
|
cd zenuml-core
|
|
@@ -44,16 +37,14 @@ cd zenuml-core
|
|
|
44
37
|
|
|
45
38
|
### Install packages
|
|
46
39
|
|
|
47
|
-
Run `npx pnpm install`. You will need `npx` for this because volta doesn't support it yet.
|
|
48
|
-
|
|
49
40
|
```bash
|
|
50
|
-
|
|
41
|
+
bun install
|
|
51
42
|
```
|
|
52
43
|
|
|
53
44
|
### Launch
|
|
54
45
|
|
|
55
46
|
```bash
|
|
56
|
-
|
|
47
|
+
bun dev
|
|
57
48
|
```
|
|
58
49
|
|
|
59
50
|
## CI/CD
|