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
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
with:
shared-key: autofix
- uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4
- run: mise x -- bun i
- run: mise x -- aube install
- run: "mise run render ::: lint-fix"
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 # v1.3.3
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
name: hk-${{ matrix.os }}
path: target/debug
- run: chmod +x target/debug/hk
- run: mise x -- bun i
- run: mise x -- aube install
- name: mise run test:bats:libgit2
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4
with:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
name: hk-${{ matrix.os }}
path: target/debug
- run: chmod +x target/debug/hk
- run: mise x -- bun i
- run: mise x -- aube install
- name: mise run test:bats:nolibgit2
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4
with:
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
name: hk-${{ matrix.os }}
path: target/debug
- run: chmod +x target/debug/hk
- run: mise x -- bun i
- run: mise x -- aube install
- name: mise run test:bats:nogit
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4
with:
Expand All @@ -179,7 +179,7 @@ jobs:
submodules: recursive
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4
- run: mise x -- bun i
- run: mise x -- aube install
- name: mise run test:cargo
run: mise run test:cargo
- name: mise run lint
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/target
/tmp
.aube/
node_modules
.aider*
.pkl-lsp
Expand Down
1,861 changes: 1,861 additions & 0 deletions aube-lock.yaml

Large diffs are not rendered by default.

548 changes: 0 additions & 548 deletions bun.lock

This file was deleted.

1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export default defineConfig({
{ text: 'Getting Started', link: '/getting_started' },
{ text: 'Configuration', link: '/configuration' },
{ text: 'CLI Reference', link: '/cli/' },
{ text: 'Releases', link: 'https://github.com/jdx/hk/releases' },
],
sidebar: [
{ text: 'About', link: '/about' },
Expand Down
1,879 changes: 1,879 additions & 0 deletions docs/aube-lock.yaml

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,21 @@
"devDependencies": {
"globals": "^17.0.0",
"typescript-eslint": "^8.24.1"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"current",
"x64"
],
"libc": [
"current",
"glibc"
]
}
}
}
2 changes: 1 addition & 1 deletion hk.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local linters = new Mapping<String, Step | Group> {
}
["eslint"] = (Builtins.eslint) {
dir = "docs"
prefix = "bun run"
prefix = "aube run"
}
["newlines"] = Builtins.newlines
["trailing-whitespace"] = Builtins.trailing_whitespace
Expand Down
2 changes: 1 addition & 1 deletion mise-tasks/docs/_default
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

set -eu

bun i && bun run docs:dev
aube install && aube run docs:dev
2 changes: 1 addition & 1 deletion mise-tasks/docs/build
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

set -eu

bun i && bun run docs:build
aube install && aube run docs:build
54 changes: 54 additions & 0 deletions mise.lock

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

2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ _.path = ["test/bats/bin", "{{ env.CARGO_TARGET_DIR | default(value='target') }}

[tools]
actionlint = "latest"
bun = "latest"
aube = "latest"
cargo-binstall = "latest"
"cargo:cargo-edit" = "latest"
"cargo:cargo-msrv" = "latest"
Expand Down
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,21 @@
},
"devDependencies": {
"globals": "^17.0.0"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"current",
"x64"
],
"libc": [
"current",
"glibc"
]
}
}
}
2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages:
- docs
Loading