Skip to content

Commit 6f737ec

Browse files
authored
Fixed docs (#1987)
1 parent 710350c commit 6f737ec

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

CONTRIBUTING.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,29 @@ We welcome contributions including bug fixes, feature enhancements, documentatio
55

66
## Creating a Template
77

8-
We do not maintain official templates and integration in this monorepo.
8+
We do not maintain official templates and integrations in this monorepo.
99
Instead, please head over to [solidjs/templates](https://github.com/solidjs/templates) to submit your contribution.
1010

1111
## Documentation
1212

1313
We always want help and creative ways of explaining how to take the best out of SolidStart.
14-
Alas, this is not the right place to do it, please head over to [SolidDocs](https://github.com/solidjs/solid-docs) and offer contribution to the official documentation!
14+
Alas, this is not the right place to do it, please head over to [SolidDocs](https://github.com/solidjs/solid-docs) and contribute to the official documentation!
1515

1616
## Feature Request
1717

1818
> [!IMPORTANT]
19-
> Do not create a PR without first discussion in an issue
19+
> Do not create a PR without prior discussion in an issue
2020
2121
If there's a new feature you'd like to request you can:
2222

2323
1. Create an issue and make your pitch. Be sure to explain the value proposition in a way that will benefit most users.
2424

2525
2. If it's a more general concept, feel free to open a [Discussion](https://github.com/solidjs/solid-start/discussions) in the **Idea** category.
2626

27-
A new **primitive** follows the same criteria as issues, please create an issue for it to be discussed before hand.
27+
A new **primitive** follows the same criteria as issues, please create an issue for it to be discussed beforehand.
2828

2929
Primitives that depend on multiple external dependencies and 3rd party integrations are generally not a good fit to live inside this monorepo, we still welcome you to create it and share with the ecosystem.
30-
Reach out in a [Discussion](https://github.com/solidjs/solid-start/discussions) in the **showcase** session and we'll amplify as much as we can!
30+
Reach out in a [Discussion](https://github.com/solidjs/solid-start/discussions) in the **showcase** section and we'll amplify as much as we can!
3131

3232
## Found a Bug
3333

@@ -42,21 +42,21 @@ Create a **minimal** reproduction either in a remote IDE or in an open-source re
4242

4343
We recommend using the `create-solid` package with the **basic** setting.
4444

45-
| Package Manager | Command |
46-
| --------------- | ------------------------------------------ |
47-
| pnpm | `pnpm create solid -s -t basic` |
48-
| npm | `npm create solid -s -t basic` |
49-
| yarn | `yarn create solid -s -t basic` |
50-
| bun | `bun create solid -s -t basic` |
51-
| deno | `deno run -A npm:create-solid -s -t basic` |
45+
| Package Manager | Command |
46+
| --------------- | ---------------------------------------- |
47+
| pnpm | `pnpm create solid@latest -st basic` |
48+
| npm | `npm create solid@latest -- -st basic` |
49+
| yarn | `yarn create solid -st basic` |
50+
| bun | `bun create solid@latest --s --t basic` |
51+
| deno | `deno run -A npm:create-solid -st basic` |
5252

5353
### Failing Test PR
5454

5555
You can also fork this repository and go to `apps/tests`.
5656
There we have an app with all default configurations and many routes.
5757
Create a new route, a Cypress assertion to it and open a PR with the failing test-case.
5858

59-
Once the PR is there, **create an issue** and link the PR (mention the PR as you'd mention a person in the issue description and vice-versa).
59+
Once the PR is there, **create an issue** and link the PR (mention the PR as you'd mention a person in the issue description and vice versa).
6060

6161
> [!IMPORTANT]
6262
> Mark the **allow edit by the maintainers** so we can more easily investigate the failing test and propose a fix. Otherwise we may need to close your PR and cherry-pick your commit.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Banner](https://assets.solidjs.com/banner?project=Start&type=core)](https://github.com/solidjs)
2-
31
<div align="center">
42

3+
[![Banner](https://assets.solidjs.com/banner?project=Start&type=core)](https://github.com/solidjs)
4+
55
[![Version](https://img.shields.io/npm/v/@solidjs/start.svg?style=for-the-badge&color=blue&logo=npm)](https://npmjs.com/package/@solidjs/start)
66
[![Downloads](https://img.shields.io/npm/dm/@solidjs/start.svg?style=for-the-badge&color=green&logo=npm)](https://npmjs.com/package/@solidjs/start)
77
[![Stars](https://img.shields.io/github/stars/solidjs/solid-start?style=for-the-badge&color=yellow&logo=github)](https://github.com/solidjs/solid-start)
@@ -10,19 +10,19 @@
1010

1111
</div>
1212

13+
- For building apps with SolidStart, check the [package README](/packages/start/README.md) and our [official docs](https://docs.solidjs.com/solid-start)
1314
- For contributing to codebase, check [CONTRIBUTING.md](/CONTRIBUTING.md)
14-
- For creating a new template, please head on to [solidjs/templates](https://github.com/solidjs/templates)
15-
- For instructions on building with SolidStart, check the [package README.md](/packages/start/README.md) and our [official docs](https://docs.solidjs.com/solid-start)
15+
- For creating a new template, please head over to [solidjs/templates](https://github.com/solidjs/templates)
1616

1717
## Prerequisites
1818

19-
- **Node.js**: Use the version specified in `.nvmrc`, to manage multiple versions across your system, we recommend a version manager such as [fnm](https://github.com/Schniz/fnm), or another of your preference.
19+
- **Node.js**: Use the version specified in `.nvmrc`. To manage multiple versions across your system, we recommend a version manager such as [fnm](https://github.com/Schniz/fnm), or another of your choice.
2020
- **pnpm**: Install globally via `npm install -g pnpm`. Or let **Corepack** handle it in the setup step below.
21-
- **Git**: Ensure Git is installed for cloning and managing the repository
21+
- **Git**: Ensure Git is installed for cloning and managing the repository.
2222

2323
## Monorepo Structure
2424

25-
SolidStart is a pnpm-based monorepo with nested workspaces. Key directories include
25+
SolidStart is a pnpm-based monorepo with nested workspaces. Key directories include:
2626

2727
- **`packages/start`**: The core `@solidjs/start` package.
2828
- **`apps/landing-page`**: The official landing page.
@@ -52,7 +52,7 @@ Use pnpm filters (e.g. `pnpm --filter @solidjs/start ...`) to target specific pa
5252
pnpm dedupe
5353
```
5454

55-
(`pnpm dedupe` will install dependencies _and_ clean the lockfile from duplicates, useful to preventing conflicts).
55+
(`pnpm dedupe` will install dependencies _and_ clean the lockfile from duplicates, useful for preventing conflicts).
5656

5757
4. Build all packages and the landing page
5858
```bash
@@ -69,7 +69,7 @@ Then reinstall dependencies and rebuild.
6969

7070
## Running Tests
7171

72-
End-to-end tests are located in `apps/tests` projects. For manual testing and development there's the `apps/fixtures` apps, and finally, integration and unit tests live inside their respective packages.
72+
End-to-end tests are located in `apps/tests` projects. For manual testing and development use the `apps/fixtures` apps, and finally, integration and unit tests live inside their respective packages.
7373

7474
1. Install the Cypress binary (required only once)
7575

packages/start/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default defineConfig({
7373
});
7474
```
7575

76-
Presets also include runtimes like Node.js, Bun or Deno. For example, a preset like `node-server` enables hosting on your server.
76+
Presets also include runtimes like Node.js, Bun, or Deno. For example, a preset like `node-server` enables hosting on your server.
7777
Learn more about [`defineConfig`](https://docs.solidjs.com/solid-start/reference/config/define-config)
7878

7979
## Building
@@ -89,4 +89,4 @@ After the build completes, you’ll be guided through deployment for your specif
8989
## Contributing
9090

9191
- For contributing to the codebase, check [CONTRIBUTING.md](https://github.com/solidjs/solid-start/blob/main/CONTRIBUTING.md)
92-
- For creating a new template, please head on to [solidjs/templates](https://github.com/solidjs/templates)
92+
- For creating a new template, please head over to [solidjs/templates](https://github.com/solidjs/templates)

0 commit comments

Comments
 (0)