@wenex/sdk 1.0.18 → 1.0.19

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 (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenex/sdk",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Wenex SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -22,14 +22,17 @@
22
22
  "scripts": {
23
23
  "build": "tsc -p ./tsconfig.json",
24
24
  "prebuild": "rimraf tsconfig.tsbuildinfo index.* common services",
25
- "prepare": "husky",
25
+ "prepare": "echo -e \"prepare for development by:\" npm run husky",
26
26
  "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
27
27
  "lint": "eslint \"{src,test}/**/*.ts\" --quiet --fix",
28
28
  "test": "jest",
29
+ "husky": "husky",
29
30
  "test:cov": "jest --coverage && npm run make-coverage-badge",
30
31
  "doc": "npx typedoc --entryPointStrategy expand --out docs src/",
31
32
  "check": "madge --circular --warning --ts-config ./tsconfig.json --extensions ts --image circular-dependencies.png ./src",
32
- "make-coverage-badge": "make-coverage-badge --report-path coverage/coverage-summary.json --output-path coverage-badge.svg"
33
+ "make-coverage-badge": "make-coverage-badge --report-path coverage/coverage-summary.json --output-path coverage-badge.svg",
34
+ "git": "bash ./scripts/git-submodule.sh",
35
+ "git:clone": "git submodule update --init --recursive"
33
36
  },
34
37
  "lint-staged": {
35
38
  "*.ts": [