@monderks/nestjs-keycloak-auth 0.3.2 → 0.3.3

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 +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monderks/nestjs-keycloak-auth",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Librería para validación de tokens Keycloak en NestJS (frontend controla login)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,10 @@
11
11
  "lint": "eslint src/**/*.ts",
12
12
  "format": "prettier --write src/**/*.ts",
13
13
  "prepare": "npm run build",
14
- "publish": "npm publish --access public"
14
+ "publish": "npm publish --access public",
15
+ "release:patch": "npm version patch && npm run build && npm publish --access public",
16
+ "release:minor": "npm version minor && npm run build && npm publish --access public",
17
+ "release:major": "npm version major && npm run build && npm publish --access public"
15
18
  },
16
19
  "repository": {
17
20
  "type": "git",