Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tboerger/slidev-theme-meetup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: tboerger/slidev-theme-meetup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
14 changes: 0 additions & 14 deletions .eslintrc.js

This file was deleted.

5 changes: 0 additions & 5 deletions .gitattributes

This file was deleted.

128 changes: 64 additions & 64 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"extends": [
"config:base",
":semanticCommits",
":semanticCommitType(deps)",
":automergeMinor"
],
"packageRules": [
{
"description": "Semantic commits for major updates",
"groupName": "major updates",
"matchDatasources": [
"npm"
],
"matchUpdateTypes": [
"major"
],
"semanticCommitType": "deps",
"semanticCommitScope": "major",
"automerge": false
},
{
"description": "Semantic commits for minor updates",
"groupName": "minor updates",
"matchDatasources": [
"npm"
],
"matchUpdateTypes": [
"minor"
],
"semanticCommitType": "deps",
"semanticCommitScope": "minor",
"automerge": true
},
{
"description": "Semantic commits for patch updates",
"groupName": "patch updates",
"matchDatasources": [
"npm"
],
"matchUpdateTypes": [
"patch"
],
"semanticCommitType": "deps",
"semanticCommitScope": "patch",
"automerge": true
},
{
"description": "Semantic commits for tools updates",
"groupName": "tools updates",
"matchDatasources": [
"npm"
],
"matchDepTypes": [
"devDependencies"
],
"semanticCommitType": "ci",
"semanticCommitScope": "tools",
"automerge": true
}
],
"labels": [
"renovate"
]
}
"extends": [
"config:base",
":semanticCommits",
":semanticCommitType(deps)"
],
"packageRules": [
{
"description": "Semantic commits for major updates",
"groupName": "major versions",
"matchUpdateTypes": [
"major"
],
"semanticCommitType": "major",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Semantic commits for minor updates",
"groupName": "minor versions",
"matchUpdateTypes": [
"minor"
],
"semanticCommitType": "minor",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Semantic commits for patch updates",
"groupName": "patch versions",
"matchUpdateTypes": [
"patch"
],
"semanticCommitType": "patch",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Semantic commits for tools updates",
"groupName": "tools updates",
"matchDatasources": [
"npm"
],
"matchDepTypes": [
"devDependencies"
],
"semanticCommitType": "ci",
"semanticCommitScope": "tools",
"automerge": true
},
{
"description": "Build tool version upgrades",
"groupName": "build tools",
"matchManagers": [
"github-actions"
],
"semanticCommitType": "ci",
"semanticCommitScope": "tools",
"automerge": true
}
],
"labels": [
"renovate"
]
}
20 changes: 12 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -5,33 +5,37 @@ name: build
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout source
id: source
uses: actions/checkout@v3
with:
lfs: true
uses: actions/checkout@v4

- name: Setup nodejs
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- name: Install deps
run: npm ci

- name: Run linting
run: npm run lint

- name: Run build
run: npm run build

- name: Run release
run: npm run release
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release

...
23 changes: 0 additions & 23 deletions .github/workflows/lock.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/react.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/tests.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.direnv
.devenv

/node_modules
/dist

Loading