Skip to content

Commit 6f34efb

Browse files
authored
fix: 258-patch dependencies (#493)
1 parent 916b13d commit 6f34efb

File tree

6 files changed

+166
-161
lines changed

6 files changed

+166
-161
lines changed

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 252-patch
99
- 254-patch
1010
- 256-patch
11+
- 258-patch
1112
tags-ignore:
1213
- '*'
1314
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
#ctc: true
4949
sign: true
5050
# At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest'
51-
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }}
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '3' && 'latest') || (needs.getMajorVersion.outputs.major == '4' && 'prerelease') || 'next' }}
5252
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5353

5454
secrets: inherit

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
4+
branches-ignore: [main, 252-patch, 254-patch, 256-patch, 258-patch]
55
workflow_dispatch:
66

77
jobs:

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
types: [opened, reopened, edited]
66
# only applies to PRs that want to merge to main
7-
branches: [main, 252-patch, 254-patch]
7+
branches: [main, 252-patch, 254-patch, 256-patch, 258-patch]
88

99
jobs:
1010
pr-validation:

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"dependencies": {
88
"@inquirer/prompts": "^5.3.8",
99
"@inquirer/select": "^2.4.7",
10-
"@lwc/lwc-dev-server": "~13.2.2",
11-
"@lwc/sfdc-lwc-compiler": "~13.2.2",
10+
"@lwc/lwc-dev-server": "~13.1.2",
11+
"@lwc/sfdc-lwc-compiler": "~13.1.2",
1212
"@lwrjs/api": "0.18.3",
1313
"@oclif/core": "^4.5.0",
1414
"@salesforce/core": "^8.21.2",
@@ -18,7 +18,7 @@
1818
"axios": "^1.11.0",
1919
"glob": "^10.4.5",
2020
"lightning-base-components": "1.27.2-alpha",
21-
"lwc": "~8.21.2",
21+
"lwc": "~8.20.4",
2222
"node-fetch": "^3.3.2",
2323
"open": "^10.2.0",
2424
"xml2js": "^0.6.2"
@@ -237,8 +237,8 @@
237237
"The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports."
238238
],
239239
"target": {
240-
"versionNumber": "66.0",
241-
"matchingDevServerVersion": "~13.0.27"
240+
"versionNumber": "65.0",
241+
"matchingDevServerVersion": "~13.1.2"
242242
},
243243
"versionToTagMappings": [
244244
{
@@ -247,10 +247,14 @@
247247
},
248248
{
249249
"versionNumber": "63.0",
250-
"tagName": "latest"
250+
"tagName": "v2"
251251
},
252252
{
253253
"versionNumber": "64.0",
254+
"tagName": "latest"
255+
},
256+
{
257+
"versionNumber": "65.0",
254258
"tagName": "prerelease"
255259
},
256260
{

0 commit comments

Comments
 (0)