This repository is created for testing Dependabot updates using the bun package manager. It includes a bun.lock
file and a Dependabot configuration file specifying the npm_and_yarn
ecosystem.
The purpose of this repository is to provide a minimal setup for testing Dependabot updates. It uses the bun package manager to manage dependencies and includes a bun.lock
file to ensure consistent installations.
- Initialize the repository with a
package.json
file usingbun init
. - Install example dependencies using
bun add express lodash
to generate abun.lock
file. - Configure Dependabot by creating a
.github/dependabot.yml
file with the following content:version: 2 updates: - package-ecosystem: "npm" directory: "/" schedule: interval: "daily"
- express
- lodash
The .github/dependabot.yml
file is used to configure Dependabot for the npm_and_yarn
ecosystem. Dependabot will check for updates daily and create pull requests for any available updates.