Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jemc committed May 8, 2024
1 parent de95745 commit f7f14ca
Show file tree
Hide file tree
Showing 7 changed files with 4,964 additions and 2,153 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: pnpm install --frozen-lockfile
- run: pnpm run test
- run: pnpm run build
# - run: pnpm run -r release
# env:
# GITHUB_TOKEN: ${{ github.token }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm run -r release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.17.1
nodejs 20.13.0
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"test": "pnpm turbo test",
"check": "pnpm turbo check",
"lint": "pnpm turbo lint",
"format": "pnpm turbo format"
"format": "pnpm turbo format",
"release": "pnpm run -r --workspace-concurrency 1 release --"
}
}
9 changes: 8 additions & 1 deletion packages/kurt-open-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
"prepack": "pnpm run build",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --apply .",
"check": "pnpm biome check ."
"check": "pnpm biome check .",
"release": "pnpm exec semantic-release"
},
"release": {
"branches": ["main"],
"extends": "semantic-release-monorepo"
},
"dependencies": {
"@formula-monks/kurt": "workspace:^",
Expand All @@ -24,6 +29,8 @@
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.32",
"jest": "^29.7.0",
"semantic-release": "^23.0.8",
"semantic-release-monorepo": "^8.0.2",
"ts-jest": "^29.1.2",
"type-fest": "^4.18.1",
"typescript": "^5.4.5"
Expand Down
9 changes: 8 additions & 1 deletion packages/kurt-vertex-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
"prepack": "pnpm run build",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --apply .",
"check": "pnpm biome check ."
"check": "pnpm biome check .",
"release": "pnpm exec semantic-release"
},
"release": {
"branches": ["main"],
"extends": "semantic-release-monorepo"
},
"dependencies": {
"@formula-monks/kurt": "workspace:^",
Expand All @@ -24,6 +29,8 @@
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.32",
"jest": "^29.7.0",
"semantic-release": "^23.0.8",
"semantic-release-monorepo": "^8.0.2",
"ts-jest": "^29.1.2",
"type-fest": "^4.18.1",
"typescript": "^5.4.5"
Expand Down
9 changes: 8 additions & 1 deletion packages/kurt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@
"prepack": "pnpm run build",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --apply .",
"check": "pnpm biome check ."
"check": "pnpm biome check .",
"release": "pnpm exec semantic-release"
},
"release": {
"branches": ["main"],
"extends": "semantic-release-monorepo"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.32",
"czg": "^1.9.1",
"jest": "^29.7.0",
"semantic-release": "^23.0.8",
"semantic-release-monorepo": "^8.0.2",
"ts-jest": "^29.1.2",
"type-fest": "^4.18.1",
"typescript": "^5.4.5",
Expand Down
Loading

0 comments on commit f7f14ca

Please sign in to comment.