Skip to content
Open
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 .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"files.readonlyInclude": {
// auto-generated
"**/.gitignore": true,
"**/aube-lock.yaml": true,
"**/bun.lock": true
},

Expand Down
65 changes: 65 additions & 0 deletions aube-lock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
lockfileVersion: '9.0'

settings:
autoInstallPeers: true
excludeLinksFromLockfile: false

importers:

.:
dependencies:
typescript:
specifier: ^6.0.0
version: 6.0.3
devDependencies:
'@risu729/tsconfigs':
specifier: 3.0.0
version: 3.0.0(typescript@6.0.3)
'@types/bun':
specifier: 1.3.14
version: 1.3.14
Comment thread
risu729 marked this conversation as resolved.

packages:

'@risu729/tsconfigs@3.0.0':
resolution: {integrity: sha512-FAYLBHC4KQ9TPSksm2Q8blZPSI08bedKOEE9dMbhbcQmj1I54ZPzqz4i8gqINQubcp4gkLE8kFeX5ZXudVl/9Q==}
peerDependencies:
typescript: ^6.0.0

'@types/bun@1.3.14':
resolution: {integrity: sha512-h1hFqFVcvAvD9j9K7ZW7vd82aSA+rTdznZa+5bwvCwqSB1jmmfLcbIWhOLx1/+boy/xmjgCs/OMUL8hRJSmnPw==}

'@types/node@25.8.0':
resolution: {integrity: sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==}

bun-types@1.3.14:
resolution: {integrity: sha512-4N0ig0fEomHt5R0KCFWjovxow98rIoRwKolrYdCcknNwMekCXRnWEUvgu5soYV8QXtVsrUD8B95MBOZGPvr6KQ==}

typescript@6.0.3:
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
hasBin: true

undici-types@7.24.6:
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}

snapshots:

'@risu729/tsconfigs@3.0.0(typescript@6.0.3)':
dependencies:
typescript: 6.0.3

'@types/bun@1.3.14':
dependencies:
bun-types: 1.3.14

'@types/node@25.8.0':
dependencies:
undici-types: 7.24.6

bun-types@1.3.14:
dependencies:
'@types/node': 25.8.0

typescript@6.0.3: {}

undici-types@7.24.6: {}
26 changes: 0 additions & 26 deletions bun.lock

This file was deleted.

5 changes: 0 additions & 5 deletions bunfig.toml

This file was deleted.

2 changes: 1 addition & 1 deletion lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exclude_path = [
".lycheecache", # ignore autogenerated files
".gitignore",
"wsl/home/.config/git/.gitignore",
"bun.lock",
"aube-lock.yaml",
"worker/bun.lock",
# ignore binaries
"win/powertoys",
Expand Down
10 changes: 7 additions & 3 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ experimental = true
[settings.npm]
package_manager = "aube"

[deps.bun]
[deps.aube]
auto = true
sources = ["package.json", "bun.lock"]
sources = ["package.json", "aube-lock.yaml"]
outputs = ["node_modules"]
run = "bun install --frozen-lockfile"
run = """
if [ "${DOTFILES_SKIP_ROOT_AUBE_INSTALL:-}" != "1" ]; then
aube install --frozen-lockfile
fi
"""

[deps.bun-worker]
auto = true
Expand Down
2 changes: 2 additions & 0 deletions worker/docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,7 @@ echo "==> Successfully sparse-cloned and checked out commit ${GIT_COMMIT_SHA}."
sed --in-place '/^min_version/d' mise.toml
echo "==> Removed min_version from mise.toml."

# Worker preview should only install worker dependencies with Bun.
export DOTFILES_SKIP_ROOT_AUBE_INSTALL=1
# --host required to be accessible from other containers
exec /bin/bash -c "mise run worker:preview --host"
Loading