forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove root build script (sveltejs#7322)
- Loading branch information
1 parent
ba52050
commit 76ef30e
Showing
3 changed files
with
2 additions
and
5 deletions.
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
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,20 +1,19 @@ | ||
# SvelteKit Contributing Guide | ||
|
||
## Building and Running | ||
## Preparing | ||
|
||
This is a monorepo, meaning the repo holds multiple packages. It requires the use of [pnpm](https://pnpm.js.org/en/). You can [install pnpm](https://pnpm.io/installation) with: | ||
|
||
```bash | ||
npm i -g pnpm | ||
``` | ||
|
||
`pnpm` commands run in the project's root directory will run on all sub-projects. You can checkout the code and build all sub-projects with: | ||
`pnpm` commands run in the project's root directory will run on all sub-projects. You can checkout the code and install the dependencies with: | ||
|
||
```bash | ||
git clone [email protected]:sveltejs/kit.git | ||
cd kit | ||
pnpm install | ||
pnpm build | ||
``` | ||
|
||
You can now run SvelteKit by linking it into your project with [pnpm `overrides`](https://pnpm.io/package_json#pnpmoverrides) as demonstrated in the [sandbox example](https://github.com/sveltejs/kit-sandbox) or by running one of the test projects as described in [the testing section](#testing) below. | ||
|
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