@graphql-codegen/cli@7.4.1
Patch Changes
-
#10935
fb1a7c4
Thanks @eddeee888! - dependencies updates:- Updated dependency
@graphql-tools/code-file-loader@^8.1.39↗︎
(from^8.1.28, independencies)
- Updated dependency
-
#10942
57c3e7b
Thanks @eddeee888! - dependencies updates:- Updated dependency
@graphql-tools/merge@^9.2.4↗︎
(from^9.0.6, independencies)
- Updated dependency
-
#10942
57c3e7b
Thanks @eddeee888! - Bump@graphql-tools/mergefrom^9.0.6to
^9.2.4. -
#10935
fb1a7c4
Thanks @eddeee888! - Fix a Windows-specificimport()failure on
absolute paths when loading a schema/document from a.js/.cjs/.mjsfile (via
@graphql-tools/code-file-loader), and when loading modules passed to that loader's ownrequire
option. Node's dynamicimport()rejects raw absolute Windows paths (the drive letter is parsed
as a URL scheme). Fixed by bumping@graphql-tools/code-file-loaderto8.1.39, which contains
the upstream fix
(ardatan/graphql-tools#8421). -
#10936
9521c0c
Thanks @eddeee888! - Fix watch mode's generatedignoreglob
patterns using the platform path separator (\on Windows), which@parcel/watchernever
matched, so generated output files were watched (and could re-trigger builds) instead of being
ignored. Ignore patterns are now always forward-slash, as@parcel/watcherexpects.Also fixes the test suite's
TempDir.clean()helper on Windows, whererimraf.sync()rejected
its own glob-style cleanup pattern as containing illegal path characters; now passes
{ glob: true }. This is a test-only change (tests/utils.tsis not part of the published
package) included here since it was needed to get the suite green on Windows alongside the
watch-mode fix.