Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions packages/plugin-api/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 2 additions & 4 deletions packages/plugin-kubectl/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 1 addition & 3 deletions packages/repterm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down