Skip to content

Commit

Permalink
remove root build script (#7322)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb committed Oct 31, 2022
1 parent ba52050 commit 76ef30e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -34,7 +34,6 @@ jobs:
cache: pnpm

- run: pnpm install --frozen-lockfile
- run: pnpm turbo run build --filter="./packages/*"

- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
@@ -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 git@github.com: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.
Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -4,7 +4,6 @@
"description": "monorepo for @sveltejs/kit and friends",
"private": true,
"scripts": {
"build": "turbo run build --filter=./packages/*",
"test": "turbo run test --filter=./packages/* --force",
"check": "turbo run check",
"lint": "turbo run lint",
Expand Down

0 comments on commit 76ef30e

Please sign in to comment.