@anoki/fse-common
Version:
Common types for FSE
32 lines (21 loc) • 831 B
Markdown
# This is the common types for the FSE
Use npm to install the dependencies [Not yarn]:
```bash
npm install
```
Use npm release to build the library and publish the package to npm:
```bash
npm run release
```
Use npm bump-patch to increments the patch version (the last number in the version, e.g., from 0.1.96 to 0.1.97), push the changes, build the package and publish it to npm:
```bash
npm run bump-patch
```
Use npm bump-minor to increments the minor version (the second number in the version, e.g., from 0.1.96 to 0.2.0), push the changes, build the package and publish it to npm.
```bash
npm run bump-minor
```
Use npm bump-major to increments the major version (the first number in the version, e.g., from 0.1.96 to 1.0.0), push the changes, build the package and publish it to npm:
```bash
npm run bump-major
```