You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Switch packageManager
* Update lock and workspace files
* Update root files
* Migrate workflows to PNPM
* Update examples and docs
* Link exmaples codegen CLI to workspace version
* Re-import yarn.lock
* Remove explicit types default in validateTs function
* Fix packageManager in CI
* Correctly overrides typescript-eslint packages
* Add dotenv package specifically for dev runs
* Downgrade pnpm to work with node 20 (minimum support version)
* Fix ci issues
* Install root devDeps for dev-test
* Fix installation in CI with frozen lockfile
* Fix package issues for CI
* Put FIXMEs to pass tests
* Sync versions and fix cjs esm issues
* Put pack dedupe lockfile
* Fix lint
* Fix website script, revert to TS 5.9.3 to match typescript-json-schema requirements
* ESM-first
* Prepare Cypress
* More ESM-first
* Prepare Cypress 2
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ body:
80
80
After reading the [Contributor Workflow](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md#a-typical-contributor-workflow), Check out and update the current state of this issue:
81
81
82
82
- [ ] 1. The issue provides a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) available on [GitHub](https://github.com/dotansimha/graphql-code-generator-issue-sandbox-template), [Stackblitz](https://stackblitz.com/github/dotansimha/graphql-code-generator-issue-sandbox-template) or [CodeSandbox](https://codesandbox.io/s/github/dotansimha/graphql-code-generator-issue-sandbox-template).
83
-
- _Make sure to fork this template and run `yarn generate` in the terminal._
83
+
- _Make sure to fork this template and run `pnpm generate` in the terminal._
84
84
- _Please make sure the Codegen and plugins version under `package.json` matches yours._
uses: the-guild-org/shared-config/setup@f4eea983237a44bb0ca19c3348dacbfdfcdbec23 # main
72
+
with:
73
+
packageManager: pnpm
74
+
- name: Prepare Cypress
75
+
run: |
76
+
pnpm store prune
77
+
pnpm config set side-effects-cache false --location project
78
+
pnpm rm -rf node_modules
79
+
pnpm i
67
80
- name: Build
68
-
run: yarn build
81
+
run: pnpm build
69
82
env:
70
83
CI: true
71
84
- name: Generate and Diff Codegen Artifacts
72
85
run: |
73
-
EXAMPLE_TYPE=normal yarn examples:codegen
86
+
EXAMPLE_TYPE=normal pnpm examples:codegen
74
87
git diff --exit-code -- examples/
75
88
- name: Build Examples
76
89
run: |
77
-
EXAMPLE_TYPE=normal yarn examples:build
90
+
EXAMPLE_TYPE=normal pnpm examples:build
78
91
- name: End2End Test Examples
79
92
run: |
80
-
EXAMPLE_TYPE=normal yarn examples:test:end2end
93
+
EXAMPLE_TYPE=normal pnpm examples:test:end2end
81
94
82
95
# TODO: Remove all SWC test setup and references as that has been moved to https://github.com/swc-project/plugins/tree/main/contrib/graphql-codegen-client-preset
0 commit comments