Skip to content

Update for Bernoulli upgrade #229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8a4f26e
draft of node running doc
isabellewei Feb 8, 2024
998a7fb
remove yarn.lock
isabellewei Feb 8, 2024
431ed2e
add nav
isabellewei Feb 8, 2024
1454a2f
PR comments
isabellewei Feb 22, 2024
72ec8dc
adds dencun / cancun info and precompile limits
dghelm Mar 13, 2024
ebe5d80
Upgrade to Astro v3
zzq0826 Mar 18, 2024
71ecfd3
test
zzq0826 Mar 21, 2024
cc7abaa
feat: updated incorrect description of the current network phase
zm-moon Mar 21, 2024
44f2402
i18n support for search
zzq0826 Mar 22, 2024
60839b0
update to astro v4
zzq0826 Mar 22, 2024
e942c19
Merge pull request #219 from zm-moon/patch-1
dghelm Mar 27, 2024
39bb7e0
Merge pull request #166 from scroll-tech/isabellewei/running-a-node
dghelm Apr 2, 2024
95b72aa
update bridge api links
isabellewei Apr 8, 2024
4fbeeea
Merge pull request #226 from scroll-tech/isabellewei/bridge-api
isabellewei Apr 10, 2024
700160a
sepolia bernoulli upgrade
isabellewei Apr 10, 2024
ce16427
PR comments
isabellewei Apr 11, 2024
529e7fe
remove Tabs, just use multiple sections for now
isabellewei Apr 12, 2024
5fe271a
audit and prover changes not yet availalbe
isabellewei Apr 15, 2024
bdf5809
update sepolia date + add TG chat
isabellewei Apr 15, 2024
f2883c9
drop nesting warning, fix flash of unformatted header, fix css build …
dghelm Apr 15, 2024
faab603
use transition only outside homepage
dghelm Apr 15, 2024
dc1dc92
fix relative path to include language for english whats next pages
dghelm Apr 15, 2024
a30b9bb
Merge pull request #220 from scroll-tech/upgrade-astro-version-v4
dghelm Apr 15, 2024
79c690e
Merge pull request #227 from scroll-tech/isabellewei/bernoulli-sepolia
dghelm Apr 15, 2024
da47ce7
add point evaluation and additional opcode
dghelm Apr 15, 2024
289f68b
Merge branch 'develop' of github.com:scroll-tech/scroll-documentation…
dghelm Apr 15, 2024
7f258ce
fix Aside import
dghelm Apr 15, 2024
278f61a
Merge pull request #216 from scroll-tech/update/post-dencun-clarifica…
dghelm Apr 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.15.0
v18.14.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 16.16.0
nodejs 18.14.1
20 changes: 12 additions & 8 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ import svgr from "vite-plugin-svgr"
import astroI18next from "astro-i18next"
import { astroCallouts, asideAutoImport } from "./integrations/astro-callouts"
import { solidityRemixCode, codeSampleAutoImport } from "./integrations/solidity-remix"
import { youtubeEmbed } from "./integrations/youtube-embed"
import mdx from "@astrojs/mdx"
import rehypeSlug from "rehype-slug"
import rehypeAutolinkHeadings from "rehype-autolink-headings"
import rehypeKatex from "rehype-katex"
import rehypeMermaid from "rehype-mermaidjs"
import remarkGfm from "remark-gfm"
import remarkMath from "remark-math"
import image from "@astrojs/image"
import AutoImport from "astro-auto-import"

import sitemap from "@astrojs/sitemap"
Expand All @@ -23,6 +21,7 @@ import tailwind from "@astrojs/tailwind"
// https://astro.build/config
export default defineConfig({
site: "https://docs.scroll.io",
scopedStyleStrategy: "where",
legacy: {
astroFlavoredMarkdown: true,
},
Expand All @@ -39,14 +38,12 @@ export default defineConfig({
}),
astroCallouts(),
solidityRemixCode(),
youtubeEmbed(),
mdx(),
image(),
tailwind({
// Example: Disable injecting a basic `base.css` import on every page.
// Useful if you need to define and/or import your own custom `base.css`.
config: { applyBaseStyles: false },
applyBaseStyles: false,
nesting: true,
}),

astroI18next(),
],
vite: {
Expand All @@ -61,7 +58,14 @@ export default defineConfig({
[
rehypeAutolinkHeadings,
{
behavior: "append",
behavior: "wrap",
properties: {},
content: {
type: "element",
tagName: "span",
properties: { className: ["icon", "icon-link"] },
children: [],
},
},
],
[
Expand Down
25 changes: 0 additions & 25 deletions integrations/youtube-embed.ts

This file was deleted.

Loading