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
1 change: 1 addition & 0 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissions:
id-token: write
jobs:
deploy:
name: Deploy Documentation
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Publish to NPM
working-directory: packages/pgconductor-js
run: bun publish --tag latest --access public --provenance
run: bun publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
8 changes: 8 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,12 @@ ready:
docs:
uv run zensical serve

clear-branches:
git branch --merged | egrep -v "(^\\*|main)" | xargs git branch -d

reset-git:
git checkout main
git pull
just clear-branches


3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "pgconductor",
"type": "module",
"workspaces": ["packages/pgconductor-js"],
"scripts": {
"perf": "bun packages/pgconductor-js/perf/run.ts"
},
"catalog": {
"postgres": "3.4.7",
"prettier": "3.4.2",
Expand Down
8 changes: 7 additions & 1 deletion packages/pgconductor-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@
],
"author": "psteinroe",
"license": "MIT",
"publishConfig": {
"access": "public",
"tag": "latest",
"provenance": true
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node && bun build cli/index.ts --outdir dist/cli --target node",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"perf": "bun perf/run.ts"
},
"devDependencies": {
"@testcontainers/postgresql": "catalog:",
Expand Down