@zkid/zktls-js-sdk 0.0.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -1,5 +1,18 @@
1
1
  You can find more detailed information through the following two links.
2
2
 
3
+ ## Version
4
+
5
+ ```bash
6
+ # fix bug
7
+ npm version patch
8
+
9
+ # new feature
10
+ npm version minor
11
+
12
+ # break change
13
+ npm version major
14
+ ```
15
+
3
16
  ## TODO
4
17
 
5
18
  change brand in code.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zkid/zktls-js-sdk",
3
- "version": "0.0.3",
3
+ "version": "1.0.0",
4
4
  "author": "HashKey Chain",
5
5
  "description": "HashKey Chain zkTLS js sdk",
6
6
  "repository": {
@@ -30,7 +30,6 @@
30
30
  "lint": "eslint -c .eslintrc --ext .ts src",
31
31
  "format": "prettier --check --write src/**/*.ts --config .prettierrc",
32
32
  "pretest:integration": "npm run build && npm link",
33
- "publish": "npm publish --access public",
34
33
  "test": "jest"
35
34
  },
36
35
  "devDependencies": {