mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 19:08:05 +08:00
* Upgrade TypeScript, ESLint, and other dependencies This also cleans up various other files where newer ESLint rules complained * Set CI and CD to use Node.js version 16 * Small tweak * Fix CD version printing * Add nvm version for Cloudflare Pages
22 lines
394 B
Bash
22 lines
394 B
Bash
#!/bin/sh
|
|
|
|
echo 🔧 Install Rust
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
export PATH=$PATH:/opt/buildhome/.cargo/bin
|
|
echo rustc version:
|
|
rustc --version
|
|
|
|
echo 🚧 Install Node dependencies
|
|
echo node version:
|
|
node --version
|
|
echo npm version:
|
|
npm --version
|
|
cd frontend
|
|
npm install
|
|
|
|
echo 📦 Install cargo-about
|
|
cargo install cargo-about
|
|
|
|
echo 👷 Build Graphite web client
|
|
npm run build
|