We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7090d commit fed1bceCopy full SHA for fed1bce
CONTRIBUTING.md
@@ -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
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
25
26
+npm ci
27
+npm pack
28
29
30
+### Deploying a new version
31
32
33
+npm run release
34
35
36
+or for alpha release:
37
38
39
+npm run alpha
40
0 commit comments