From: Evert Timberg Date: Mon, 15 Feb 2021 20:25:10 +0000 (-0500) Subject: Remove unused typedoc option that is deprecated (#8433) X-Git-Tag: v3.0.0-beta.11~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19a91bebfbed1ed5c57ccda02563147512350569;p=thirdparty%2FChart.js.git Remove unused typedoc option that is deprecated (#8433) * Remove unused typedoc option that is deprecated * Improved filtering for top level file changes --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72b104e2e..49a4c85e3 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 diff --git a/tsconfig.json b/tsconfig.json index cef120d24..1765c6eec 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" },