-
Notifications
You must be signed in to change notification settings - Fork 461
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
Feat/website rewrite #1276
Open
jacobdalamb
wants to merge
72
commits into
nushell:main
Choose a base branch
from
jacobdalamb:feat/website-rewrite
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feat/website rewrite #1276
Changes from all commits
Commits
Show all changes
72 commits
Select commit
Hold shift + click to select a range
16dd6bf
Init
a554c51
Format and add CNAME
45fffd9
Delete Book_table_of_contents.md
0ee374b
Update deps
4799ce5
Fix link
9eefc56
Updated some outputs
b84a157
Complete all book files
7ea7d2f
Update custom_completions.md
63d5154
Update getting_started.md
3c0365d
Update astro.config.mjs
36a85ae
Add command reference
ee716bb
Get commands
daf2cf2
Format
b60c7ba
Fix links
efe4e15
Format
1c829c1
Add blog
758f099
Update GetBlogPosts.astro
00b616e
Update caution block
23a072a
Set up blog
0a011a6
Update deps
5298b59
Update blog.mdx
688fc7b
Update astro
97b60b4
Format blog posts
2b1f19b
Update blog.mdx
b96f21f
Fix code blocks
92dc9cc
Fix note blocks
6080fc6
Update 2023-04-25-nushell_0_79.md
5d6d183
Fix blog posts
2b5293e
Fix titles
2c95d1b
Fix headings
c7503ae
Fix caution block
f579349
Replace blog
339e49f
Remove table of content
3c3a1df
Update starlight
7fa4d97
Add other langs
8a3b572
Fix de titles
91241de
Fix readme titles
d93334b
Fix es titles
d63d134
Fix ja titles
cfa861f
fix pt titles
437cedf
Fix zh titles
8c6aff5
English
f055118
Update starlight
b604861
Replace ```nushell with ```nu
3cc1274
Remove `frame="terminal"`
5183dad
Remove nushell-grammar file
d5a5407
Move book out of blog
7a0f565
Update astro.config.mjs
9842640
Update starlight
0f094e0
Fix es content
9e8b97d
.sh to .nu
a5f6de9
Fix docs
4539752
Update index
6fdf25f
Fix imports and variables
7cabccd
Add i18n
2d80944
Update deps
d5d759d
Simplify astro config using autogenerate
fd26f25
Order files
c9c31bb
translate files names
36201f5
Update deps
be4cbbd
Update docs
7ed427f
Update thinking_in_nu.mdx
457b678
Fix code component
9b607e7
Update plugins.mdx
3127a41
Update docs
f3c48ee
Update installation.mdx
dc6ea60
More fixes
bc26337
Fix more imports/exports
24da579
Fix cookbook nav
eb94db8
Update CONTRIBUTING.md
e25f2e8
Create .typos.toml
1dc8572
Update .prettierignore
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
.temp/ | ||
.cache/ | ||
.DS_Store | ||
node_modules | ||
npm-debug.log | ||
.vuepress/dist/ | ||
# build output | ||
dist/ | ||
# generated types | ||
.astro/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# ignore the git mailmap file | ||
.mailmap | ||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,33 @@ | ||
# build output | ||
dist | ||
|
||
# generated types | ||
.astro | ||
|
||
# dependencies | ||
node_modules | ||
package-lock.json | ||
|
||
operators.md | ||
dataframes.md | ||
nushell_map.md | ||
*_bash*.md | ||
commands/docs/*.md | ||
.vuepress/.temp | ||
.vuepress/.cache | ||
.vuepress/dist/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store | ||
|
||
# files | ||
**/*.js | ||
**/*.ts | ||
**/*.cjs | ||
**/*.mjs | ||
**/*.json | ||
**/*.yaml | ||
**/*.yml | ||
!package.json | ||
!tsconfig.json | ||
!src/content/docs/book/coming-to-nu/coming_from_bash.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** @type {import("prettier").Config} */ | ||
export default { | ||
plugins: ["prettier-plugin-astro"], | ||
overrides: [ | ||
{ | ||
files: "*.astro", | ||
options: { | ||
parser: "astro", | ||
}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
|
||
[files] | ||
extend-exclude = ["pt-BR", "de", "ja", "es", "book/commands"] | ||
extend-exclude = ["pt-BR", "de", "ja", "es", "blog/202[0-3]*"] | ||
|
||
[default.extend-words] | ||
# Avoid the false positive in book/commands/str_replace.md | ||
ons = "ons" | ||
# Avoid false positive for json placeholder in cookbook/http.md | ||
optio = "optio" | ||
ratatui = "ratatui" | ||
doas = "doas" | ||
iterm = "iterm" | ||
nushell = "nushell" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"recommendations": ["astro-build.astro-vscode"], | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "./node_modules/.bin/astro dev", | ||
"name": "Development server", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should they all be ignored during formatting?