Skip to content

Commit

Permalink
Merge branch 'canary' into styled-jsx-v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Aug 9, 2021
2 parents 5e04777 + 1969124 commit 171da94
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
15 changes: 14 additions & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,20 @@ Read about our [Commitment to Open Source](https://vercel.com/oss).

> You may need to run `yarn types` again if your types get outdated.
To contribute to [our examples](examples), take a look at the [“Adding examples” section](#adding-examples).
To contribute to [our examples](examples), take a look at the [“Adding examples”
section](#adding-examples).

## Building

You can build the project, including all type definitions, with:

```bash
yarn build
# - or -
yarn prepublish
```

If you need to clean the project for any reason, use `yarn clean`.

## Adding warning/error descriptions

Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"packages/*"
],
"scripts": {
"clean": "yarn lerna clean -y && yarn lerna bootstrap && yarn lerna exec 'rm -rf ./dist'",
"build": "yarn prepublish",
"lerna": "lerna",
"dev": "lerna run dev --stream --parallel",
"dev2": "while true; do yarn --check-files && yarn dev; done",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
}

0 comments on commit 171da94

Please sign in to comment.