Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ name: Lint CI

on: [push]

permissions: {}

jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [20.x]
node-version: [26.x]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# bedrock-vue ChangeLog

## 5.2.0 - 2026-xx-xx

### Changed
- Update dependencies.
- `@bedrock/web@3.1.0`.
- `vue@3.5.38`.
- `vue-router@5.1.0`.
- Update dev dependencies.

## 5.1.0 - 2024-02-28

### Changed
Expand Down
23 changes: 8 additions & 15 deletions .eslintrc.cjs → eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright 2024 Digital Bazaar, Inc.
* Copyright 2024 - 2026 Digital Bazaar, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,17 +16,10 @@
* SPDX-License-Identifier: Apache-2.0
*/

module.exports = {
root: true,
env: {
browser: true,
node: true
},
extends: [
'digitalbazaar',
'digitalbazaar/jsdoc',
'digitalbazaar/module',
'digitalbazaar/vue'
],
ignorePatterns: ['node_modules/']
};
import nodeConfig from '@digitalbazaar/eslint-config/node-recommended';
import vue3Config from '@digitalbazaar/eslint-config/vue3-recommended';

export default [
...nodeConfig,
...vue3Config
];
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,16 @@
"lint": "eslint ."
},
"peerDependencies": {
"@bedrock/web": "^3.0.0",
"vue": "^3.2.36",
"vue-router": "^4.0.15"
"@bedrock/web": "^3.1.0",
"vue": "^3.5.38",
"vue-router": "^5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-vue"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-vue": "^9.19.2",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
"@digitalbazaar/eslint-config": "^8.0.1",
"eslint": "^9.39.4"
}
}