Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

Commit

Permalink
fix: continue dropping Node 8
Browse files Browse the repository at this point in the history
  • Loading branch information
tdreyno committed Jan 10, 2021
1 parent 33c8ec7 commit 17c0628
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 24 deletions.
16 changes: 6 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: '13:00'
open-pull-requests-limit: 10
ignore:
- dependency-name: jest
versions:
- ">= 26.a, < 27"
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "12", "10", "8"]
node: ["14", "12", "10"]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@master
Expand Down
43 changes: 30 additions & 13 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,18 +1,35 @@
{
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/npm", {
"pkgRoot": "pkg"
}],
["@semantic-release/git", {
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
["@semantic-release/github", {
"assets": [
{"path": "pkg/dist-web/index.min.js", "label": "Minified Web Distribution"}
]
}]
[
"@semantic-release/npm",
{
"pkgRoot": "pkg"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "pkg/dist-web/index.min.js",
"label": "Minified Web Distribution"
}
]
}
]
]
}
}

0 comments on commit 17c0628

Please sign in to comment.