Skip to content

Commit

Permalink
CI: Configure Dependabot for ESM on master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Aug 2, 2022
1 parent 2924f8e commit 34fd668
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:

# CommonJS
# CommonJS (CJS)
- package-ecosystem: npm
directory: "/"
schedule:
Expand All @@ -11,22 +11,23 @@ updates:
labels:
- dependencies
- CJS
target-branch: "common-js"
versioning-strategy: increase
ignore:
- dependency-name: "@types/node"
update-types: [ "version-update:semver-patch" ]
- dependency-name: "mocha"
update-types: [ "version-update:semver-major" ]

# TypeScript Module
# ECMAScript Module (ESM)
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
time: "06:00"
open-pull-requests-limit: 10
versioning-strategy: increase
target-branch: "es-module"
target-branch: "master"
labels:
- dependencies
- ESM

0 comments on commit 34fd668

Please sign in to comment.