flightdeck 0.0.8 → 0.0.9

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.
@@ -2,23 +2,23 @@
2
2
 
3
3
  // src/flightdeck.bin.ts
4
4
  import * as path from "node:path";
5
- import {cli, optional} from "comline";
6
- import {z} from "zod";
5
+ import { cli, optional } from "comline";
6
+ import { z } from "zod";
7
7
 
8
8
  // src/flightdeck.lib.ts
9
- import {execSync, spawn} from "node:child_process";
9
+ import { execSync, spawn } from "node:child_process";
10
10
  import {
11
- existsSync,
12
- mkdirSync,
13
- rmSync,
14
- writeFileSync
11
+ existsSync,
12
+ mkdirSync,
13
+ rmSync,
14
+ writeFileSync
15
15
  } from "node:fs";
16
- import {createServer} from "node:http";
17
- import {homedir} from "node:os";
18
- import {resolve} from "node:path";
19
- import {Future} from "atom.io/internal";
20
- import {fromEntries, toEntries} from "atom.io/json";
21
- import {ChildSocket} from "atom.io/realtime-server";
16
+ import { createServer } from "node:http";
17
+ import { homedir } from "node:os";
18
+ import { resolve } from "node:path";
19
+ import { Future } from "atom.io/internal";
20
+ import { fromEntries, toEntries } from "atom.io/json";
21
+ import { ChildSocket } from "atom.io/realtime-server";
22
22
  var PORT = process.env.PORT ?? 8080;
23
23
  var ORIGIN = `http://localhost:${PORT}`;
24
24
 
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/klaxon.bin.ts
4
- import {cli, required} from "comline";
5
- import {z} from "zod";
4
+ import { cli, required } from "comline";
5
+ import { z } from "zod";
6
6
 
7
7
  // src/klaxon.lib.ts
8
8
  async function alert({
package/dist/lib.js CHANGED
@@ -10,19 +10,19 @@ var __export = (target, all) => {
10
10
  };
11
11
 
12
12
  // src/flightdeck.lib.ts
13
- import {execSync, spawn} from "node:child_process";
13
+ import { execSync, spawn } from "node:child_process";
14
14
  import {
15
- existsSync,
16
- mkdirSync,
17
- rmSync,
18
- writeFileSync
15
+ existsSync,
16
+ mkdirSync,
17
+ rmSync,
18
+ writeFileSync
19
19
  } from "node:fs";
20
- import {createServer} from "node:http";
21
- import {homedir} from "node:os";
22
- import {resolve} from "node:path";
23
- import {Future} from "atom.io/internal";
24
- import {fromEntries, toEntries} from "atom.io/json";
25
- import {ChildSocket} from "atom.io/realtime-server";
20
+ import { createServer } from "node:http";
21
+ import { homedir } from "node:os";
22
+ import { resolve } from "node:path";
23
+ import { Future } from "atom.io/internal";
24
+ import { fromEntries, toEntries } from "atom.io/json";
25
+ import { ChildSocket } from "atom.io/realtime-server";
26
26
  var PORT = process.env.PORT ?? 8080;
27
27
  var ORIGIN = `http://localhost:${PORT}`;
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flightdeck",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Jeremy Banka",
@@ -22,17 +22,17 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "zod": "3.23.8",
25
- "atom.io": "0.29.3",
25
+ "atom.io": "0.29.4",
26
26
  "comline": "0.1.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@types/bun": "1.1.9",
30
29
  "@types/node": "20.16.5",
31
30
  "@types/tmp": "0.2.6",
31
+ "bun-types": "1.1.29",
32
32
  "concurrently": "9.0.1",
33
+ "rimraf": "6.0.1",
33
34
  "tmp": "0.2.3",
34
35
  "tsup": "8.3.0",
35
- "rimraf": "6.0.1",
36
36
  "vitest": "2.1.1"
37
37
  },
38
38
  "scripts": {
@@ -49,6 +49,7 @@
49
49
  "lint": "bun run lint:biome && bun run lint:eslint && bun run lint:types",
50
50
  "test": "vitest",
51
51
  "test:once": "vitest run",
52
- "test:coverage": "echo no test coverage yet"
52
+ "test:coverage": "echo no test coverage yet",
53
+ "postversion": "biome format --write package.json"
53
54
  }
54
55
  }