Skip to content

Commit

Permalink
use v20
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Jul 12, 2024
1 parent 4883fd9 commit af00f1f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ justfile
**/tests
demo/

####
#### This must match .gitignore ####
####

.DS_Store
target/
**/*.rs.bk
Expand All @@ -28,3 +31,7 @@ tmp/

**/node_modules/
**/dist/

####
#### Above content must match .gitignore ####
####
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
####
#### This must match .dockerignore ####
####

.DS_Store
target/
**/*.rs.bk
Expand All @@ -16,3 +19,7 @@ tmp/

**/node_modules/
**/dist/

####
#### Above content must match .dockerignore ####
####
5 changes: 2 additions & 3 deletions Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
pre-build = [
# install nodejs and npm to compile static web resources
# note that architecture could be the same as the container, not $CROSS_DEB_ARCH
"curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh",
"bash nodesource_setup.sh",
"apt-get install -y nodejs",
"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash",
"nvm install 20",
"node -v",
]

0 comments on commit af00f1f

Please sign in to comment.