From 43ccd319792e740e7630177aadebbc0b0b7bd628 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 21 Mar 2022 06:22:15 -0700 Subject: [PATCH] Remove version field from package.json The `version` field is only needed if the package is to be published. In this project, package.json is only used for manage dependencies and scripts for internal development. For this reason, having a `version` field is harmful because it increases the effort and complexity of making a release, and also is likely to get out of sync with the true version. --- package-lock.json | 1 - package.json | 1 - 2 files changed, 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 64883b7..43ab516 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,6 @@ "packages": { "": { "name": "arduino-lint-action", - "version": "1.0.0", "license": "MIT", "dependencies": { "@actions/core": "^1.6.0", diff --git a/package.json b/package.json index 7d4094d..c8c9d6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { "name": "arduino-lint-action", - "version": "1.0.0", "private": true, "description": "Check Arduino projects for problems", "main": "lib/main.js",