@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 CHANGED
@@ -25,18 +25,11 @@ Please follow the [integration tutorial](./TUTORIAL.md) for detailed steps.
25
25
 
26
26
  ## Technical Requirements
27
27
 
28
- These are the tools we use for working with the code and documentation:
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 (the top level directory of the @zenuml/core project repository)
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
- npx pnpm install # npx is required for first install
41
+ bun install
51
42
  ```
52
43
 
53
44
  ### Launch
54
45
 
55
46
  ```bash
56
- npx pnpm run dev
47
+ bun dev
57
48
  ```
58
49
 
59
50
  ## CI/CD