merge-graphql-schemas
Advanced tools
Comparing version 1.5.5 to 1.5.6
@@ -9,2 +9,12 @@ # Change Log | ||
## [1.5.6] | ||
### Fixed | ||
- Support Node.js prior to v10.10, by removing the Dirent Typescript type [PR #168](https://github.com/okgrow/merge-graphql-schemas/pull/170) by [@koenpunt](https://github.com/koenpunt). | ||
### Changed | ||
- Upgraded devDependencies to: | ||
- "rollup": "0.66.2", | ||
- "rollup-plugin-commonjs": "9.1.8" | ||
## [1.5.5] | ||
@@ -11,0 +21,0 @@ ### Added |
{ | ||
"name": "merge-graphql-schemas", | ||
"author": "OK GROW!", | ||
"version": "1.5.5", | ||
"version": "1.5.6", | ||
"description": "A utility library to facilitate merging of modularized GraphQL schemas and resolver objects.", | ||
@@ -59,5 +59,5 @@ "repository": { | ||
"jest": "^23.6.0", | ||
"rollup": "^0.65.2", | ||
"rollup": "^0.66.2", | ||
"rollup-plugin-babel": "^3.0.7", | ||
"rollup-plugin-commonjs": "^9.1.6", | ||
"rollup-plugin-commonjs": "^9.1.8", | ||
"rollup-plugin-filesize": "^4.0.1", | ||
@@ -64,0 +64,0 @@ "rollup-plugin-node-resolve": "^3.4.0", |
import { DocumentNode, Source } from 'graphql'; | ||
import { Dirent } from 'fs'; | ||
@@ -18,2 +17,2 @@ export function mergeTypes( | ||
} | ||
): Array<string | Buffer | Dirent>; | ||
): Array<string | Buffer>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
268783
7523