Skip to content

Commit 83066a8

Browse files
authored
Merge pull request #88 from mizdra/fix-composite-bug
Fix compile errors caused by `--composite` of TypeScript
2 parents 339d748 + 5c68c53 commit 83066a8

File tree

8 files changed

+81
-3
lines changed

8 files changed

+81
-3
lines changed

e2e/composite/.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Options required to reproduce https://github.com/mizdra/graphql-codegen-typescript-fabbrica/issues/85
2+
install-links=true
3+
package-lock=false

e2e/composite/codegen.ts

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import type { CodegenConfig } from '@graphql-codegen/cli';
2+
3+
const config: CodegenConfig = {
4+
schema: './schema.graphql',
5+
generates: {
6+
// The files other than those matching includes cannot be read when using `compisite`.
7+
// Therefore, fabbrica artifacts are also output under `src/`.
8+
'src/__generated__/types.ts': {
9+
plugins: ['typescript'],
10+
config: {
11+
enumsAsTypes: true, // required
12+
avoidOptionals: true, // required
13+
},
14+
},
15+
'src/__generated__/fabbrica.ts': {
16+
plugins: ['@mizdra/graphql-codegen-typescript-fabbrica'],
17+
config: {
18+
typesFile: './types.js', // required
19+
},
20+
},
21+
},
22+
};
23+
24+
export default config;

e2e/composite/package.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "e2e-composite",
3+
"type": "module",
4+
"scripts": {
5+
"start": "run-s clean _install gen build",
6+
"clean": "node -e \"require('fs').rmSync('node_modules', { recursive: true, force: true })\"",
7+
"_install": "npm install",
8+
"gen": "graphql-codegen-esm",
9+
"build": "tsc"
10+
},
11+
"engines": {
12+
"node": ">=18.0.0"
13+
},
14+
"dependencies": {
15+
"@mizdra/graphql-codegen-typescript-fabbrica": "../.."
16+
}
17+
}

e2e/composite/schema.graphql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
type Book {
2+
id: ID!
3+
title: String!
4+
}

e2e/composite/src/index.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { defineBookFactory, dynamic } from './__generated__/fabbrica.js';
2+
3+
export const BookFactory = defineBookFactory({
4+
defaultFields: {
5+
__typename: 'Book',
6+
id: dynamic(({ seq }) => `Book-${seq}`),
7+
title: 'Yuyushiki',
8+
},
9+
});

e2e/composite/tsconfig.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
"include": ["./src"],
4+
"exclude": ["node_modules"],
5+
"compilerOptions": {
6+
"composite": true,
7+
"declaration": true,
8+
"noEmit": false,
9+
"outDir": "dist",
10+
"rootDir": "src"
11+
}
12+
}

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@
4545
"lint:prettier": "prettier --check .",
4646
"test": "vitest",
4747
"pree2e": "npm run build",
48-
"e2e": "npm -w e2e/esm -w e2e/cjs run start"
48+
"e2e": "run-s -c e2e:*",
49+
"e2e:esm": "npm -w e2e/esm run start",
50+
"e2e:cjs": "npm -w e2e/cjs run start",
51+
"e2e:composite": "npm --prefix e2e/composite run start"
4952
},
5053
"prettier": "@mizdra/prettier-config-mizdra",
5154
"devDependencies": {

src/helper/index.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
export { dynamic } from './field-resolver.js';
1+
export { dynamic, Dynamic } from './field-resolver.js';
22
export { resetAllSequence, resetSequence } from './sequence.js';
3-
export { DefineTypeFactoryInterface, DefineTypeFactoryInterfaceRequired, defineTypeFactory } from './factory.js';
3+
export {
4+
DefineTypeFactoryInterface,
5+
DefineTypeFactoryInterfaceRequired,
6+
defineTypeFactory,
7+
Traits,
8+
TypeFactoryInterface,
9+
} from './factory.js';

0 commit comments

Comments
 (0)