pi-kiosk-shared 2.2.26 → 2.2.27

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 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-kiosk-shared",
3
- "version": "2.2.26",
3
+ "version": "2.2.27",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Shared types, API contracts, and error classes for Pi Kiosk system",
@@ -183,7 +183,8 @@
183
183
  "tailwind-variants": "^0.3.0"
184
184
  },
185
185
  "scripts": {
186
- "build": "npm run clean && tsc",
186
+ "build": "tsc",
187
+ "build:clean": "npm run clean && tsc",
187
188
  "dev": "tsc --watch",
188
189
  "type-check": "tsc --noEmit",
189
190
  "lint": "npm run type-check",
@@ -194,8 +195,8 @@
194
195
  "storybook": "storybook dev -p 6006",
195
196
  "build-storybook": "storybook build",
196
197
  "clean": "rimraf dist",
197
- "publish:local": "npm run build && npm pack --pack-destination ../",
198
- "prepublishOnly": "npm run build",
198
+ "publish:local": "npm run build:clean && npm pack --pack-destination ../",
199
+ "prepublishOnly": "npm run build:clean",
199
200
  "preversion": "npm run test -- --passWithNoTests",
200
201
  "postversion": "echo 'Version updated. Run git push && git push --tags manually if needed.'",
201
202
  "audit:deps": "npm audit --audit-level=high",