@gorules/zen-engine 0.33.1 → 0.34.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +12 -7
package/README.md CHANGED
@@ -312,8 +312,8 @@ By incorporating the "Decision" node, developers can modularize decision logic,
312
312
  | darwin-x64 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
313
313
  | darwin-arm64 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
314
314
  | win32-x64-msvc | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
315
-
316
- We do not support linux-musl currently.
315
+ | linux-x64-musl | :x: | :heavy_check_mark: | :x: | :x: |
316
+ | linux-arm64-musl| :x: | :heavy_check_mark: | :x: | :x: |
317
317
 
318
318
  ## Contribution
319
319
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gorules/zen-engine",
3
- "version": "0.33.1",
3
+ "version": "0.34.3",
4
4
  "main": "index.js",
5
5
  "types": "./index.d.ts",
6
6
  "license": "MIT",
@@ -17,8 +17,10 @@
17
17
  "additional": [
18
18
  "x86_64-apple-darwin",
19
19
  "x86_64-unknown-linux-gnu",
20
+ "x86_64-unknown-linux-musl",
20
21
  "x86_64-pc-windows-msvc",
21
22
  "aarch64-unknown-linux-gnu",
23
+ "aarch64-unknown-linux-musl",
22
24
  "aarch64-apple-darwin"
23
25
  ]
24
26
  },
@@ -64,6 +66,7 @@
64
66
  "url": "https://github.com/gorules/zen/issues"
65
67
  },
66
68
  "publishConfig": {
69
+ "access": "public",
67
70
  "registry": "https://registry.npmjs.org/"
68
71
  },
69
72
  "repository": {
@@ -79,12 +82,14 @@
79
82
  "prepublishOnly": "napi prepublish",
80
83
  "version": "napi version"
81
84
  },
82
- "gitHead": "49ec36e8d62ad99c7fbc05dc79e3f59281d6f924",
85
+ "gitHead": "e169e7a7e1dd898f8edff9d10b35a63b2fa037a4",
83
86
  "optionalDependencies": {
84
- "@gorules/zen-engine-darwin-x64": "0.33.1",
85
- "@gorules/zen-engine-linux-x64-gnu": "0.33.1",
86
- "@gorules/zen-engine-win32-x64-msvc": "0.33.1",
87
- "@gorules/zen-engine-linux-arm64-gnu": "0.33.1",
88
- "@gorules/zen-engine-darwin-arm64": "0.33.1"
87
+ "@gorules/zen-engine-darwin-x64": "0.34.3",
88
+ "@gorules/zen-engine-linux-x64-gnu": "0.34.3",
89
+ "@gorules/zen-engine-linux-x64-musl": "0.34.3",
90
+ "@gorules/zen-engine-win32-x64-msvc": "0.34.3",
91
+ "@gorules/zen-engine-linux-arm64-gnu": "0.34.3",
92
+ "@gorules/zen-engine-linux-arm64-musl": "0.34.3",
93
+ "@gorules/zen-engine-darwin-arm64": "0.34.3"
89
94
  }
90
95
  }