@pipelab/shared 1.0.0-beta.22 → 1.0.0-beta.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/shared",
3
- "version": "1.0.0-beta.22",
3
+ "version": "1.0.0-beta.26",
4
4
  "private": false,
5
5
  "description": "Shared logic and types for the Pipelab ecosystem",
6
6
  "license": "FSL-1.1-MIT",
@@ -37,15 +37,15 @@
37
37
  "tslog": "4.9.3",
38
38
  "type-fest": "4.26.1",
39
39
  "valibot": "0.42.1",
40
- "@pipelab/constants": "1.0.0-beta.23",
41
- "@pipelab/migration": "1.0.0-beta.21"
40
+ "@pipelab/constants": "1.0.0-beta.27",
41
+ "@pipelab/migration": "1.0.0-beta.25"
42
42
  },
43
43
  "devDependencies": {
44
44
  "esbuild-plugin-wasm": "1.1.0",
45
45
  "tsdown": "0.21.2",
46
46
  "typescript": "5.9.3",
47
47
  "vitest": "3.1.4",
48
- "@pipelab/tsconfig": "1.0.0-beta.21"
48
+ "@pipelab/tsconfig": "1.0.0-beta.25"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "tsdown",
package/src/apis.ts CHANGED
@@ -223,6 +223,7 @@ export type IpcDefinition = {
223
223
  EndEvent<{ data: any | null; error: any | null }>,
224
224
  ];
225
225
  "agent:version:get": [void, EndEvent<{ version: string; channel: ReleaseChannel }>];
226
+ "system:packages:cleanup": [void, EndEvent<boolean>];
226
227
  "startup:progress": [
227
228
  void,
228
229
  { type: "progress"; data: { message: string } } | { type: "ready" } | { type: "done" },
package/tsconfig.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "outDir": "dist",
6
6
  "baseUrl": "."
7
7
  },
8
- "include": ["src/**/*", "tests/**/*", "*.ts", "src/**/*.json"],
8
+ "include": ["src/**/*", "src/**/*.json"],
9
9
  "exclude": ["node_modules", "dist"],
10
10
  "references": [{ "path": "../migration" }]
11
11
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "composite": false,
5
+ "noEmit": true
6
+ },
7
+ "include": ["src/**/*", "tests/**/*", "*.ts"]
8
+ }
@@ -0,0 +1,12 @@
1
+ import { defineConfig } from "tsdown";
2
+
3
+ export default defineConfig({
4
+ entry: ["src/index.ts"],
5
+ format: ["esm", "cjs"],
6
+ dts: {
7
+ tsconfigRaw: {
8
+ references: [],
9
+ },
10
+ },
11
+ clean: true,
12
+ });