@hed-hog/cli 0.0.51 → 0.0.52

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hed-hog/cli",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "HedHog CLI tool",
5
5
  "author": "HedHog",
6
6
  "private": false,
@@ -23,7 +23,7 @@
23
23
  "hh": "./dist/src/main.js"
24
24
  },
25
25
  "scripts": {
26
- "prebuild": "rimraf dist && npm run format",
26
+ "prebuild": "rimraf dist && npm run format && npm run validate:templates",
27
27
  "build": "nest build",
28
28
  "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
29
29
  "start": "ts-node src/main",
@@ -34,7 +34,8 @@
34
34
  "test:watch": "jest --watch",
35
35
  "test:cov": "jest --coverage",
36
36
  "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
37
- "test:e2e": "jest --config ./test/jest-e2e.json"
37
+ "test:e2e": "jest --config ./test/jest-e2e.json",
38
+ "validate:templates": "node scripts/validate-deployment-templates.js"
38
39
  },
39
40
  "dependencies": {
40
41
  "@nestjs/common": "^11.0.1",