Skip to content

Commit

Permalink
Merge pull request #630 from GrabarzUndPartner/renovate/all-minor-patch
Browse files Browse the repository at this point in the history
chore(deps): update all non-major dependencies
  • Loading branch information
ThornWalli authored Nov 20, 2024
2 parents cfb08b3 + f17eeb2 commit cbaa7d4
Show file tree
Hide file tree
Showing 14 changed files with 5,764 additions and 3,947 deletions.
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

0 comments on commit cbaa7d4

Please sign in to comment.