betterdisplaycli 0.1.0 → 0.1.1

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.
@@ -9,6 +9,7 @@ jobs:
9
9
  steps:
10
10
  - uses: actions/checkout@v4
11
11
  - uses: oven-sh/setup-bun@v2
12
- - run: brew install bettterdisplay
12
+ - run: brew install betterdisplay
13
+ - run: open -a /Applications/BetterDisplay.app
13
14
  - run: make lint
14
15
  - run: make test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "betterdisplaycli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript bindings for `betterdisplaycli`.",
5
5
  "author": "Lucas Garron <code@garron.net>",
6
6
  "exports": {
package/src/get.ts CHANGED
@@ -36,7 +36,7 @@ export async function getAllDevices(options?: {
36
36
  });
37
37
  }
38
38
 
39
- export async function connectAllDevices(): Promise<void> {
39
+ export async function connectAllDisplays(): Promise<void> {
40
40
  await new PrintableShellCommand("betterdisplaycli", [
41
41
  ["perform", "--connectAllDisplays"],
42
42
  ])
package/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export * from "./Device";
2
- export { connectAllDevices, getAllDevices } from "./get";
2
+ export { connectAllDisplays as connectAllDevices, getAllDevices } from "./get";