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 d92f0f4 commit dc2f462Copy full SHA for dc2f462
CONTRIBUTING.md
@@ -0,0 +1,15 @@
1
+# Contributing guide
2
+
3
+1. Install dependencies
4
5
+```
6
+npm i
7
8
9
+2. Run tests in watch mode
10
11
12
+npm run test:watch
13
14
15
+3. For any new features, add new tests
package.json
@@ -27,6 +27,7 @@
27
"scripts": {
28
"test": "jest",
29
"test:watch": "jest --watch",
30
- "build": "esbuild src/index.js --bundle --platform=node --outfile=dist/index.js "
+ "build": "esbuild src/index.js --bundle --platform=node --outfile=dist/index.js",
31
+ "publish": "npm build && npm publish"
32
}
33
0 commit comments