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

docs: site build corrections, shared doc scrub, and new content #3215

Merged
merged 14 commits into from
Jun 2, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix(website): remove unnecessary intermediary copy location
  • Loading branch information
EisenbergEffect committed May 31, 2020
commit 9c6e3f102b286f8174f840e671709a0747506e20
51 changes: 0 additions & 51 deletions sites/website/src/docs/community/code-of-conduct.md

This file was deleted.

147 changes: 0 additions & 147 deletions sites/website/src/docs/community/contributor-guide.md

This file was deleted.

27 changes: 0 additions & 27 deletions sites/website/src/docs/resources/license.md

This file was deleted.

46 changes: 0 additions & 46 deletions sites/website/src/docs/resources/security.md

This file was deleted.

8 changes: 4 additions & 4 deletions sites/website/src/prepare-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async function copyMarkdown() {
const mergeDocs = [
{
src: "../../CODE_OF_CONDUCT.md",
dest: "./src/docs/community/code-of-conduct.md",
dest: "./docs/community/code-of-conduct.md",
metadata: {
id: "code-of-conduct",
title: "Code of Conduct",
Expand All @@ -99,7 +99,7 @@ async function copyMarkdown() {
},
{
src: "../../CONTRIBUTING.md",
dest: "./src/docs/community/contributor-guide.md",
dest: "./docs/community/contributor-guide.md",
metadata: {
id: "contributor-guide",
title: "Contributor Guide",
Expand All @@ -109,7 +109,7 @@ async function copyMarkdown() {
},
{
src: "../../LICENSE",
dest: "./src/docs/resources/license.md",
dest: "./docs/resources/license.md",
metadata: {
id: "license",
title: "License",
Expand All @@ -119,7 +119,7 @@ async function copyMarkdown() {
},
{
src: "../../SECURITY.md",
dest: "./src/docs/resources/security.md",
dest: "./docs/resources/security.md",
metadata: {
id: "security",
title: "Security",
Expand Down