@sklv-labs/ts-dev-configs 0.1.0 → 0.1.1

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": "@sklv-labs/ts-dev-configs",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Unified development configurations for TypeScript projects with support for React, NestJS, and more",
5
5
  "keywords": [
6
6
  "typescript",
@@ -66,7 +66,10 @@
66
66
  },
67
67
  "scripts": {
68
68
  "type-check": "tsc --noEmit",
69
- "prepublishOnly": "npm run type-check"
69
+ "prepublishOnly": "npm run type-check",
70
+ "version:patch": "npm version patch && git push --follow-tags",
71
+ "version:minor": "npm version minor && git push --follow-tags",
72
+ "version:major": "npm version major && git push --follow-tags"
70
73
  },
71
74
  "engines": {
72
75
  "node": ">=24.0.0"