@monocloud/auth-node-core 0.1.2 → 0.1.4

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 +1 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -20,6 +20,7 @@ The SDK handles:
20
20
  ## 📘 Documentation
21
21
 
22
22
  - **Documentation:** [https://www.monocloud.com/docs](https://www.monocloud.com/docs?utm_source=github&utm_medium=auth_js)
23
+ - **API Reference:** [https://monocloud.github.io/auth-js](https://monocloud.github.io/auth-js?utm_source=github&utm_medium=auth_js)
23
24
 
24
25
  ## Supported Platforms
25
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monocloud/auth-node-core",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MonoCloud NodeJS Authentication Core SDK",
5
5
  "keywords": [
6
6
  "monocloud",
@@ -57,7 +57,7 @@
57
57
  "joi": "18.0.2",
58
58
  "jose": "6.1.3",
59
59
  "uuid": "13.0.0",
60
- "@monocloud/auth-core": "0.1.1"
60
+ "@monocloud/auth-core": "0.1.3"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/debug": "4.1.12",
@@ -74,7 +74,7 @@
74
74
  "lint:es": "eslint src tests",
75
75
  "lint:ts": "tsc",
76
76
  "lint": "pnpm run lint:es && pnpm run lint:ts",
77
- "test": "eslint tests && rimraf coverage && vitest --config vitest.node.config.mts --reporter=junit --outputFile=coverage/junit.node.xml && vitest --config vitest.edge.config.mts --reporter=junit --outputFile=coverage/junit.edge.xml && pnpm report",
77
+ "test": "eslint tests && rimraf coverage && vitest --config vitest.node.config.mts && vitest --config vitest.edge.config.mts && pnpm report",
78
78
  "report": "shx cp ./coverage/node/coverage-final.json ./coverage/coverage-0.json && shx cp ./coverage/edge/coverage-final.json ./coverage/coverage-1.json && nyc merge ./coverage ./coverage/coverage.json && nyc report --reporter json-summary --reporter html --reporter text -t ./coverage --report-dir ./coverage/summary && npx @monocloud/auth-test-utils check-coverage"
79
79
  }
80
80
  }