codify-plugin-lib 1.0.123 → 1.0.125

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.
@@ -1,8 +1,8 @@
1
- import pty from '@homebridge/node-pty-prebuilt-multiarch';
2
1
  import { nanoid } from 'nanoid';
3
2
  import * as cp from 'node:child_process';
4
3
  import { EventEmitter } from 'node:events';
5
4
  import * as fs from 'node:fs/promises';
5
+ import pty from 'node-pty';
6
6
  import stripAnsi from 'strip-ansi';
7
7
  import { debugLog } from '../utils/debug.js';
8
8
  import { SpawnError } from './index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.123",
3
+ "version": "1.0.125",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -16,10 +16,10 @@
16
16
  "ajv-formats": "^2.1.1",
17
17
  "codify-schemas": "1.0.54",
18
18
  "@npmcli/promise-spawn": "^7.0.1",
19
+ "@homebridge/node-pty-prebuilt-multiarch": "^0.12.0-beta.5",
19
20
  "uuid": "^10.0.0",
20
21
  "lodash.isequal": "^4.5.0",
21
22
  "nanoid": "^5.0.9",
22
- "node-pty": "^1.0.0",
23
23
  "strip-ansi": "^7.1.0"
24
24
  },
25
25
  "devDependencies": {
@@ -1,8 +1,8 @@
1
+ import pty from '@homebridge/node-pty-prebuilt-multiarch';
1
2
  import { nanoid } from 'nanoid';
2
3
  import * as cp from 'node:child_process';
3
4
  import { EventEmitter } from 'node:events';
4
5
  import * as fs from 'node:fs/promises';
5
- import pty from 'node-pty';
6
6
  import stripAnsi from 'strip-ansi';
7
7
 
8
8
  import { debugLog } from '../utils/debug.js';