Socket
Socket
Sign inDemoInstall

merge-graphql-schemas

Package Overview
Dependencies
Maintainers
2
Versions
269
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

merge-graphql-schemas - npm Package Compare versions

Comparing version 0.0.21 to 0.0.22

4

CHANGELOG.md

@@ -9,2 +9,6 @@ # Change Log

## [0.0.22] - 2017-06-18
### Fixed
- Ast printer bug fix (allowing more than 2 lines of comments)
## [0.0.21] - 2017-06-18

@@ -11,0 +15,0 @@ ### Fixed

2

dist/utilities/astPrinter.js

@@ -124,3 +124,3 @@ 'use strict';

Comment: ({ value }) => `# ${value.replace('\n', '\n # ')}`
Comment: ({ value }) => `# ${value.replace(/\n/g, '\n # ')}`
};

@@ -127,0 +127,0 @@

{
"name": "merge-graphql-schemas",
"author": "OK GROW!",
"version": "0.0.21",
"version": "0.0.22",
"description": "Better organize your GraphQL server.",

@@ -6,0 +6,0 @@ "repository": {

@@ -184,3 +184,3 @@ /* eslint-disable */

Comment: ({ value }) => `# ${value.replace('\n', '\n # ')}`,
Comment: ({ value }) => `# ${value.replace(/\n/g, '\n # ')}`,
};

@@ -187,0 +187,0 @@

@@ -13,2 +13,4 @@ export default `

# Second comment line
# Third comment line
# Fourth comment line
type ClientWithCommentOnTop {

@@ -23,3 +25,5 @@ # ClientID

# ClientID
# Required
# Second comment line
# Third comment line
# Fourth comment line
id: ID!

@@ -26,0 +30,0 @@ # Name

@@ -430,3 +430,5 @@ import mergeTypes from '../src/merge_types';

# ClientID
# Required
# Second comment line
# Third comment line
# Fourth comment line
id: ID!

@@ -448,2 +450,4 @@ # Name

# Second comment line
# Third comment line
# Fourth comment line
type ClientWithCommentOnTop {

@@ -450,0 +454,0 @@ # ClientID

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc