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
6 changes: 3 additions & 3 deletions .devspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ name = "mint"
gui = true

init = """
apk add --update --no-cache nodejs yarn \
imagemagick bash pngcrush optipng git \
apk add --update --no-cache \
imagemagick bash pngcrush optipng git unzip \
less openssh chromium nss ca-certificates ttf-freefont
curl -fsSL https://bun.com/install | bash
"""

3 changes: 1 addition & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
crystal 1.19.1
mint 0.20.0
nodejs 20.10.0
yarn 1.22.19
bun 1.3.13
8 changes: 4 additions & 4 deletions runtime/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: index
index:
yarn esbuild index.js \
bunx esbuild index.js \
--outfile=../src/assets/runtime.js \
--log-override:equals-nan=silent \
--format=esm \
Expand All @@ -9,7 +9,7 @@ index:

.PHONY: index_testing
index_testing:
yarn esbuild index_testing.js \
bunx esbuild index_testing.js \
--outfile=../src/assets/runtime_test.js \
--log-override:equals-nan=silent \
--format=esm \
Expand All @@ -18,8 +18,8 @@ index_testing:

.PHONY: format
format:
yarn prettier --write *.js **/*.js
bunx prettier --write *.js **/*.js

.PHONY: test
test:
yarn vitest --coverage
bunx vitest --coverage
Loading