Skip to content
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

fix: mark outmoded articles as draft:true #330

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@astrojs/partytown": "^2.0.4",
"@astrojs/prism": "^3.0.0",
"@astrojs/tailwind": "^5.1.0",
"@nanostores/preact": "^0.3.1",
"@nanostores/preact": "0.3.1",
"astro-auto-import": "^0.4.2",
"astro-expressive-code": "^0.35.3",
"astro-i18next": "^1.0.0-beta.21",
Expand All @@ -39,7 +39,7 @@
"markmap-lib": "^0.15.4",
"markmap-view": "^0.15.4",
"nanostores": "^0.7.1",
"preact": "^10.11.3",
"preact": "10.11.3",
"query-string": "^7.1.1",
"react-instantsearch-hooks-web": "^6.38.1",
"react-mailchimp-subscribe": "^2.1.3",
Expand All @@ -56,7 +56,7 @@
},
"devDependencies": {
"@astrojs/mdx": "^2.2.1",
"@astrojs/preact": "^3.1.1",
"@astrojs/preact": "3.1.1",
"@astrojs/react": "^3.1.0",
"@astrojs/sitemap": "^3.1.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
Expand Down
1 change: 1 addition & 0 deletions src/config/frontmatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export type Frontmatter = {

// whats next links at the end of the content
whatsnext: Record<Text, Link>
draft?: boolean
metadata?: {
title?: string
description?: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: "Estimating Gas and Tx Fees"
lang: "en"
permalink: "developers/guides/estimating-gas-and-transaction-fees"
excerpt: "Since Scroll is an L2 rollup, part of the transaction lifecycle is committing some data to L1 for security. To pay for this, all transaction incurs an additional fee called the L1 fee"
draft: true
---

import Aside from "../../../../../components/Aside.astro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: "Estimating Gas and Tx Fees"
lang: "en"
permalink: "developers/guides/estimating-gas-and-transaction-fees"
excerpt: "Since Scroll is an L2 rollup, part of the transaction lifecycle is committing some data to L1 for security. To pay for this, all transaction incurs an additional fee called the L1 fee"
draft: true
---

import Aside from "../../../../../components/Aside.astro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: "Gas ve İşlem Ücretlerinin Tahmin Edilmesi"
lang: "tr"
permalink: "developers/guides/estimating-gas-and-transaction-fees"
excerpt: "Scroll bir L2 rollup olduğundan, işlem yaşam döngüsünün bir kısmı güvenlik için bazı verileri L1'e iletir. Bunun bedelini ödemek için tüm işlemlere L1 ücreti adı verilen ek bir ücret uygulanır."
draft: true
---


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: "Estimating Gas and Tx Fees"
lang: "en"
permalink: "developers/guides/estimating-gas-and-transaction-fees"
excerpt: "Since Scroll is an L2 rollup, part of the transaction lifecycle is committing some data to L1 for security. To pay for this, all transaction incurs an additional fee called the L1 fee"
draft: true
---

import Aside from "../../../../../components/Aside.astro"
Expand Down