Skip to content

Commit be170fe

Browse files
committed
Merge branch 'main' into cozmin/op-dotnet
2 parents 49c9fe1 + 62354db commit be170fe

29 files changed

Lines changed: 746 additions & 344 deletions

β€Ž.github/workflows/deploy_gcs.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout your repository using git
22-
uses: actions/checkout@v3
23-
- uses: actions/setup-node@v3
22+
uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
2424
with:
25-
node-version: 18
25+
node-version: 22
2626

2727
- name: Authenticate to Google Cloud
2828
uses: google-github-actions/auth@v2

β€Ž.github/workflows/test-build.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout your repository using git
19-
uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
19+
uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: 22
2323

2424
- uses: oven-sh/setup-bun@v1
2525
- name: Install dependencies

β€Ž.nvmrcβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/iron
1+
22

β€Žastro.config.mjsβ€Ž

Lines changed: 6 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import starlightLinksValidator from 'starlight-links-validator'
44
import starlightFullViewMode from 'starlight-fullview-mode'
55

66
import mdx from '@astrojs/mdx'
7+
import { PUBLISHED_RFC_SIDEBAR_ITEMS } from './src/data/rfcs.ts'
78

89
// https://astro.build/config
910
export default defineConfig({
@@ -23,7 +24,10 @@ export default defineConfig({
2324
starlightLinksValidator({
2425
exclude: ['/participation-guidelines']
2526
}),
26-
starlightFullViewMode({ leftSidebarEnabled: false })
27+
starlightFullViewMode({
28+
leftSidebarEnabled: true,
29+
rightSidebarEnabled: true
30+
})
2731
],
2832
head: [
2933
{
@@ -73,50 +77,7 @@ export default defineConfig({
7377
{
7478
label: 'Specifications',
7579
items: [
76-
{
77-
label: 'Interledger Protocol V4 (ILPv4)',
78-
link: '/rfcs/interledger-protocol'
79-
},
80-
{
81-
label: 'Interledger Architecture',
82-
link: '/rfcs/interledger-architecture'
83-
},
84-
{
85-
label: 'Interledger Addresses',
86-
link: '/rfcs/ilp-addresses'
87-
},
88-
{
89-
label: 'STREAM Protocol',
90-
link: '/rfcs/stream-protocol'
91-
},
92-
{
93-
label: 'Simple Payment Setup Protocol (SPSP)',
94-
link: '/rfcs/simple-payment-setup-protocol'
95-
},
96-
{
97-
label: 'Peering, Clearing and Settling',
98-
link: '/rfcs/peering-clearing-settling'
99-
},
100-
{
101-
label: 'Settlement Engines',
102-
link: '/rfcs/settlement-engines'
103-
},
104-
{
105-
label: 'ILP Over HTTP',
106-
link: '/rfcs/ilp-over-http'
107-
},
108-
{
109-
label: 'Bilateral Transfer Protocol',
110-
link: '/rfcs/bilateral-transfer-protocol'
111-
},
112-
{
113-
label: 'Dynamic Configuration Protocol',
114-
link: '/rfcs/dynamic-configuration-protocol'
115-
},
116-
{
117-
label: 'Hashed-Timelock Agreements',
118-
link: '/rfcs/hashed-timelock-agreements'
119-
},
80+
...PUBLISHED_RFC_SIDEBAR_ITEMS,
12081
{
12182
label: 'Payment Pointers',
12283
link: 'https://paymentpointers.org',

β€Žbun.lockβ€Ž

Lines changed: 220 additions & 254 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.jsonβ€Ž

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@
1111
"lint": "prettier --check '**/*.{js,mjs,ts,tsx,json,md,mdx,astro}' && eslint --max-warnings=0 ."
1212
},
1313
"dependencies": {
14-
"@astrojs/mdx": "^4.3.13",
15-
"@astrojs/node": "^9.5.2",
16-
"@astrojs/starlight": "^0.37.4",
17-
"@interledger/docs-design-system": "^0.11.0",
14+
"@astrojs/mdx": "^5.0.3",
15+
"@astrojs/node": "^10.0.5",
16+
"@astrojs/starlight": "^0.38.3",
17+
"@interledger/docs-design-system": "^0.12.0",
1818
"@types/showdown": "^2.0.6",
19-
"astro": "^5.17.1",
19+
"astro": "^6.1.8",
2020
"html-to-text": "^9.0.5",
21-
"markdown-it": "^14.1.0",
22-
"node-html-parser": "^7.0.2",
21+
"markdown-it": "^14.1.1",
22+
"node-html-parser": "^7.1.0",
2323
"sharp": "^0.34.5",
2424
"showdown": "^2.1.0",
2525
"starlight-fullview-mode": "^0.2.6",
26-
"starlight-links-validator": "^0.19.1"
26+
"starlight-links-validator": "^0.23.0"
2727
},
2828
"devDependencies": {
29-
"@eslint/js": "^9.39.2",
30-
"@typescript-eslint/parser": "^8.54.0",
31-
"astro-eslint-parser": "^1.2.2",
32-
"eslint": "^9.39.2",
29+
"@eslint/js": "^10.0.1",
30+
"@typescript-eslint/parser": "^8.59.0",
31+
"astro-eslint-parser": "^1.4.0",
32+
"eslint": "^10.2.1",
3333
"eslint-config-prettier": "^10.1.8",
34-
"eslint-plugin-astro": "^1.5.0",
35-
"globals": "^17.2.0",
36-
"prettier": "3.8.1",
37-
"prettier-plugin-astro": "0.14.1",
38-
"typescript-eslint": "^8.54.0"
34+
"eslint-plugin-astro": "^1.7.0",
35+
"globals": "^17.5.0",
36+
"prettier": "^3.8.3",
37+
"prettier-plugin-astro": "^0.14.1",
38+
"typescript-eslint": "^8.59.0"
3939
}
4040
}
476 KB
Loading
906 KB
Loading
6.48 MB
Loading
1.6 MB
Loading

0 commit comments

Comments
Β (0)