@barefootjs/rust 0.35.4 → 0.35.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.
Files changed (2) hide show
  1. package/dist/vite.js +15 -0
  2. package/package.json +5 -5
package/dist/vite.js CHANGED
@@ -2599,6 +2599,21 @@ var datePlugin = {
2599
2599
  };
2600
2600
 
2601
2601
  // ../jsx/src/analyzer.ts
2602
+ var MUTATING_METHOD_NAMES = new Set([
2603
+ "push",
2604
+ "pop",
2605
+ "shift",
2606
+ "unshift",
2607
+ "splice",
2608
+ "sort",
2609
+ "reverse",
2610
+ "fill",
2611
+ "copyWithin",
2612
+ "set",
2613
+ "add",
2614
+ "delete",
2615
+ "clear"
2616
+ ]);
2602
2617
  var CLIENT_EXPORTS = new Set([
2603
2618
  "createSignal",
2604
2619
  "createEffect",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/rust",
3
- "version": "0.35.4",
3
+ "version": "0.35.5",
4
4
  "description": "minijinja (Rust) adapter for BarefootJS — compiles IR to .j2 templates and ships a Rust rendering runtime (packages/adapter-rust/runtime/); runs under any Rust web framework (axum, etc.)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -54,7 +54,7 @@
54
54
  "directory": "packages/adapter-rust"
55
55
  },
56
56
  "dependencies": {
57
- "@barefootjs/shared": "0.35.4"
57
+ "@barefootjs/shared": "0.35.5"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@barefootjs/jsx": ">=0.2.0",
@@ -71,9 +71,9 @@
71
71
  },
72
72
  "devDependencies": {
73
73
  "@barefootjs/adapter-tests": "0.1.0",
74
- "@barefootjs/jsx": "0.35.4",
75
- "@barefootjs/vite": "0.35.4",
76
- "@barefootjs/client": "0.35.4",
74
+ "@barefootjs/jsx": "0.35.5",
75
+ "@barefootjs/vite": "0.35.5",
76
+ "@barefootjs/client": "0.35.5",
77
77
  "typescript": "^5.0.0",
78
78
  "vite": "^6.0.0"
79
79
  }