Skip to content

Commit 3f12681

Browse files
authored
Merge pull request #415 from twilson63/fix/deploy-and-deprecations
fix: suppress Sass deprecation warnings and resolve build compilation…
2 parents 6047637 + 179cdc0 commit 3f12681

24 files changed

+10339
-24780
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: ⬇️ Checkout repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: ⎔ Setup Node
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 18.x
19+
node-version: 20.x
2020
- name: 📥 Download deps
21-
run: yarn
21+
run: npm ci
2222
- name: 🛠 Build Docs
2323
id: build_artifacts
2424
run: |
25-
yarn build
25+
npm run build
2626
2727
echo "artifacts_output_dir=src/.vuepress/dist" >> $GITHUB_OUTPUT
2828
env:

.yarnrc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ You need to have Node v16 installed. You can get the latest version at https://n
4040
From the root directory, run:
4141

4242
```sh
43-
yarn
44-
yarn dev
43+
npm install
44+
npm run dev
4545
```
4646

4747
which will install all relevant dependencies and start the local development server.
@@ -85,5 +85,5 @@ Happy Cooking!
8585
```sh
8686
touch wallet.json
8787
# add wallet info
88-
yarn deploy
88+
npm run deploy
8989
```

deploy.mjs

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)