Skip to content

Commit aa6f43e

Browse files
authored
Merge branch 'main' into 3322-introduce-invoker-commands-instead-of-js-glue-code
2 parents 948369d + 812920d commit aa6f43e

File tree

1,048 files changed

+9396
-13674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,048 files changed

+9396
-13674
lines changed

.config/.lintstagedrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default {
33
// In case that we're changing the stylelints configuration files content, we would need to validate it
44
'.stylelintrc.*': 'stylelint --validate --allow-empty-input',
55
'stylelint.config.*': 'stylelint --validate --allow-empty-input',
6-
// and elsewhere we don't, compare to https://github.com/stylelint/stylelint/pull/8009
6+
// And elsewhere we don't, compare to https://github.com/stylelint/stylelint/pull/8009
77
'*.{css,scss}': 'stylelint --fix --allow-empty-input --no-validate',
88
'*.{js,ts,tsx,jsx,mjs,cjs}': 'xo --fix'
99
};

.config/ignores.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const ignoreFolders = [
2+
'node_modules/**/*',
3+
'build/**/*',
4+
'.config/**/*',
5+
'public/**/*',
6+
'out/**/*',
7+
'helpers/**/*',
8+
'dist/**/*',
9+
'packages/**/*',
10+
'showcases/patternhub/pages/components/**/*',
11+
'showcases/nuxt-showcase/**/*',
12+
'showcases/next-showcase/**/*',
13+
'showcases/angular-ssr-showcase/**/*',
14+
'build-outputs/**/*',
15+
'build-showcases/**/*',
16+
'output/**/*',
17+
'**/playwright.*.ts'
18+
];
19+
20+
export default ignoreFolders;

.eslintignore

Lines changed: 0 additions & 14 deletions
This file was deleted.

.eslintrc.mjs

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ body:
77
- type: markdown
88
attributes:
99
value: |
10-
Thanks for taking the time to fill out this bug report! Feedback by the community has a very high value for us, to improve our work and to have every other user benefit from it as well. 🙂
10+
Thank you for taking the time to fill out this bug report! Feedback from the community is highly valuable to us, as it helps improve our work and benefits all users. 🙂
1111
1212
- type: checkboxes
1313
id: component
1414
attributes:
15-
label: Which generators are impacted?
15+
label: Which generators are affected?
1616
description: Select all the ones that apply, to the best of your knowledge.
1717
options:
1818
- label: All
@@ -51,7 +51,7 @@ body:
5151
required: false
5252
attributes:
5353
label: Browser version
54-
description: Does this bug affect specific browser?
54+
description: Does this bug affect a specific browser?
5555
options:
5656
- Chrome
5757
- Safari

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<!-- What types of changes does your code introduce?
88
_Put an `x` in the boxes that apply_ -->
99

10-
- [ ] Bugfix (non-breaking change which fixes an issue)
10+
- [ ] Bugfix (non-breaking change that fixes an issue)
1111
- [ ] New feature (non-breaking change which adds functionality)
12-
- [ ] Refactoring (fix on existing components or architectural decisions)
12+
- [ ] Refactoring (improvements to existing components or architectural decisions)
1313
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
1414
- [ ] Documentation Update (if none of the other choices apply)
1515

.github/actions/npm-cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
nodeVersion:
1414
description: "Node version"
1515
required: false
16-
default: "22"
16+
default: "24"
1717
runs:
1818
using: "composite"
1919
steps:

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ updates:
5555
playwright:
5656
patterns:
5757
- "@playwright*"
58+
- "playwright*"
5859
angular:
5960
patterns:
6061
- "@angular*"

.github/labeler.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@
2323
📺showcases:
2424
- changed-files:
2525
- any-glob-to-any-file: "showcases/**"
26+
27+
# Add 'configuration' label to any file changes for configuration files
28+
🛠️configuration:
29+
- changed-files:
30+
- any-glob-to-any-file: ".config/**"

.github/workflows/01-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616

1717
- name: ⚡ Run Lint
1818
run: |
19+
npm run postinstall --workspace=nuxt-showcase
1920
npm run build --workspace=@db-ux/core-stylelint
2021
npm run lint
2122

0 commit comments

Comments
 (0)