From 26e70b7608e821ffef51fe25cfeace6c87560b41 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sun, 24 Jul 2022 14:42:33 -0400 Subject: [PATCH] Explicitly include package.json files for subpackages (#10513) Remove redundant permissions on release CI to prevent a failure Bump version to v3.8.2 Co-authored-by: Chart.js <> --- .github/workflows/release.yml | 3 --- package-lock.json | 4 ++-- package.json | 4 +++- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24a19d9185f..c8b31bd44dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,9 +6,6 @@ on: contents: write # for actions/upload-release-asset to upload release asset types: [published] -permissions: - contents: read - jobs: setup: permissions: diff --git a/package-lock.json b/package-lock.json index 82cfc69c450..830b675e5fa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "chart.js", - "version": "3.8.1", + "version": "3.8.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "chart.js", - "version": "3.8.1", + "version": "3.8.2", "license": "MIT", "devDependencies": { "@kurkle/color": "^0.2.1", diff --git a/package.json b/package.json index 1c723b4ed45..0f98b7f8c74 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "chart.js", "homepage": "https://www.chartjs.org", "description": "Simple HTML5 charts using the canvas element.", - "version": "3.8.1", + "version": "3.8.2", "license": "MIT", "jsdelivr": "dist/chart.min.js", "unpkg": "dist/chart.min.js", @@ -25,12 +25,14 @@ "url": "https://github.com/chartjs/Chart.js/issues" }, "files": [ + "auto/package.json", "auto/**/*.js", "auto/**/*.d.ts", "dist/*.js", "dist/chunks/*.js", "types/*.d.ts", "types/helpers/*.d.ts", + "helpers/package.json", "helpers/**/*.js", "helpers/**/*.d.ts" ],