diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8cc5734..205425b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,6 +80,9 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile + - name: Build all packages + run: bun run build + - name: Run tests run: bun run test diff --git a/bun.lock b/bun.lock index 719e078..c6e6ed7 100644 --- a/bun.lock +++ b/bun.lock @@ -43,7 +43,7 @@ }, "packages/plugin-api": { "name": "repterm-api", - "version": "0.1.2", + "version": "0.1.3", "devDependencies": { "typescript": "^5.3.0", }, diff --git a/packages/plugin-api/package.json b/packages/plugin-api/package.json index d4d615a..e457c31 100644 --- a/packages/plugin-api/package.json +++ b/packages/plugin-api/package.json @@ -1,20 +1,18 @@ { "name": "repterm-api", - "version": "0.1.3", + "version": "0.1.4", "description": "Plugin and matcher API for repterm - use this to build repterm plugins without depending on repterm", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { - "bun": "./src/index.ts", "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ - "dist", - "src" + "dist" ], "scripts": { "build": "tsc", diff --git a/packages/plugin-kubectl/package.json b/packages/plugin-kubectl/package.json index 5eba870..5b49378 100644 --- a/packages/plugin-kubectl/package.json +++ b/packages/plugin-kubectl/package.json @@ -1,20 +1,18 @@ { "name": "@nexusgpu/repterm-plugin-kubectl", - "version": "0.1.3", + "version": "0.1.4", "description": "Kubernetes plugin for repterm - provides kubectl testing utilities", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { - "bun": "./src/index.ts", "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ - "dist", - "src" + "dist" ], "scripts": { "build": "tsc", diff --git a/packages/repterm/package.json b/packages/repterm/package.json index eebcbb8..70eb4ea 100644 --- a/packages/repterm/package.json +++ b/packages/repterm/package.json @@ -10,14 +10,12 @@ "types": "./dist/index.d.ts", "exports": { ".": { - "bun": "./src/index.ts", "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ - "dist", - "src" + "dist" ], "scripts": { "build": "tsc",