Skip to content

Commit

Permalink
Add updated Proposal template + get repo ready for T2 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
omckeon committed Jul 26, 2024
1 parent 4243c68 commit 66aa8c7
Show file tree
Hide file tree
Showing 37 changed files with 909 additions and 476 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"*.mdx": "markdown"
}
}
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ syllables per word. For more information, see
confirmed by running `nvm which`.

1. Install all dependencies

```sh
npm install
```
Expand Down Expand Up @@ -140,6 +141,7 @@ syllables per word. For more information, see
confirmed by running `nvm which`.
1. Install all dependencies
```sh
npm install
```
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Starlight Starter Kit: Basics

```
```shell
npm create astro@latest -- --template starlight
```

Expand All @@ -13,14 +13,14 @@ npm create astro@latest -- --template starlight

Inside of your Astro + Starlight project, you'll see the following folders and files:

```
```plaintext
.
├── public/
├── src/
│ ├── assets/
│ ├── content/
│ │ ├── docs/
│ │ └── config.ts
│ ├── styles/
│ └── env.d.ts
├── astro.config.mjs
├── package.json
Expand Down
159 changes: 81 additions & 78 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -405,84 +405,87 @@ export default defineConfig({
{
label: "SplashKit",
collapsed: true, // Collapsed by default
items: [
{
label: "Get to Know Us",
link: "/products/splashkit/example",
},
{
label: "Projects",
autogenerate: {
directory: "products/splashkit/projects",
},
},
{
label: "Documentation",
autogenerate: {
directory: "products/splashkit/documentation",
},
items: [
{
label: "Tutorials",
autogenerate: {
directory: "products/splashkit/documentation/tutorials",
},
},
{
label: "Expansions",
autogenerate: {
directory: "products/splashkit/documentation/expansions",
},
},
{
label: "SplashKit Online",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online",
},
items: [
{
label: "Code Documentation",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online/code-documentation",
},
items: [
{
label: "Classes",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online/code-documentation/classes",
},
},
{
label: "Processes",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online/code-documentation/processes",
},
},
{
label: "Other",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online/code-documentation/other",
},
},
],
},
],
},
{
label: "Research and Findings",
autogenerate: {
directory: "products/splashkit/documentation/splashkit-online/research-and-findings",
},
},
],
},
{
label: "Issues and Resolutions",
autogenerate: {
directory: "products/splashkit/issues-and-resolutions",
},
},
],
autogenerate: {
directory: "products/splashkit",
},
// items: [
// {
// label: "Get to Know Us",
// link: "/products/splashkit/example",
// },
// {
// label: "Projects",
// autogenerate: {
// directory: "products/splashkit/projects",
// },
// },
// {
// label: "Documentation",
// autogenerate: {
// directory: "products/splashkit/documentation",
// },
// items: [
// {
// label: "Tutorials",
// autogenerate: {
// directory: "products/splashkit/documentation/tutorials",
// },
// },
// {
// label: "Expansions",
// autogenerate: {
// directory: "products/splashkit/documentation/expansions",
// },
// },
// {
// label: "SplashKit Online",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online",
// },
// items: [
// {
// label: "Code Documentation",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online/code-documentation",
// },
// items: [
// {
// label: "Classes",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online/code-documentation/classes",
// },
// },
// {
// label: "Processes",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online/code-documentation/processes",
// },
// },
// {
// label: "Other",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online/code-documentation/other",
// },
// },
// ],
// },
// ],
// },
// {
// label: "Research and Findings",
// autogenerate: {
// directory: "products/splashkit/documentation/splashkit-online/research-and-findings",
// },
// },
// ],
// },
// {
// label: "Issues and Resolutions",
// autogenerate: {
// directory: "products/splashkit/issues-and-resolutions",
// },
// },
// ],
},
],
},
Expand Down
Loading

0 comments on commit 66aa8c7

Please sign in to comment.