Skip to content

Commit fed1bce

Browse files
committed
contributing
1 parent 9f7090d commit fed1bce

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

CONTRIBUTING.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Developing guide
2+
3+
## Running locally
4+
5+
```sh
6+
npm i
7+
npm run dev
8+
```
9+
10+
## Testing
11+
12+
```sh
13+
npm run clean
14+
npm run build
15+
npm run typecheck
16+
npm run lint
17+
npm run test
18+
```
19+
20+
## Deploying
21+
22+
### Building a one-off package
23+
24+
```sh
25+
npm run clean
26+
npm ci
27+
npm pack
28+
```
29+
30+
### Deploying a new version
31+
32+
```sh
33+
npm run release
34+
```
35+
36+
or for alpha release:
37+
38+
```sh
39+
npm run alpha
40+
```

0 commit comments

Comments
 (0)