Skip to content

Commit 76ef30e

Browse files
authored
remove root build script (sveltejs#7322)
1 parent ba52050 commit 76ef30e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
cache: pnpm
3535

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

3938
- name: Create Release Pull Request or Publish to npm
4039
id: changesets

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
# SvelteKit Contributing Guide
22

3-
## Building and Running
3+
## Preparing
44

55
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:
66

77
```bash
88
npm i -g pnpm
99
```
1010

11-
`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:
11+
`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:
1212

1313
```bash
1414
git clone [email protected]:sveltejs/kit.git
1515
cd kit
1616
pnpm install
17-
pnpm build
1817
```
1918

2019
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.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"description": "monorepo for @sveltejs/kit and friends",
55
"private": true,
66
"scripts": {
7-
"build": "turbo run build --filter=./packages/*",
87
"test": "turbo run test --filter=./packages/* --force",
98
"check": "turbo run check",
109
"lint": "turbo run lint",

0 commit comments

Comments
 (0)