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
9 changes: 9 additions & 0 deletions .changeset/bumpy-moles-listen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@vlandoss/localproxy": patch
"@vlandoss/clibuddy": patch
"@vlandoss/run-run": patch
"@vlandoss/starter": patch
"@vlandoss/loggy": patch
---

Add test:types script
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: ⌛ Setup CI
uses: variableland/gh-actions/actions/setup-pnpm-bun@main
uses: variableland/gh-actions/actions/setup-pnpm-bun@dev

- name: 💅 Test static
run: pnpm rr check tsc
Expand All @@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v4

- name: ⌛ Setup CI
uses: variableland/gh-actions/actions/setup-pnpm-bun@main
uses: variableland/gh-actions/actions/setup-pnpm-bun@dev

- name: 🚀 Create release PR or publish versions
uses: changesets/action@v1
Expand All @@ -68,9 +68,9 @@ jobs:
uses: actions/checkout@v4

- name: ⌛ Setup CI
uses: variableland/gh-actions/actions/setup-pnpm-bun@main
uses: variableland/gh-actions/actions/setup-pnpm-bun@dev

- name: 🚀 Preview release
uses: variableland/gh-actions/actions/monorepo-preview-release@main
uses: variableland/gh-actions/actions/monorepo-preview-release@dev
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ This monorepo uses [Turborepo](https://turbo.build/repo/docs) to manage tasks. H

- `pnpm build` - Build all packages
- `pnpm test` - Run tests for all packages
- `pnpm test:coverage` - Run tests with coverage for all packages

Additionally, the monorepo itself uses the CLIs [`run-run`](./packages/run-run/README.md) and [`starter`](./packages/starter/README.md):

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:coverage": "turbo test:coverage"
"test:types": "turbo test:types"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/clibuddy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"src"
],
"scripts": {
"prepublishOnly": "pnpm build"
"test:types": "rr tsc"
},
"dependencies": {
"@pnpm/workspace.find-packages": "^1000.0.62",
Expand Down
3 changes: 2 additions & 1 deletion packages/localproxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"tsconfig.json"
],
"scripts": {
"test": "bun test"
"test": "bun test",
"test:types": "rr tsc"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/loggy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"src"
],
"scripts": {
"prepublishOnly": "pnpm build"
"test:types": "rr tsc"
},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions packages/run-run/bin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bun
import { main } from "./src/main";

// Add test comment
main({
binDir: __dirname,
});
3 changes: 2 additions & 1 deletion packages/run-run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"tsconfig.json"
],
"scripts": {
"test": "bun test"
"test": "bun test",
"test:types": "rr tsc"
},
"dependencies": {
"@biomejs/biome": "2.1.4",
Expand Down
3 changes: 3 additions & 0 deletions packages/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"plopfiles",
"tsconfig.json"
],
"scripts": {
"test:types": "rr tsc"
},
"dependencies": {
"@vlandoss/clibuddy": "workspace:*",
"@vlandoss/loggy": "workspace:*",
Expand Down
8 changes: 2 additions & 6 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@
"outputs": ["dist/**"]
},
"test": {
"persistent": true,
"cache": false
"dependsOn": ["^test"]
},
"test:coverage": {
"persistent": true,
"cache": false
}
"test:types": {}
}
}