@zenuml/core 3.49.4 → 3.49.6
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 +8 -12
- package/dist/cli/zenuml.mjs +667 -625
- package/dist/cli/zenuml.mjs.map +1 -1
- package/dist/zenuml.esm.mjs +12058 -12363
- package/dist/zenuml.esm.mjs.map +1 -1
- package/dist/zenuml.js +536 -536
- package/dist/zenuml.js.map +1 -1
- package/package.json +4 -7
package/README.md
CHANGED
|
@@ -49,20 +49,16 @@ bun dev
|
|
|
49
49
|
|
|
50
50
|
## CI/CD
|
|
51
51
|
|
|
52
|
-
CI/CD is done with GitHub Actions
|
|
52
|
+
CI/CD is done with GitHub Actions (`.github/workflows/`):
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
- **`cd.yml`** — runs on every push and pull request: lint + unit tests (`test`),
|
|
55
|
+
Playwright E2E (`e2e`, via `e2e.yml`), then — only if both pass — publishes
|
|
56
|
+
`@zenuml/core` to npm (on `main`) and deploys the demo site to Cloudflare
|
|
57
|
+
Workers (production on `main`, staging otherwise). See [DEPLOYMENT.md](./DEPLOYMENT.md).
|
|
58
|
+
- **`e2e.yml`** — reusable Playwright workflow, called by `cd.yml` or run manually.
|
|
59
|
+
- **`update-snapshots.yml`** — manually triggered; regenerates Linux visual snapshots.
|
|
55
60
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
```text
|
|
59
|
-
test -> npm publish
|
|
60
|
-
-> cy tests
|
|
61
|
-
-> build site -> deploy gh-pages
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
This workflow is triggered on every push to the `main` branch.
|
|
65
|
-
It will build the project and publish the `dist` folder to the `gh-pages` branch.
|
|
61
|
+
The DSL syntax reference lives at [docs/DSL_SYNTAX.md](./docs/DSL_SYNTAX.md).
|
|
66
62
|
|
|
67
63
|
## Put localhost on the internet
|
|
68
64
|
|