@gajae-code/natives 0.10.1 → 0.10.2
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 +2 -1
- package/native/index.js +1 -1
- package/package.json +6 -6
package/native/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare class ComputerController {
|
|
|
12
12
|
keypress(expectedEpoch: number | undefined | null, keys: Array<string>): void
|
|
13
13
|
wait(expectedEpoch: number | undefined | null, ms: number): void
|
|
14
14
|
}
|
|
15
|
+
|
|
15
16
|
/**
|
|
16
17
|
* Long-lived macOS appearance observer.
|
|
17
18
|
*
|
|
@@ -315,7 +316,7 @@ export declare class Shell {
|
|
|
315
316
|
* `packages/natives/native/index.js` (which derives the name from
|
|
316
317
|
* `package.json#version`).
|
|
317
318
|
*/
|
|
318
|
-
export declare function
|
|
319
|
+
export declare function __piNativesV0_10_2(): void
|
|
319
320
|
|
|
320
321
|
/**
|
|
321
322
|
* Apply conservative pre-execution rewrites to a bash command.
|
package/native/index.js
CHANGED
|
@@ -27,7 +27,7 @@ export const PtySession = nativeBindings.PtySession;
|
|
|
27
27
|
export const Shell = nativeBindings.Shell;
|
|
28
28
|
|
|
29
29
|
// functions
|
|
30
|
-
export const
|
|
30
|
+
export const __piNativesV0_10_2 = nativeBindings.__piNativesV0_10_2;
|
|
31
31
|
export const applyBashFixups = nativeBindings.applyBashFixups;
|
|
32
32
|
export const astEdit = nativeBindings.astEdit;
|
|
33
33
|
export const astGrep = nativeBindings.astGrep;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gajae-code/natives",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
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://gajae-code.com",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"README.md"
|
|
62
62
|
],
|
|
63
63
|
"optionalDependencies": {
|
|
64
|
-
"@gajae-code/natives-darwin-arm64": "0.10.
|
|
65
|
-
"@gajae-code/natives-darwin-x64": "0.10.
|
|
66
|
-
"@gajae-code/natives-linux-arm64": "0.10.
|
|
67
|
-
"@gajae-code/natives-linux-x64": "0.10.
|
|
68
|
-
"@gajae-code/natives-win32-x64": "0.10.
|
|
64
|
+
"@gajae-code/natives-darwin-arm64": "0.10.2",
|
|
65
|
+
"@gajae-code/natives-darwin-x64": "0.10.2",
|
|
66
|
+
"@gajae-code/natives-linux-arm64": "0.10.2",
|
|
67
|
+
"@gajae-code/natives-linux-x64": "0.10.2",
|
|
68
|
+
"@gajae-code/natives-win32-x64": "0.10.2"
|
|
69
69
|
},
|
|
70
70
|
"exports": {
|
|
71
71
|
".": {
|