Skip to content

Commit 547f759

Browse files
authored
⬆️ Updated name (#6)
1 parent 2e5461b commit 547f759

13 files changed

+195
-200
lines changed

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ yarn-error.log*
2424
/temp
2525
/src/data/doc-collections
2626
/src/data/sporks.json
27-
/docs/*
28-
!/docs/learn
29-
!/docs/quickstarts
30-
!/docs/documentation
27+
/docs/unsorted
3128

3229
versioned_docs
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[test link to a sibling section](../2.Cadence%20Language/1.Syntax%20and%20Language%20Basics.md)

docs/1.Learn/2.Cadence Language/1.Syntax and Language Basics.md

Whitespace-only changes.

docs/1.Learn/3.Deep Dive into Cadence/1.Cadence Design Philosophy.md

Whitespace-only changes.

docs/1.Learn/4.Switching from Solidity to Cadence/1.Key Differences between Solidity and Cadence.md

Whitespace-only changes.

docs/1.Learn/4.Switching from Solidity to Cadence/2.Cadence Resources for Solidity Developers.md

Whitespace-only changes.

docs/1.Learn/5.Glossary of Terms.md

Whitespace-only changes.

docs/2.Try/1.Flow Playground.md

Whitespace-only changes.

docs/3.Build/1.Getting Started/1.Flow Developer Account Setup.md

Whitespace-only changes.

docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ const config = {
8989
url: 'https://onflow.github.io',
9090
// Set the /<baseUrl>/ pathname under which your site is served
9191
// For GitHub pages deployment, it is often '/<projectName>/'
92-
baseUrl: '/flow-docusaurus/',
92+
baseUrl: '/docs/',
9393

9494
// GitHub pages deployment config.
9595
// If you aren't using GitHub pages, you don't need these.
9696
organizationName: 'onflow', // Usually your GitHub org/user name.
97-
projectName: 'flow-docusaurus', // Usually your repo name.
97+
projectName: 'docs', // Usually your repo name.
9898
trailingSlash: false,
9999

100100
onBrokenLinks: 'warn',

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"typecheck": "tsc"
1616
},
1717
"dependencies": {
18-
"@docusaurus/core": "2.3.1",
19-
"@docusaurus/preset-classic": "2.3.1",
18+
"@docusaurus/core": "2.4.0",
19+
"@docusaurus/preset-classic": "2.4.0",
2020
"@floating-ui/react-dom": "1.3.0",
2121
"@headlessui/react": "1.7.13",
2222
"@mdx-js/react": "^1.6.22",
@@ -41,7 +41,7 @@
4141
"webpack-merge": "5.8.0"
4242
},
4343
"devDependencies": {
44-
"@docusaurus/module-type-aliases": "2.3.1",
44+
"@docusaurus/module-type-aliases": "2.4.0",
4545
"@tsconfig/docusaurus": "^1.0.5",
4646
"@typescript-eslint/eslint-plugin": "^5.43.0",
4747
"eslint": "^8.0.1",

scripts/bootstrap.sh

-4
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@ copyRepoFiles () {
115115
mkdir -p $unsortedDestination
116116

117117
rsync -av --exclude='next/' "$source/" "$unsortedDestination"
118-
if [ -d $source/next ]
119-
then
120-
cp -r $source/next/. $docsLocation
121-
fi
122118
}
123119

124120
copyDocFiles () {

0 commit comments

Comments
 (0)