Skip to content

Commit 035f130

Browse files
committed
Merge remote-tracking branch 'origin/master' into nolan/node-engines
2 parents 8f6f49d + d10cdb0 commit 035f130

File tree

2,902 files changed

+44871
-9532
lines changed

Some content is hidden

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

2,902 files changed

+44871
-9532
lines changed

.eslintrc-backup

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

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ versions < 0.17: "lwc-engine": "0.16.8"
4242
versions >= 0.17: "lwc-engine": "0.17.2"
4343
-->
4444

45-
- LWC: x.x.x
45+
- LWC: x.x.x
4646

4747
**Possible Solution**
4848

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
Remove the incorrect item for the list.
1414
-->
1515

16-
- 😮‍💨 No, it does not introduce a breaking change.
17-
- 💔 Yes, it does introduce a breaking change.
16+
- 😮‍💨 No, it does not introduce a breaking change.
17+
- 💔 Yes, it does introduce a breaking change.
1818

1919
<!-- If yes, please describe the impact and migration path for existing applications. -->
2020

@@ -33,8 +33,8 @@
3333
Remove the incorrect item from the list.
3434
-->
3535

36-
- 🤞 No, it does not introduce an observable change.
37-
- 🔬 Yes, it does include an observable change.
36+
- 🤞 No, it does not introduce an observable change.
37+
- 🔬 Yes, it does include an observable change.
3838

3939
<!-- If yes, please describe the anticipated observable changes. -->
4040

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,48 @@ updates:
77
directory: '/' # Location of package manifests
88
schedule:
99
interval: 'weekly'
10+
ignore:
11+
# As a library, we want to avoid bumping TypeScript, so that we don't accidentally use
12+
# language features from a version newer than our downstream users have installed
13+
- dependency-name: typescript
1014
groups:
1115
babel:
1216
patterns:
1317
- '@babel/*'
18+
update-types:
19+
- 'major'
1420
best:
1521
patterns:
1622
- 'best'
1723
- '@best/*'
24+
update-types:
25+
- 'major'
1826
nx:
1927
patterns:
2028
- 'nx'
2129
- '@nx/*'
30+
update-types:
31+
- 'major'
2232
rollup:
2333
patterns:
2434
- 'rollup'
2535
- '@rollup/*'
36+
update-types:
37+
- 'major'
2638
webdriverio:
2739
patterns:
2840
- 'webdriverio'
2941
- '@wdio/*'
42+
update-types:
43+
- 'major'
44+
prettier:
45+
patterns:
46+
- 'prettier'
47+
update-types:
48+
- 'major'
49+
# Prettier can introduce formatting differences in minor versions,
50+
# which causes formatting checks to fail in CI.
51+
- 'minor'
3052
# Non-major version bumps hopefully shouldn't break anything,
3153
# so let's group them together into a single PR!
3254
theoretically-non-breaking:

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: salesforce-Ubuntu
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Setup Node
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: '20.9.0' # earliest node version we support (via "engines" in package.json)
2828
cache: 'yarn'

0 commit comments

Comments
 (0)