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
6 changes: 6 additions & 0 deletions .changeset/bump-version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@prover-coder-ai/docker-git": patch
"@spawn-dock/cli": patch
---

chore: automated bump to trigger release using new NPM_KEY
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
skip_if_unchanged: true
cancel_on_no_changes: true

release-spawndock-cli:
release-spawndock-runtime:
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
Expand All @@ -41,8 +41,8 @@ jobs:
npm_token: ${{ secrets.NPM_KEY }}
ref: ${{ github.event.workflow_run.head_sha }}
branch: ${{ github.event.workflow_run.head_branch }}
package_json_path: packages/spawndock-cli/package.json
pnpm_filter: ./packages/spawndock-cli
package_json_path: packages/spawndock-runtime/package.json
pnpm_filter: ./packages/spawndock-runtime
bump_type: patch
publish_npm: true
publish_github_packages: true
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"packages/api",
"packages/app",
"packages/lib",
"packages/spawndock-cli"
"packages/spawndock-runtime"
],
"scripts": {
"setup:pre-commit-hook": "node scripts/setup-pre-commit-hook.js",
"build": "pnpm --filter ./packages/app build && pnpm --filter ./packages/spawndock-cli build",
"build": "pnpm --filter ./packages/app build && pnpm --filter ./packages/spawndock-runtime build",
"api:build": "pnpm --filter ./packages/api build",
"api:start": "pnpm --filter ./packages/api start",
"api:dev": "pnpm --filter ./packages/api dev",
"api:test": "pnpm --filter ./packages/api test",
"api:typecheck": "pnpm --filter ./packages/api typecheck",
"check": "pnpm --filter ./packages/app check && pnpm --filter ./packages/lib typecheck && pnpm --filter ./packages/spawndock-cli typecheck",
"check": "pnpm --filter ./packages/app check && pnpm --filter ./packages/lib typecheck && pnpm --filter ./packages/spawndock-runtime typecheck",
"changeset": "changeset",
"changeset-publish": "node -e \"if (!process.env.NPM_KEY) { console.log('Skipping publish: NPM_KEY is not set'); process.exit(0); }\" && changeset publish",
"changeset-version": "changeset version",
Expand All @@ -34,8 +34,8 @@
"lint": "pnpm --filter ./packages/app lint && pnpm --filter ./packages/lib lint",
"lint:tests": "pnpm --filter ./packages/app lint:tests",
"lint:effect": "pnpm --filter ./packages/app lint:effect && pnpm --filter ./packages/lib lint:effect",
"test": "pnpm --filter ./packages/app test && pnpm --filter ./packages/lib test && pnpm --filter ./packages/spawndock-cli test",
"typecheck": "pnpm --filter ./packages/app typecheck && pnpm --filter ./packages/lib typecheck && pnpm --filter ./packages/spawndock-cli typecheck",
"test": "pnpm --filter ./packages/app test && pnpm --filter ./packages/lib test && pnpm --filter ./packages/spawndock-runtime test",
"typecheck": "pnpm --filter ./packages/app typecheck && pnpm --filter ./packages/lib typecheck && pnpm --filter ./packages/spawndock-runtime typecheck",
"start": "pnpm --filter ./packages/app start"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@prover-coder-ai/docker-git",
"version": "1.0.68",
"name": "@spawn-dock/cli",
"version": "1.0.69",
"description": "Minimal Vite-powered TypeScript console starter using Effect",
"main": "dist/src/docker-git/main.js",
"bin": {
"docker-git": "dist/src/docker-git/main.js"
"spawn-dock": "dist/src/docker-git/main.js"
},
"files": [
"dist"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spawn-dock/cli",
"version": "1.0.0",
"name": "@spawn-dock/runtime",
"version": "1.0.1",
"private": false,
"description": "Minimal SpawnDock runtime launcher for bootstrapped TMA projects",
"type": "module",
Expand All @@ -10,7 +10,7 @@
"README.md"
],
"bin": {
"spawn-dock": "dist/src/main.js"
"spawn-dock-runtime": "dist/src/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/src/main.js",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ packages:
- packages/api
- packages/app
- packages/lib
- packages/spawndock-cli
- packages/spawndock-runtime
Loading