Skip to content

Commit 3c59da4

Browse files
committed
requiredTypes.graphql --> .js as npm dislikes me still
1 parent 7f72756 commit 3c59da4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.eslintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/src/__tests__/code/**
1+
/src/__tests__/code/**
2+
/src/schmema/requiredTypes.js

.flowconfig

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.*/dist/.*
44
.*/coverage/.*
55
.*/resources/.*
6+
/src/schmema/requiredTypes.js
67

78
[include]
89

src/schema/buildRequiredTypes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import path from 'path';
99
*/
1010

1111
export function buildRequiredTypes(pathToFile: string): any {
12-
// for any reason npm install always forgets to install the .graphql file
12+
// for any reason npm install always forgets to install the .graphql file
1313
const filePath = path.join(__dirname, pathToFile || 'requiredTypes.js');
1414
return readString(filePath);
1515
}

0 commit comments

Comments
 (0)