Skip to content

Commit c1fc4ee

Browse files
renovate[bot]ardatangithub-actions[bot]
authored
fix(deps): update prettier to v3 (major) (#9623)
* fix(deps): update prettier to v3 * Prettier * Remove lodash * chore(dependencies): updated changesets for modified dependencies * chore(dependencies): updated changesets for modified dependencies * Fix devtest * concurrency * Update unit tests * Fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2041865 commit c1fc4ee

File tree

563 files changed

+35444
-12740
lines changed

Some content is hidden

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

563 files changed

+35444
-12740
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ blank_issues_enabled: false
22
contact_links:
33
- name: Have a question?
44
url: https://github.com/dotansimha/graphql-code-generator/discussions/new
5-
about: Not sure about something? need help from the community? have a question to our team? please ask and answer questions here.
5+
about:
6+
Not sure about something? need help from the community? have a question to our team? please
7+
ask and answer questions here.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ body:
4646
id: description
4747
attributes:
4848
label: Is your feature request related to a problem? Please describe.
49-
description: "A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]"
49+
description:
50+
"A clear and concise description of what the problem is. Ex. I'm always frustrated when
51+
[...]"
5052
validations:
5153
required: true
5254
- type: textarea
@@ -60,7 +62,8 @@ body:
6062
id: alternatives
6163
attributes:
6264
label: Describe alternatives you've considered
63-
description: "A clear and concise description of any alternative solutions or features you've considered."
65+
description:
66+
"A clear and concise description of any alternative solutions or features you've considered."
6467
validations:
6568
required: false
6669
- type: textarea

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
🚨 **IMPORTANT: Please do not create a Pull Request without creating an issue first.**
22

3-
_Any change needs to be discussed before proceeding. Failure to do so may result in the rejection of the pull request._
3+
_Any change needs to be discussed before proceeding. Failure to do so may result in the rejection of
4+
the pull request._
45

56
## Description
67

7-
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
8+
Please include a summary of the change and which issue is fixed. Please also include relevant
9+
motivation and context. List any dependencies that are required for this change.
810

911
Related # (issue)
1012

@@ -18,16 +20,19 @@ Please delete options that are not relevant.
1820

1921
- [ ] Bug fix (non-breaking change which fixes an issue)
2022
- [ ] New feature (non-breaking change which adds functionality)
21-
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
23+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as
24+
expected)
2225
- [ ] This change requires a documentation update
2326

2427
## Screenshots/Sandbox (if appropriate/relevant):
2528

26-
Adding links to sandbox or providing screenshots can help us understand more about this PR and take action on it as appropriate
29+
Adding links to sandbox or providing screenshots can help us understand more about this PR and take
30+
action on it as appropriate
2731

2832
## How Has This Been Tested?
2933

30-
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
34+
Please describe the tests that you ran to verify your changes. Provide instructions so we can
35+
reproduce. Please also list any relevant details for your test configuration
3136

3237
- [ ] Test A
3338
- [ ] Test B
@@ -40,7 +45,9 @@ Please describe the tests that you ran to verify your changes. Provide instructi
4045

4146
## Checklist:
4247

43-
- [ ] I have followed the [CONTRIBUTING](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md) doc and the style guidelines of this project
48+
- [ ] I have followed the
49+
[CONTRIBUTING](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md) doc and the
50+
style guidelines of this project
4451
- [ ] I have performed a self-review of my own code
4552
- [ ] I have commented my code, particularly in hard-to-understand areas
4653
- [ ] I have made corresponding changes to the documentation
@@ -51,4 +58,5 @@ Please describe the tests that you ran to verify your changes. Provide instructi
5158

5259
## Further comments
5360

54-
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...
61+
If this is a relatively large or complex change, kick off the discussion by explaining why you chose
62+
the solution you did and what alternatives you considered, etc...

.github/workflows/main.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
branches:
99
- master
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1115
env:
1216
NODE_OPTIONS: '--max_old_space_size=4096'
1317
CARGO_TERM_COLOR: always
@@ -122,7 +126,9 @@ jobs:
122126
- name: Test ESM & CJS integrity
123127
run: yarn bob check
124128
test:
125-
name: Unit Test on Node ${{matrix.node_version}} (${{matrix.os}}) and GraphQL v${{matrix.graphql_version}}
129+
name:
130+
Unit Test on Node ${{matrix.node_version}} (${{matrix.os}}) and GraphQL
131+
v${{matrix.graphql_version}}
126132
runs-on: ubuntu-latest
127133
needs:
128134
- lint
@@ -157,7 +163,9 @@ jobs:
157163
CI: true
158164

159165
test-watcher:
160-
name: Watcher Unit Test on Node ${{matrix.node_version}} (${{matrix.os}}) and GraphQL v${{matrix.graphql_version}}
166+
name:
167+
Watcher Unit Test on Node ${{matrix.node_version}} (${{matrix.os}}) and GraphQL
168+
v${{matrix.graphql_version}}
161169
runs-on: ubuntu-latest
162170
needs:
163171
- lint

.github/workflows/pr.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches:
55
- master
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
permissions:
812
contents: write
913
id-token: write

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches:
55
- master
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
stable:
913
uses: the-guild-org/shared-config/.github/workflows/release-stable.yml@main

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Rust plugin
22
on:
33
workflow_dispatch:
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
publish-rust-swc-plugin:
711
runs-on: ubuntu-latest

.github/workflows/website-integrity.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ on:
33
pull_request:
44
paths:
55
- 'website/**'
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
611
jobs:
712
website-check:
813
runs-on: ubuntu-latest

.github/workflows/website.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ on:
88
branches:
99
- master
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
deployment:
1317
runs-on: ubuntu-latest
14-
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push'
18+
if:
19+
github.event.pull_request.head.repo.full_name == github.repository || github.event_name ==
20+
'push'
1521
steps:
1622
- name: checkout
1723
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -25,7 +31,9 @@ jobs:
2531
name: build and deploy website
2632
env:
2733
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/codegen' || '' }}
28-
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/codegen' || '' }}
34+
SITE_URL:
35+
${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/codegen' || ''
36+
}}
2937
with:
3038
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
3139
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

.vscode/launch.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
"name": "Run open test file",
66
"type": "node",
77
"request": "launch",
8-
"runtimeArgs": ["--inspect-brk", "${workspaceRoot}/node_modules/.bin/vitest", "--runInBand", "${relativeFile}"],
8+
"runtimeArgs": [
9+
"--inspect-brk",
10+
"${workspaceRoot}/node_modules/.bin/vitest",
11+
"--runInBand",
12+
"${relativeFile}"
13+
],
914
"console": "integratedTerminal",
1015
"internalConsoleOptions": "neverOpen"
1116
}

0 commit comments

Comments
 (0)