bard-legends-framework 1.0.7 → 1.0.9

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": "bard-legends-framework",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Bard Legends Framework",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {
@@ -32,11 +32,12 @@
32
32
  "i": "npm cache clean --force && npm install",
33
33
  "pretest": "cls",
34
34
  "test": "vitest run --mode=quick",
35
- "test-full": "vitest run",
35
+ "test-full": "vitest run && npm run type-check",
36
36
  "build": "npx ts-node scripts/generate-mangle-cache.ts && tsc -p tsconfig.build.json && tsup && npx ts-node scripts/remove-private-properties-from-build.ts && npm run restart-vitest",
37
37
  "restart-vitest": "touch vitest.config.ts",
38
38
  "lint": "biome check . --write --max-diagnostics=1",
39
- "deploy": "vitest run && npm run build && npm publish",
39
+ "type-check": "tsc --noEmit",
40
+ "deploy": "npm run test-full && npm run build && npm publish",
40
41
  "prepack": "cp package.json package.json.bak && ts-node scripts/prepare-package-json.ts",
41
42
  "postpack": "mv package.json.bak package.json"
42
43
  },