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 (extension.extendContext) {
|
||||||
if (typeof extension.extendContext === 'function') {
|
if (typeof extension.extendContext === 'function') {
|
||||||
debug(
|
debug(
|
||||||
`Extending context via a function from the “${
|
`Extending context via a function from the “${extension.name}” extension.`
|
||||||
extension.name
|
|
||||||
}” extension.`
|
|
||||||
)
|
)
|
||||||
context = extension.extendContext(context, options)
|
context = extension.extendContext(context, options)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -25,9 +25,7 @@ export function applyExtension(extension, schema, options = {}) {
|
||||||
}
|
}
|
||||||
} else if (typeof extension.extendSchema === 'function') {
|
} else if (typeof extension.extendSchema === 'function') {
|
||||||
debug(
|
debug(
|
||||||
`Extending schema via a function from the “${
|
`Extending schema via a function from the “${extension.name}” extension.`
|
||||||
extension.name
|
|
||||||
}” extension.`
|
|
||||||
)
|
)
|
||||||
outputSchema = extension.extendSchema(schema, options)
|
outputSchema = extension.extendSchema(schema, options)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue