@zenuml/core 3.47.3 → 3.47.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenuml/core",
3
- "version": "3.47.3",
3
+ "version": "3.47.5",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "storybook": "storybook dev -p 6006",
42
42
  "build-storybook": "bun run --bun storybook build",
43
43
  "worker:dev": "bun run build:site && bun run --bun wrangler dev",
44
- "worker:deploy": "bun run build:site && bun run --bun wrangler deploy",
44
+ "worker:deploy": "bun run build:site && bun run --bun wrangler deploy -e production",
45
45
  "worker:deploy:staging": "bun run build:site && bun run --bun wrangler deploy --env staging"
46
46
  },
47
47
  "main": "./dist/zenuml.js",
@@ -133,6 +133,6 @@
133
133
  "vite-plugin-svgr": "^4.5.0",
134
134
  "vite-svg-loader": "^5.1.0",
135
135
  "vitest": "^3.2.4",
136
- "wrangler": "^4.54.0"
136
+ "wrangler": "^4.88"
137
137
  }
138
138
  }
package/wrangler.toml CHANGED
@@ -8,5 +8,11 @@ directory = "dist"
8
8
  [env.production]
9
9
  name = "zenuml-web-renderer"
10
10
 
11
+ [env.production.assets]
12
+ directory = "dist"
13
+
11
14
  [env.staging]
12
- name = "zenuml-web-renderer-staging"
15
+ name = "zenuml-web-renderer-staging"
16
+
17
+ [env.staging.assets]
18
+ directory = "dist"