@oh-my-pi/pi-natives 15.7.2 → 15.7.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/native/index.d.ts CHANGED
@@ -136,7 +136,7 @@ export declare class Shell {
136
136
  * `packages/natives/native/index.js` (which derives the name from
137
137
  * `package.json#version`).
138
138
  */
139
- export declare function __piNativesV15_7_2(): void
139
+ export declare function __piNativesV15_7_3(): void
140
140
 
141
141
  /**
142
142
  * Apply conservative pre-execution rewrites to a bash command.
package/native/index.js CHANGED
@@ -23,7 +23,7 @@ export const PtySession = nativeBindings.PtySession;
23
23
  export const Shell = nativeBindings.Shell;
24
24
 
25
25
  // functions
26
- export const __piNativesV15_7_2 = nativeBindings.__piNativesV15_7_2;
26
+ export const __piNativesV15_7_3 = nativeBindings.__piNativesV15_7_3;
27
27
  export const applyBashFixups = nativeBindings.applyBashFixups;
28
28
  export const astEdit = nativeBindings.astEdit;
29
29
  export const astGrep = nativeBindings.astGrep;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-natives",
3
- "version": "15.7.2",
3
+ "version": "15.7.3",
4
4
  "description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
5
5
  "type": "module",
6
6
  "homepage": "https://omp.sh",
@@ -33,7 +33,7 @@
33
33
  "check": "biome check . && bun run check:types",
34
34
  "check:types": "tsgo -p tsconfig.json --noEmit",
35
35
  "lint": "biome lint .",
36
- "test": "bun test",
36
+ "test": "bun test --parallel",
37
37
  "fix": "biome check --write --unsafe .",
38
38
  "fmt": "biome format --write .",
39
39
  "embed:native": "bun scripts/embed-native.ts",
@@ -66,10 +66,10 @@
66
66
  }
67
67
  },
68
68
  "optionalDependencies": {
69
- "@oh-my-pi/pi-natives-linux-x64": "15.7.2",
70
- "@oh-my-pi/pi-natives-linux-arm64": "15.7.2",
71
- "@oh-my-pi/pi-natives-darwin-x64": "15.7.2",
72
- "@oh-my-pi/pi-natives-darwin-arm64": "15.7.2",
73
- "@oh-my-pi/pi-natives-win32-x64": "15.7.2"
69
+ "@oh-my-pi/pi-natives-linux-x64": "15.7.3",
70
+ "@oh-my-pi/pi-natives-linux-arm64": "15.7.3",
71
+ "@oh-my-pi/pi-natives-darwin-x64": "15.7.3",
72
+ "@oh-my-pi/pi-natives-darwin-arm64": "15.7.3",
73
+ "@oh-my-pi/pi-natives-win32-x64": "15.7.3"
74
74
  }
75
75
  }