mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Reset lockfile to fix event-stream npm removal
This commit is contained in:
parent
24ebfa1b51
commit
24d53d4687
3 changed files with 2024 additions and 1187 deletions
|
|
@ -7,9 +7,7 @@ export function extendContext(extension, context, options) {
|
|||
if (extension.extendContext) {
|
||||
if (typeof extension.extendContext === 'function') {
|
||||
debug(
|
||||
`Extending context via a function from the “${
|
||||
extension.name
|
||||
}” extension.`
|
||||
`Extending context via a function from the “${extension.name}” extension.`
|
||||
)
|
||||
context = extension.extendContext(context, options)
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -25,9 +25,7 @@ export function applyExtension(extension, schema, options = {}) {
|
|||
}
|
||||
} else if (typeof extension.extendSchema === 'function') {
|
||||
debug(
|
||||
`Extending schema via a function from the “${
|
||||
extension.name
|
||||
}” extension.`
|
||||
`Extending schema via a function from the “${extension.name}” extension.`
|
||||
)
|
||||
outputSchema = extension.extendSchema(schema, options)
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue