Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #630

Merged
merged 4 commits into from
Nov 20, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
node: [22]

steps:
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
node: [22]

steps:
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
node: [22]

steps:
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
node: [22]
steps:
- name: Download Artifact (Docs)
uses: actions/download-artifact@v4
Expand Down
67 changes: 0 additions & 67 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/sonar-cloud.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
node: [22]

steps:
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.13.1
22
1 change: 0 additions & 1 deletion build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default {
'@vitejs/plugin-vue',
'lodash-es',
'vite',
'@unplugin-vue-ce/sub-style',
'vue-loader',
'lodash-es',
'vue-web-component-wrapper'
Expand Down
7 changes: 5 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import pluginSecurity from 'eslint-plugin-security';

export default withNuxt({
files: ['**/*.js', '**/*.vue'],
ignores: eslintIgnores,
rules: {
'prettier/prettier': 'error',
classPrivateMethods: 'off',
Expand Down Expand Up @@ -39,4 +38,8 @@ export default withNuxt({
'vue/multi-word-component-names': 'off',
'vue/html-self-closing': 'off' // prettier conflict
}
}).prepend(pluginSecurity.configs.recommended, eslintPluginPrettierRecommended);
}).prepend(
eslintIgnores,
pluginSecurity.configs.recommended,
eslintPluginPrettierRecommended
);
32 changes: 17 additions & 15 deletions eslint.ignores.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
export default [
// Common
'node_modules',
'dist',
'.nuxt',
'coverage',
'.reports',
'publish',
'sw.js',
'.output',
export default {
ignores: [
// Common
'node_modules',
'dist',
'.nuxt',
'coverage',
'.reports',
'publish',
'sw.js',
'.output',

// Docs
'src/tmpl',
'docs/.vitepress/dist',
'docs/.vitepress/cache'
];
// Docs
'src/tmpl',
'docs/.vitepress/dist',
'docs/.vitepress/cache'
]
};
Loading