-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update metacubexd * Update gomobile * Update dun * Update node.js * build(deps): bump actions/cache from 3 to 4 * build(deps): bump com.squareup.okhttp3:okhttp * Bumps [com.blacksquircle.ui:language-json](https://github.com/massivemadness/EditorKit) from 2.6.0 to 2.9.0. build(deps): bump com.github.jenly1314:zxing-lite from 2.1.1 to 2.4.0 build(deps): bump org.jetbrains.kotlinx:kotlinx-coroutines-android build(deps): bump com.google.devtools.ksp Co-authored-by: HystericalDragon <HystericalDragons@proton.me>
- Loading branch information
1 parent
4359576
commit 42234f0
Showing
9 changed files
with
95 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
curl -Lo node.tar.gz https://nodejs.org/dist/latest/node-v21.5.0-linux-x64.tar.gz | ||
#!/bin/bash | ||
|
||
echo "6e61f81fe1759892fb1f84f62fe470c8d4d6dfc07969af5700f06b4672a9e8d3 node.tar.gz" | sha256sum -c - | ||
set -e | ||
|
||
tar xzf node.tar.gz --strip-components=1 -C /usr/local/ | ||
cd $PWD/build | ||
|
||
rm node.tar.gz | ||
curl -Lo node.tar.xz https://nodejs.org/dist/latest/node-v21.6.0-linux-x64.tar.xz | ||
|
||
echo "d940589762748bdbfc1a39132d27a16455b9d283ac3d8a84c3415005269effe4 node.tar.xz" | sha256sum -c - | ||
|
||
rm -rf node | ||
mkdir -p node | ||
tar xf node.tar.xz --strip-components=1 -C node | ||
|
||
rm node.tar.xz | ||
|
||
npm install -g pnpm | ||
|
||
node -v | ||
npm -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters