From 5e14b50586966c32a30e40f58a286a125998ed1c Mon Sep 17 00:00:00 2001 From: Donavan Becker Date: Sun, 5 Nov 2023 16:31:28 -0600 Subject: [PATCH] v2.2.4 (#557) ### Bug Fixes * fix for lib folder missing ([#556](https://github.com/homebridge/camera-utils/issues/556)) --- package-lock.json | 4 ++-- package.json | 10 ++-------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 427270e..d17d229 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@homebridge/camera-utils", - "version": "2.2.3", + "version": "2.2.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@homebridge/camera-utils", - "version": "2.2.3", + "version": "2.2.4", "license": "MIT", "dependencies": { "execa": "^5.1.1", diff --git a/package.json b/package.json index 04f3e03..b0359e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@homebridge/camera-utils", - "version": "2.2.3", + "version": "2.2.4", "description": "Utilities to simplify homebridge camera plugin development", "main": "lib/index.js", "scripts": { @@ -11,6 +11,7 @@ "watch:link": "npm link && tsc --watch --declaration", "lint": "eslint '**/*.ts' --fix", "build": "rm -rf lib && tsc --declaration", + "prepublishOnly": "npm i --package-lock-only && npm run lint && npm run build", "push-with-tags": "git push --follow-tags && node ./build/github-releaser.js", "deploy": "standard-version && npm publish --access public && npm run push-with-tags", "deploy-beta": "standard-version --prerelease beta && npm publish --tag beta --access public && npm run push-with-tags" @@ -20,13 +21,6 @@ "prerelease": "npm run build && npm test" } }, - "files": [ - ".github/", - "lib/**/*", - "CHANGELOG.md", - "README.md", - "package.json" - ], "repository": { "type": "git", "url": "git+https://github.com/homebridge/camera-utils.git"