Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,41 @@ See [benchmark details](https://github.com/lightpanda-io/demo)._

This repository contains all the [NPM](https://npmjs.com) packages created for Lightpanda

### Development mode

```
$ yarn dev
```

### Lint

_using [Biome](https://biomejs.dev/)_

```
$ yarn lint
```

### Build

```
$ yarn build
```

### Publish
To publish packages, we use [changesets](https://github.com/changesets/changesets). Make sure to have commited & pushed all your code before publishing.
## Publish
To publish packages, we use [Changesets](https://github.com/changesets/changesets). Make sure to have committed & pushed all your code before publishing.

1. Run the following command to create a new version (patch, minor, major)

```
$ yarn changeset add
```

2. Publish all the packages
2. Push Changeset commit to your branch

3. Publish all the packages

```
$ yarn publish-packages
```

3. Push the new commits & merge to main
4. Push release commits & merge to main
Loading