From 7399c32a912eb8c0609ec951089b008ab99be01b Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Mon, 15 Feb 2021 15:15:41 -0500 Subject: [PATCH 1/2] Remove unused typedoc option that is deprecated --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index cef120d24d8..1765c6eec63 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,6 @@ "name": "Chart.js", "entryPoints": ["src/index.esm.js"], "excludeExternals": true, - "excludeNotExported": true, "includeVersion": true, "out": "./dist/docs/typedoc" }, From 879d956996cc1f47843c3ebafec2d094ddc366dd Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Mon, 15 Feb 2021 15:18:09 -0500 Subject: [PATCH 2/2] Improved filtering for top level file changes --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72b104e2e45..49a4c85e3f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,13 +34,19 @@ jobs: filters: | docs: - 'docs/**' + - 'package.json' + - 'tsconfig.json' src: - 'src/**' + - 'package.json' test: - 'test/**' - 'karma.conf.js' + - 'package.json' types: - 'types/**' + - 'package.json' + - 'tsconfig.json' - name: Install run: npm ci - name: Build