From 2163399d8d8a226938c9d79c859155e2e2dd6acc Mon Sep 17 00:00:00 2001 From: Jonathan Ho Date: Sun, 10 Dec 2023 05:13:01 -0800 Subject: [PATCH] ci: add dependabot (#3272) * ci: add dependabot * fix: bin/** * ci: add update github-actions * Update dependabot.yml --------- Co-authored-by: Fleny --- .github/dependabot.yml | 17 +++++++++++++++++ .npmignore | 5 +---- 2 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..f2cc4bd74 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# Basic `dependabot.yml` file with +# minimum configuration for two package managers + +version: 2 +updates: + # Enable version updates for npm + - package-ecosystem: 'npm' + # Look for `package.json` and `lock` files in the `root` directory + directory: '/' + # Check the npm registry for updates every day (weekdays) + schedule: + interval: 'daily' + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + # Check for updates to GitHub Actions every week + interval: 'daily' diff --git a/.npmignore b/.npmignore index a83b24dd8..b92f730d8 100644 --- a/.npmignore +++ b/.npmignore @@ -5,7 +5,4 @@ !package.json !README.md !dist/** -!bin/dist/** - -# but not tsc cache -dist/tsconfig.tsbuildinfo \ No newline at end of file +!bin/**