File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -233,10 +233,25 @@ client.cancelDocument(document);
233
233
234
234
Any feedback? Please feel free to [ contact our support team] ( https://eversign.com/contact ) .
235
235
236
- ### Development
236
+ ## Development
237
+
238
+ ### Setting up environment
237
239
238
240
```
239
241
docker run -ti --rm -p 8080:8080 -v $(pwd):/opt/sdk -w /opt/sdk node bash
240
242
npm install
241
243
node examples/create_document.js
242
244
```
245
+
246
+ ### Running tests
247
+ ```
248
+ npm run test
249
+ ```
250
+
251
+ ### Publishing
252
+ - Make sure our change is working and properly deployed to master branch.
253
+ - Run tests with ` npm run test `
254
+ - Bump up version in package.json
255
+ - Login to npm account with a permission to publish with ` npm login `
256
+ - Publish new version with ` npm publish `
257
+ - You will receive an email with confirmation that new package version is published.
You can’t perform that action at this time.
0 commit comments