Skip to content

Commit 171da94

Browse files
Merge branch 'canary' into styled-jsx-v4
2 parents 5e04777 + 1969124 commit 171da94

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

contributing.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,20 @@ Read about our [Commitment to Open Source](https://vercel.com/oss).
1212

1313
> You may need to run `yarn types` again if your types get outdated.
1414
15-
To contribute to [our examples](examples), take a look at the [“Adding examples” section](#adding-examples).
15+
To contribute to [our examples](examples), take a look at the [“Adding examples”
16+
section](#adding-examples).
17+
18+
## Building
19+
20+
You can build the project, including all type definitions, with:
21+
22+
```bash
23+
yarn build
24+
# - or -
25+
yarn prepublish
26+
```
27+
28+
If you need to clean the project for any reason, use `yarn clean`.
1629

1730
## Adding warning/error descriptions
1831

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"packages/*"
66
],
77
"scripts": {
8+
"clean": "yarn lerna clean -y && yarn lerna bootstrap && yarn lerna exec 'rm -rf ./dist'",
9+
"build": "yarn prepublish",
810
"lerna": "lerna",
911
"dev": "lerna run dev --stream --parallel",
1012
"dev2": "while true; do yarn --check-files && yarn dev; done",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('next').NextConfig} */
12
module.exports = {
23
reactStrictMode: true,
34
}

0 commit comments

Comments
 (0)