Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Switch to graphql@16 alpha

+942 -12
+2 -3
package.json
··· 17 17 "devDependencies": { 18 18 "@babel/core": "^7.15.0", 19 19 "@rollup/plugin-babel": "^5.3.0", 20 + "@rollup/plugin-buble": "^0.21.3", 20 21 "@rollup/plugin-node-resolve": "^13.0.4", 21 22 "@sucrase/jest-plugin": "^2.1.1", 22 23 "babel-plugin-modular-graphql": "^1.0.1", 24 + "graphql": "^16.0.0-alpha.5", 23 25 "jest": "^27.0.6", 24 26 "reghex": "^3.0.0", 25 27 "rollup": "^2.56.2", 26 28 "rollup-plugin-terser": "^7.0.2" 27 - }, 28 - "dependencies": { 29 - "graphql": "^15.5.1" 30 29 } 31 30 }
+21
scripts/babel/transformComputedProps.mjs
··· 1 + const plugin = ({ types: t }) => { 2 + return { 3 + visitor: { 4 + ClassMethod(path) { 5 + if ( 6 + path.node.kind === 'get' && 7 + path.node.computed && 8 + t.isMemberExpression(path.node.key) && 9 + t.isIdentifier(path.node.key.object) && 10 + t.isIdentifier(path.node.key.property) && 11 + path.node.key.object.name === 'Symbol' && 12 + path.node.key.property.name === 'toStringTag' 13 + ) { 14 + path.remove(); 15 + } 16 + }, 17 + } 18 + }; 19 + }; 20 + 21 + export default plugin;
+15 -3
scripts/rollup/config.js
··· 2 2 import { promises as fs } from 'fs'; 3 3 4 4 import resolve from '@rollup/plugin-node-resolve'; 5 + import buble from '@rollup/plugin-buble'; 5 6 import { babel } from '@rollup/plugin-babel'; 6 7 import { terser } from 'rollup-plugin-terser'; 7 8 8 9 import babelModularGraphQL from 'babel-plugin-modular-graphql'; 10 + import babelTransformComputedProps from '../babel/transformComputedProps.mjs'; 9 11 import babelTransformDevAssert from '../babel/transformDevAssert.mjs'; 10 12 import babelTransformObjectFreeze from '../babel/transformObjectFreeze.mjs'; 11 13 ··· 21 23 const externalPredicate = new RegExp(`^(${externalModules.join('|')})($|/)`); 22 24 23 25 const exports = {}; 24 - const importMap = require('babel-plugin-modular-graphql/import-map.json'); 25 - const excludeMap = new Set(['Lexer']); 26 + const importMap = require('./importMap.json'); 26 27 27 28 for (const key in importMap) { 28 29 const { from, local } = importMap[key]; 29 - if (/\/jsutils\//g.test(from) || excludeMap.has(key)) continue; 30 + if (/\/jsutils\//g.test(from)) continue; 30 31 31 32 const name = from.replace(/^graphql\//, ''); 32 33 exports[name] = (exports[name] || '') + `export { ${key} } from '${EXTERNAL}'\n`; ··· 167 168 plugins: [ 168 169 babelTransformDevAssert, 169 170 babelTransformObjectFreeze, 171 + babelTransformComputedProps, 170 172 babelModularGraphQL, 171 173 'reghex/babel', 172 174 ], 175 + }), 176 + 177 + buble({ 178 + transforms: { 179 + unicodeRegExp: false, 180 + dangerousForOf: true, 181 + dangerousTaggedTemplateString: true, 182 + asyncAwait: false, 183 + }, 184 + objectAssign: 'Object.assign', 173 185 }), 174 186 175 187 terser({
+778
scripts/rollup/importMap.json
··· 1 + { 2 + "BREAK": { 3 + "local": "BREAK", 4 + "from": "graphql/language/visitor" 5 + }, 6 + "BreakingChangeType": { 7 + "local": "BreakingChangeType", 8 + "from": "graphql/utilities/findBreakingChanges" 9 + }, 10 + "DEFAULT_DEPRECATION_REASON": { 11 + "local": "DEFAULT_DEPRECATION_REASON", 12 + "from": "graphql/type/directives" 13 + }, 14 + "DangerousChangeType": { 15 + "local": "DangerousChangeType", 16 + "from": "graphql/utilities/findBreakingChanges" 17 + }, 18 + "DirectiveLocation": { 19 + "local": "DirectiveLocation", 20 + "from": "graphql/language/directiveLocation" 21 + }, 22 + "ExecutableDefinitionsRule": { 23 + "local": "ExecutableDefinitionsRule", 24 + "from": "graphql/validation/rules/ExecutableDefinitionsRule" 25 + }, 26 + "FieldsOnCorrectTypeRule": { 27 + "local": "FieldsOnCorrectTypeRule", 28 + "from": "graphql/validation/rules/FieldsOnCorrectTypeRule" 29 + }, 30 + "FragmentsOnCompositeTypesRule": { 31 + "local": "FragmentsOnCompositeTypesRule", 32 + "from": "graphql/validation/rules/FragmentsOnCompositeTypesRule" 33 + }, 34 + "GraphQLBoolean": { 35 + "local": "GraphQLBoolean", 36 + "from": "graphql/type/scalars" 37 + }, 38 + "GraphQLDeprecatedDirective": { 39 + "local": "GraphQLDeprecatedDirective", 40 + "from": "graphql/type/directives" 41 + }, 42 + "GraphQLDirective": { 43 + "local": "GraphQLDirective", 44 + "from": "graphql/type/directives" 45 + }, 46 + "GraphQLEnumType": { 47 + "local": "GraphQLEnumType", 48 + "from": "graphql/type/definition" 49 + }, 50 + "GraphQLError": { 51 + "local": "GraphQLError", 52 + "from": "graphql/error/GraphQLError" 53 + }, 54 + "GraphQLFloat": { 55 + "local": "GraphQLFloat", 56 + "from": "graphql/type/scalars" 57 + }, 58 + "GraphQLID": { 59 + "local": "GraphQLID", 60 + "from": "graphql/type/scalars" 61 + }, 62 + "GraphQLIncludeDirective": { 63 + "local": "GraphQLIncludeDirective", 64 + "from": "graphql/type/directives" 65 + }, 66 + "GraphQLInputObjectType": { 67 + "local": "GraphQLInputObjectType", 68 + "from": "graphql/type/definition" 69 + }, 70 + "GraphQLInt": { 71 + "local": "GraphQLInt", 72 + "from": "graphql/type/scalars" 73 + }, 74 + "GraphQLInterfaceType": { 75 + "local": "GraphQLInterfaceType", 76 + "from": "graphql/type/definition" 77 + }, 78 + "GraphQLList": { 79 + "local": "GraphQLList", 80 + "from": "graphql/type/definition" 81 + }, 82 + "GraphQLNonNull": { 83 + "local": "GraphQLNonNull", 84 + "from": "graphql/type/definition" 85 + }, 86 + "GraphQLObjectType": { 87 + "local": "GraphQLObjectType", 88 + "from": "graphql/type/definition" 89 + }, 90 + "GraphQLScalarType": { 91 + "local": "GraphQLScalarType", 92 + "from": "graphql/type/definition" 93 + }, 94 + "GraphQLSchema": { 95 + "local": "GraphQLSchema", 96 + "from": "graphql/type/schema" 97 + }, 98 + "GraphQLSkipDirective": { 99 + "local": "GraphQLSkipDirective", 100 + "from": "graphql/type/directives" 101 + }, 102 + "GraphQLSpecifiedByDirective": { 103 + "local": "GraphQLSpecifiedByDirective", 104 + "from": "graphql/type/directives" 105 + }, 106 + "GraphQLString": { 107 + "local": "GraphQLString", 108 + "from": "graphql/type/scalars" 109 + }, 110 + "GraphQLUnionType": { 111 + "local": "GraphQLUnionType", 112 + "from": "graphql/type/definition" 113 + }, 114 + "Kind": { 115 + "local": "Kind", 116 + "from": "graphql/language/kinds" 117 + }, 118 + "KnownArgumentNamesRule": { 119 + "local": "KnownArgumentNamesRule", 120 + "from": "graphql/validation/rules/KnownArgumentNamesRule" 121 + }, 122 + "KnownDirectivesRule": { 123 + "local": "KnownDirectivesRule", 124 + "from": "graphql/validation/rules/KnownDirectivesRule" 125 + }, 126 + "KnownFragmentNamesRule": { 127 + "local": "KnownFragmentNamesRule", 128 + "from": "graphql/validation/rules/KnownFragmentNamesRule" 129 + }, 130 + "KnownTypeNamesRule": { 131 + "local": "KnownTypeNamesRule", 132 + "from": "graphql/validation/rules/KnownTypeNamesRule" 133 + }, 134 + "Location": { 135 + "local": "Location", 136 + "from": "graphql/language/ast" 137 + }, 138 + "LoneAnonymousOperationRule": { 139 + "local": "LoneAnonymousOperationRule", 140 + "from": "graphql/validation/rules/LoneAnonymousOperationRule" 141 + }, 142 + "LoneSchemaDefinitionRule": { 143 + "local": "LoneSchemaDefinitionRule", 144 + "from": "graphql/validation/rules/LoneSchemaDefinitionRule" 145 + }, 146 + "NoDeprecatedCustomRule": { 147 + "local": "NoDeprecatedCustomRule", 148 + "from": "graphql/validation/rules/custom/NoDeprecatedCustomRule" 149 + }, 150 + "NoFragmentCyclesRule": { 151 + "local": "NoFragmentCyclesRule", 152 + "from": "graphql/validation/rules/NoFragmentCyclesRule" 153 + }, 154 + "NoSchemaIntrospectionCustomRule": { 155 + "local": "NoSchemaIntrospectionCustomRule", 156 + "from": "graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule" 157 + }, 158 + "NoUndefinedVariablesRule": { 159 + "local": "NoUndefinedVariablesRule", 160 + "from": "graphql/validation/rules/NoUndefinedVariablesRule" 161 + }, 162 + "NoUnusedFragmentsRule": { 163 + "local": "NoUnusedFragmentsRule", 164 + "from": "graphql/validation/rules/NoUnusedFragmentsRule" 165 + }, 166 + "NoUnusedVariablesRule": { 167 + "local": "NoUnusedVariablesRule", 168 + "from": "graphql/validation/rules/NoUnusedVariablesRule" 169 + }, 170 + "OverlappingFieldsCanBeMergedRule": { 171 + "local": "OverlappingFieldsCanBeMergedRule", 172 + "from": "graphql/validation/rules/OverlappingFieldsCanBeMergedRule" 173 + }, 174 + "PossibleFragmentSpreadsRule": { 175 + "local": "PossibleFragmentSpreadsRule", 176 + "from": "graphql/validation/rules/PossibleFragmentSpreadsRule" 177 + }, 178 + "PossibleTypeExtensionsRule": { 179 + "local": "PossibleTypeExtensionsRule", 180 + "from": "graphql/validation/rules/PossibleTypeExtensionsRule" 181 + }, 182 + "ProvidedRequiredArgumentsRule": { 183 + "local": "ProvidedRequiredArgumentsRule", 184 + "from": "graphql/validation/rules/ProvidedRequiredArgumentsRule" 185 + }, 186 + "ScalarLeafsRule": { 187 + "local": "ScalarLeafsRule", 188 + "from": "graphql/validation/rules/ScalarLeafsRule" 189 + }, 190 + "SchemaMetaFieldDef": { 191 + "local": "SchemaMetaFieldDef", 192 + "from": "graphql/type/introspection" 193 + }, 194 + "SingleFieldSubscriptionsRule": { 195 + "local": "SingleFieldSubscriptionsRule", 196 + "from": "graphql/validation/rules/SingleFieldSubscriptionsRule" 197 + }, 198 + "Source": { 199 + "local": "Source", 200 + "from": "graphql/language/source" 201 + }, 202 + "Token": { 203 + "local": "Token", 204 + "from": "graphql/language/ast" 205 + }, 206 + "TokenKind": { 207 + "local": "TokenKind", 208 + "from": "graphql/language/tokenKind" 209 + }, 210 + "TypeInfo": { 211 + "local": "TypeInfo", 212 + "from": "graphql/utilities/TypeInfo" 213 + }, 214 + "TypeKind": { 215 + "local": "TypeKind", 216 + "from": "graphql/type/introspection" 217 + }, 218 + "TypeMetaFieldDef": { 219 + "local": "TypeMetaFieldDef", 220 + "from": "graphql/type/introspection" 221 + }, 222 + "TypeNameMetaFieldDef": { 223 + "local": "TypeNameMetaFieldDef", 224 + "from": "graphql/type/introspection" 225 + }, 226 + "UniqueArgumentNamesRule": { 227 + "local": "UniqueArgumentNamesRule", 228 + "from": "graphql/validation/rules/UniqueArgumentNamesRule" 229 + }, 230 + "UniqueDirectiveNamesRule": { 231 + "local": "UniqueDirectiveNamesRule", 232 + "from": "graphql/validation/rules/UniqueDirectiveNamesRule" 233 + }, 234 + "UniqueDirectivesPerLocationRule": { 235 + "local": "UniqueDirectivesPerLocationRule", 236 + "from": "graphql/validation/rules/UniqueDirectivesPerLocationRule" 237 + }, 238 + "UniqueEnumValueNamesRule": { 239 + "local": "UniqueEnumValueNamesRule", 240 + "from": "graphql/validation/rules/UniqueEnumValueNamesRule" 241 + }, 242 + "UniqueFieldDefinitionNamesRule": { 243 + "local": "UniqueFieldDefinitionNamesRule", 244 + "from": "graphql/validation/rules/UniqueFieldDefinitionNamesRule" 245 + }, 246 + "UniqueFragmentNamesRule": { 247 + "local": "UniqueFragmentNamesRule", 248 + "from": "graphql/validation/rules/UniqueFragmentNamesRule" 249 + }, 250 + "UniqueInputFieldNamesRule": { 251 + "local": "UniqueInputFieldNamesRule", 252 + "from": "graphql/validation/rules/UniqueInputFieldNamesRule" 253 + }, 254 + "UniqueOperationNamesRule": { 255 + "local": "UniqueOperationNamesRule", 256 + "from": "graphql/validation/rules/UniqueOperationNamesRule" 257 + }, 258 + "UniqueOperationTypesRule": { 259 + "local": "UniqueOperationTypesRule", 260 + "from": "graphql/validation/rules/UniqueOperationTypesRule" 261 + }, 262 + "UniqueTypeNamesRule": { 263 + "local": "UniqueTypeNamesRule", 264 + "from": "graphql/validation/rules/UniqueTypeNamesRule" 265 + }, 266 + "UniqueVariableNamesRule": { 267 + "local": "UniqueVariableNamesRule", 268 + "from": "graphql/validation/rules/UniqueVariableNamesRule" 269 + }, 270 + "ValidationContext": { 271 + "local": "ValidationContext", 272 + "from": "graphql/validation/ValidationContext" 273 + }, 274 + "ValuesOfCorrectTypeRule": { 275 + "local": "ValuesOfCorrectTypeRule", 276 + "from": "graphql/validation/rules/ValuesOfCorrectTypeRule" 277 + }, 278 + "VariablesAreInputTypesRule": { 279 + "local": "VariablesAreInputTypesRule", 280 + "from": "graphql/validation/rules/VariablesAreInputTypesRule" 281 + }, 282 + "VariablesInAllowedPositionRule": { 283 + "local": "VariablesInAllowedPositionRule", 284 + "from": "graphql/validation/rules/VariablesInAllowedPositionRule" 285 + }, 286 + "__Directive": { 287 + "local": "__Directive", 288 + "from": "graphql/type/introspection" 289 + }, 290 + "__DirectiveLocation": { 291 + "local": "__DirectiveLocation", 292 + "from": "graphql/type/introspection" 293 + }, 294 + "__EnumValue": { 295 + "local": "__EnumValue", 296 + "from": "graphql/type/introspection" 297 + }, 298 + "__Field": { 299 + "local": "__Field", 300 + "from": "graphql/type/introspection" 301 + }, 302 + "__InputValue": { 303 + "local": "__InputValue", 304 + "from": "graphql/type/introspection" 305 + }, 306 + "__Schema": { 307 + "local": "__Schema", 308 + "from": "graphql/type/introspection" 309 + }, 310 + "__Type": { 311 + "local": "__Type", 312 + "from": "graphql/type/introspection" 313 + }, 314 + "__TypeKind": { 315 + "local": "__TypeKind", 316 + "from": "graphql/type/introspection" 317 + }, 318 + "assertAbstractType": { 319 + "local": "assertAbstractType", 320 + "from": "graphql/type/definition" 321 + }, 322 + "assertCompositeType": { 323 + "local": "assertCompositeType", 324 + "from": "graphql/type/definition" 325 + }, 326 + "assertDirective": { 327 + "local": "assertDirective", 328 + "from": "graphql/type/directives" 329 + }, 330 + "assertEnumType": { 331 + "local": "assertEnumType", 332 + "from": "graphql/type/definition" 333 + }, 334 + "assertInputObjectType": { 335 + "local": "assertInputObjectType", 336 + "from": "graphql/type/definition" 337 + }, 338 + "assertInputType": { 339 + "local": "assertInputType", 340 + "from": "graphql/type/definition" 341 + }, 342 + "assertInterfaceType": { 343 + "local": "assertInterfaceType", 344 + "from": "graphql/type/definition" 345 + }, 346 + "assertLeafType": { 347 + "local": "assertLeafType", 348 + "from": "graphql/type/definition" 349 + }, 350 + "assertListType": { 351 + "local": "assertListType", 352 + "from": "graphql/type/definition" 353 + }, 354 + "assertNamedType": { 355 + "local": "assertNamedType", 356 + "from": "graphql/type/definition" 357 + }, 358 + "assertNonNullType": { 359 + "local": "assertNonNullType", 360 + "from": "graphql/type/definition" 361 + }, 362 + "assertNullableType": { 363 + "local": "assertNullableType", 364 + "from": "graphql/type/definition" 365 + }, 366 + "assertObjectType": { 367 + "local": "assertObjectType", 368 + "from": "graphql/type/definition" 369 + }, 370 + "assertOutputType": { 371 + "local": "assertOutputType", 372 + "from": "graphql/type/definition" 373 + }, 374 + "assertScalarType": { 375 + "local": "assertScalarType", 376 + "from": "graphql/type/definition" 377 + }, 378 + "assertSchema": { 379 + "local": "assertSchema", 380 + "from": "graphql/type/schema" 381 + }, 382 + "assertType": { 383 + "local": "assertType", 384 + "from": "graphql/type/definition" 385 + }, 386 + "assertUnionType": { 387 + "local": "assertUnionType", 388 + "from": "graphql/type/definition" 389 + }, 390 + "assertValidName": { 391 + "local": "assertValidName", 392 + "from": "graphql/utilities/assertValidName" 393 + }, 394 + "assertValidSchema": { 395 + "local": "assertValidSchema", 396 + "from": "graphql/type/validate" 397 + }, 398 + "assertWrappingType": { 399 + "local": "assertWrappingType", 400 + "from": "graphql/type/definition" 401 + }, 402 + "astFromValue": { 403 + "local": "astFromValue", 404 + "from": "graphql/utilities/astFromValue" 405 + }, 406 + "buildASTSchema": { 407 + "local": "buildASTSchema", 408 + "from": "graphql/utilities/buildASTSchema" 409 + }, 410 + "buildClientSchema": { 411 + "local": "buildClientSchema", 412 + "from": "graphql/utilities/buildClientSchema" 413 + }, 414 + "buildSchema": { 415 + "local": "buildSchema", 416 + "from": "graphql/utilities/buildASTSchema" 417 + }, 418 + "coerceInputValue": { 419 + "local": "coerceInputValue", 420 + "from": "graphql/utilities/coerceInputValue" 421 + }, 422 + "concatAST": { 423 + "local": "concatAST", 424 + "from": "graphql/utilities/concatAST" 425 + }, 426 + "createSourceEventStream": { 427 + "local": "createSourceEventStream", 428 + "from": "graphql/subscription/subscribe" 429 + }, 430 + "defaultFieldResolver": { 431 + "local": "defaultFieldResolver", 432 + "from": "graphql/execution/execute" 433 + }, 434 + "defaultTypeResolver": { 435 + "local": "defaultTypeResolver", 436 + "from": "graphql/execution/execute" 437 + }, 438 + "doTypesOverlap": { 439 + "local": "doTypesOverlap", 440 + "from": "graphql/utilities/typeComparators" 441 + }, 442 + "execute": { 443 + "local": "execute", 444 + "from": "graphql/execution/execute" 445 + }, 446 + "executeSync": { 447 + "local": "executeSync", 448 + "from": "graphql/execution/execute" 449 + }, 450 + "extendSchema": { 451 + "local": "extendSchema", 452 + "from": "graphql/utilities/extendSchema" 453 + }, 454 + "findBreakingChanges": { 455 + "local": "findBreakingChanges", 456 + "from": "graphql/utilities/findBreakingChanges" 457 + }, 458 + "findDangerousChanges": { 459 + "local": "findDangerousChanges", 460 + "from": "graphql/utilities/findBreakingChanges" 461 + }, 462 + "formatError": { 463 + "local": "formatError", 464 + "from": "graphql/error/formatError" 465 + }, 466 + "getDirectiveValues": { 467 + "local": "getDirectiveValues", 468 + "from": "graphql/execution/values" 469 + }, 470 + "getIntrospectionQuery": { 471 + "local": "getIntrospectionQuery", 472 + "from": "graphql/utilities/getIntrospectionQuery" 473 + }, 474 + "getLocation": { 475 + "local": "getLocation", 476 + "from": "graphql/language/location" 477 + }, 478 + "getNamedType": { 479 + "local": "getNamedType", 480 + "from": "graphql/type/definition" 481 + }, 482 + "getNullableType": { 483 + "local": "getNullableType", 484 + "from": "graphql/type/definition" 485 + }, 486 + "getOperationAST": { 487 + "local": "getOperationAST", 488 + "from": "graphql/utilities/getOperationAST" 489 + }, 490 + "getOperationRootType": { 491 + "local": "getOperationRootType", 492 + "from": "graphql/utilities/getOperationRootType" 493 + }, 494 + "getVisitFn": { 495 + "local": "getVisitFn", 496 + "from": "graphql/language/visitor" 497 + }, 498 + "graphql": { 499 + "local": "graphql", 500 + "from": "graphql/graphql" 501 + }, 502 + "graphqlSync": { 503 + "local": "graphqlSync", 504 + "from": "graphql/graphql" 505 + }, 506 + "introspectionFromSchema": { 507 + "local": "introspectionFromSchema", 508 + "from": "graphql/utilities/introspectionFromSchema" 509 + }, 510 + "introspectionTypes": { 511 + "local": "introspectionTypes", 512 + "from": "graphql/type/introspection" 513 + }, 514 + "isAbstractType": { 515 + "local": "isAbstractType", 516 + "from": "graphql/type/definition" 517 + }, 518 + "isCompositeType": { 519 + "local": "isCompositeType", 520 + "from": "graphql/type/definition" 521 + }, 522 + "isDefinitionNode": { 523 + "local": "isDefinitionNode", 524 + "from": "graphql/language/predicates" 525 + }, 526 + "isDirective": { 527 + "local": "isDirective", 528 + "from": "graphql/type/directives" 529 + }, 530 + "isEnumType": { 531 + "local": "isEnumType", 532 + "from": "graphql/type/definition" 533 + }, 534 + "isEqualType": { 535 + "local": "isEqualType", 536 + "from": "graphql/utilities/typeComparators" 537 + }, 538 + "isExecutableDefinitionNode": { 539 + "local": "isExecutableDefinitionNode", 540 + "from": "graphql/language/predicates" 541 + }, 542 + "isInputObjectType": { 543 + "local": "isInputObjectType", 544 + "from": "graphql/type/definition" 545 + }, 546 + "isInputType": { 547 + "local": "isInputType", 548 + "from": "graphql/type/definition" 549 + }, 550 + "isInterfaceType": { 551 + "local": "isInterfaceType", 552 + "from": "graphql/type/definition" 553 + }, 554 + "isIntrospectionType": { 555 + "local": "isIntrospectionType", 556 + "from": "graphql/type/introspection" 557 + }, 558 + "isLeafType": { 559 + "local": "isLeafType", 560 + "from": "graphql/type/definition" 561 + }, 562 + "isListType": { 563 + "local": "isListType", 564 + "from": "graphql/type/definition" 565 + }, 566 + "isNamedType": { 567 + "local": "isNamedType", 568 + "from": "graphql/type/definition" 569 + }, 570 + "isNonNullType": { 571 + "local": "isNonNullType", 572 + "from": "graphql/type/definition" 573 + }, 574 + "isNullableType": { 575 + "local": "isNullableType", 576 + "from": "graphql/type/definition" 577 + }, 578 + "isObjectType": { 579 + "local": "isObjectType", 580 + "from": "graphql/type/definition" 581 + }, 582 + "isOutputType": { 583 + "local": "isOutputType", 584 + "from": "graphql/type/definition" 585 + }, 586 + "isRequiredArgument": { 587 + "local": "isRequiredArgument", 588 + "from": "graphql/type/definition" 589 + }, 590 + "isRequiredInputField": { 591 + "local": "isRequiredInputField", 592 + "from": "graphql/type/definition" 593 + }, 594 + "isScalarType": { 595 + "local": "isScalarType", 596 + "from": "graphql/type/definition" 597 + }, 598 + "isSchema": { 599 + "local": "isSchema", 600 + "from": "graphql/type/schema" 601 + }, 602 + "isSelectionNode": { 603 + "local": "isSelectionNode", 604 + "from": "graphql/language/predicates" 605 + }, 606 + "isSpecifiedDirective": { 607 + "local": "isSpecifiedDirective", 608 + "from": "graphql/type/directives" 609 + }, 610 + "isSpecifiedScalarType": { 611 + "local": "isSpecifiedScalarType", 612 + "from": "graphql/type/scalars" 613 + }, 614 + "isType": { 615 + "local": "isType", 616 + "from": "graphql/type/definition" 617 + }, 618 + "isTypeDefinitionNode": { 619 + "local": "isTypeDefinitionNode", 620 + "from": "graphql/language/predicates" 621 + }, 622 + "isTypeExtensionNode": { 623 + "local": "isTypeExtensionNode", 624 + "from": "graphql/language/predicates" 625 + }, 626 + "isTypeNode": { 627 + "local": "isTypeNode", 628 + "from": "graphql/language/predicates" 629 + }, 630 + "isTypeSubTypeOf": { 631 + "local": "isTypeSubTypeOf", 632 + "from": "graphql/utilities/typeComparators" 633 + }, 634 + "isTypeSystemDefinitionNode": { 635 + "local": "isTypeSystemDefinitionNode", 636 + "from": "graphql/language/predicates" 637 + }, 638 + "isTypeSystemExtensionNode": { 639 + "local": "isTypeSystemExtensionNode", 640 + "from": "graphql/language/predicates" 641 + }, 642 + "isUnionType": { 643 + "local": "isUnionType", 644 + "from": "graphql/type/definition" 645 + }, 646 + "isValidNameError": { 647 + "local": "isValidNameError", 648 + "from": "graphql/utilities/assertValidName" 649 + }, 650 + "isValueNode": { 651 + "local": "isValueNode", 652 + "from": "graphql/language/predicates" 653 + }, 654 + "isWrappingType": { 655 + "local": "isWrappingType", 656 + "from": "graphql/type/definition" 657 + }, 658 + "lexicographicSortSchema": { 659 + "local": "lexicographicSortSchema", 660 + "from": "graphql/utilities/lexicographicSortSchema" 661 + }, 662 + "locatedError": { 663 + "local": "locatedError", 664 + "from": "graphql/error/locatedError" 665 + }, 666 + "parse": { 667 + "local": "parse", 668 + "from": "graphql/language/parser" 669 + }, 670 + "parseType": { 671 + "local": "parseType", 672 + "from": "graphql/language/parser" 673 + }, 674 + "parseValue": { 675 + "local": "parseValue", 676 + "from": "graphql/language/parser" 677 + }, 678 + "print": { 679 + "local": "print", 680 + "from": "graphql/language/printer" 681 + }, 682 + "printError": { 683 + "local": "printError", 684 + "from": "graphql/error/GraphQLError" 685 + }, 686 + "printIntrospectionSchema": { 687 + "local": "printIntrospectionSchema", 688 + "from": "graphql/utilities/printSchema" 689 + }, 690 + "printLocation": { 691 + "local": "printLocation", 692 + "from": "graphql/language/printLocation" 693 + }, 694 + "printSchema": { 695 + "local": "printSchema", 696 + "from": "graphql/utilities/printSchema" 697 + }, 698 + "printSourceLocation": { 699 + "local": "printSourceLocation", 700 + "from": "graphql/language/printLocation" 701 + }, 702 + "printType": { 703 + "local": "printType", 704 + "from": "graphql/utilities/printSchema" 705 + }, 706 + "responsePathAsArray": { 707 + "local": "pathToArray", 708 + "from": "graphql/jsutils/Path" 709 + }, 710 + "separateOperations": { 711 + "local": "separateOperations", 712 + "from": "graphql/utilities/separateOperations" 713 + }, 714 + "specifiedDirectives": { 715 + "local": "specifiedDirectives", 716 + "from": "graphql/type/directives" 717 + }, 718 + "specifiedRules": { 719 + "local": "specifiedRules", 720 + "from": "graphql/validation/specifiedRules" 721 + }, 722 + "specifiedScalarTypes": { 723 + "local": "specifiedScalarTypes", 724 + "from": "graphql/type/scalars" 725 + }, 726 + "stripIgnoredCharacters": { 727 + "local": "stripIgnoredCharacters", 728 + "from": "graphql/utilities/stripIgnoredCharacters" 729 + }, 730 + "subscribe": { 731 + "local": "subscribe", 732 + "from": "graphql/subscription/subscribe" 733 + }, 734 + "syntaxError": { 735 + "local": "syntaxError", 736 + "from": "graphql/error/syntaxError" 737 + }, 738 + "typeFromAST": { 739 + "local": "typeFromAST", 740 + "from": "graphql/utilities/typeFromAST" 741 + }, 742 + "validate": { 743 + "local": "validate", 744 + "from": "graphql/validation/validate" 745 + }, 746 + "validateSchema": { 747 + "local": "validateSchema", 748 + "from": "graphql/type/validate" 749 + }, 750 + "valueFromAST": { 751 + "local": "valueFromAST", 752 + "from": "graphql/utilities/valueFromAST" 753 + }, 754 + "valueFromASTUntyped": { 755 + "local": "valueFromASTUntyped", 756 + "from": "graphql/utilities/valueFromASTUntyped" 757 + }, 758 + "version": { 759 + "local": "version", 760 + "from": "graphql/version" 761 + }, 762 + "versionInfo": { 763 + "local": "versionInfo", 764 + "from": "graphql/version" 765 + }, 766 + "visit": { 767 + "local": "visit", 768 + "from": "graphql/language/visitor" 769 + }, 770 + "visitInParallel": { 771 + "local": "visitInParallel", 772 + "from": "graphql/language/visitor" 773 + }, 774 + "visitWithTypeInfo": { 775 + "local": "visitWithTypeInfo", 776 + "from": "graphql/utilities/TypeInfo" 777 + } 778 + }
+126 -6
yarn.lock
··· 495 495 "@babel/helper-module-imports" "^7.10.4" 496 496 "@rollup/pluginutils" "^3.1.0" 497 497 498 + "@rollup/plugin-buble@^0.21.3": 499 + version "0.21.3" 500 + resolved "https://registry.yarnpkg.com/@rollup/plugin-buble/-/plugin-buble-0.21.3.tgz#1649a915b1d051a4f430d40e7734a7f67a69b33e" 501 + integrity sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw== 502 + dependencies: 503 + "@rollup/pluginutils" "^3.0.8" 504 + "@types/buble" "^0.19.2" 505 + buble "^0.20.0" 506 + 498 507 "@rollup/plugin-node-resolve@^13.0.4": 499 508 version "13.0.4" 500 509 resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.4.tgz#b10222f4145a019740acb7738402130d848660c0" ··· 507 516 is-module "^1.0.0" 508 517 resolve "^1.19.0" 509 518 510 - "@rollup/pluginutils@^3.1.0": 519 + "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": 511 520 version "3.1.0" 512 521 resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 513 522 integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== ··· 575 584 dependencies: 576 585 "@babel/types" "^7.3.0" 577 586 587 + "@types/buble@^0.19.2": 588 + version "0.19.2" 589 + resolved "https://registry.yarnpkg.com/@types/buble/-/buble-0.19.2.tgz#a4289d20b175b3c206aaad80caabdabe3ecdfdd1" 590 + integrity sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q== 591 + dependencies: 592 + magic-string "^0.25.0" 593 + 578 594 "@types/estree@0.0.39": 579 595 version "0.0.39" 580 596 resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" ··· 645 661 resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 646 662 integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 647 663 664 + acorn-dynamic-import@^4.0.0: 665 + version "4.0.0" 666 + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" 667 + integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== 668 + 648 669 acorn-globals@^6.0.0: 649 670 version "6.0.0" 650 671 resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" ··· 653 674 acorn "^7.1.1" 654 675 acorn-walk "^7.1.1" 655 676 677 + acorn-jsx@^5.2.0: 678 + version "5.3.2" 679 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 680 + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 681 + 656 682 acorn-walk@^7.1.1: 657 683 version "7.2.0" 658 684 resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 659 685 integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 686 + 687 + acorn@^6.4.1: 688 + version "6.4.2" 689 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" 690 + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== 660 691 661 692 acorn@^7.1.1: 662 693 version "7.4.1" ··· 840 871 dependencies: 841 872 node-int64 "^0.4.0" 842 873 874 + buble@^0.20.0: 875 + version "0.20.0" 876 + resolved "https://registry.yarnpkg.com/buble/-/buble-0.20.0.tgz#a143979a8d968b7f76b57f38f2e7ce7cfe938d1f" 877 + integrity sha512-/1gnaMQE8xvd5qsNBl+iTuyjJ9XxeaVxAMF86dQ4EyxFJOZtsgOS8Ra+7WHgZTam5IFDtt4BguN0sH0tVTKrOw== 878 + dependencies: 879 + acorn "^6.4.1" 880 + acorn-dynamic-import "^4.0.0" 881 + acorn-jsx "^5.2.0" 882 + chalk "^2.4.2" 883 + magic-string "^0.25.7" 884 + minimist "^1.2.5" 885 + regexpu-core "4.5.4" 886 + 843 887 buffer-from@^1.0.0: 844 888 version "1.1.2" 845 889 resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" ··· 870 914 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001251.tgz#6853a606ec50893115db660f82c094d18f096d85" 871 915 integrity sha512-HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A== 872 916 873 - chalk@^2.0.0: 917 + chalk@^2.0.0, chalk@^2.4.2: 874 918 version "2.4.2" 875 919 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 876 920 integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== ··· 1267 1311 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1268 1312 integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1269 1313 1270 - graphql@^15.5.1: 1271 - version "15.5.1" 1272 - resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.5.1.tgz#f2f84415d8985e7b84731e7f3536f8bb9d383aad" 1273 - integrity sha512-FeTRX67T3LoE3LWAxxOlW2K3Bz+rMYAC18rRguK4wgXaTZMiJwSUwDmPFo3UadAKbzirKIg5Qy+sNJXbpPRnQw== 1314 + graphql@^16.0.0-alpha.5: 1315 + version "16.0.0-alpha.5" 1316 + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.0.0-alpha.5.tgz#8ae76728e91a50c59197a03cdbad9beb7fb9f704" 1317 + integrity sha512-C663Sh9qqetzqo0LbNrcptpQw8lTAOm8EF6rCd3tVAjTXTOkGbevZ67TtVb9WrkYQvNtFPlAFLVnqnkAGcVpYA== 1274 1318 1275 1319 has-flag@^3.0.0: 1276 1320 version "3.0.0" ··· 1920 1964 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1921 1965 integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1922 1966 1967 + jsesc@~0.5.0: 1968 + version "0.5.0" 1969 + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1970 + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1971 + 1923 1972 json5@^2.1.2: 1924 1973 version "2.2.0" 1925 1974 resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" ··· 1969 2018 dependencies: 1970 2019 yallist "^4.0.0" 1971 2020 2021 + magic-string@^0.25.0, magic-string@^0.25.7: 2022 + version "0.25.7" 2023 + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 2024 + integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 2025 + dependencies: 2026 + sourcemap-codec "^1.4.4" 2027 + 1972 2028 make-dir@^3.0.0: 1973 2029 version "3.1.0" 1974 2030 resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" ··· 2220 2276 resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2221 2277 integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2222 2278 2279 + regenerate-unicode-properties@^8.0.2: 2280 + version "8.2.0" 2281 + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2282 + integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2283 + dependencies: 2284 + regenerate "^1.4.0" 2285 + 2286 + regenerate@^1.4.0: 2287 + version "1.4.2" 2288 + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 2289 + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 2290 + 2291 + regexpu-core@4.5.4: 2292 + version "4.5.4" 2293 + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" 2294 + integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== 2295 + dependencies: 2296 + regenerate "^1.4.0" 2297 + regenerate-unicode-properties "^8.0.2" 2298 + regjsgen "^0.5.0" 2299 + regjsparser "^0.6.0" 2300 + unicode-match-property-ecmascript "^1.0.4" 2301 + unicode-match-property-value-ecmascript "^1.1.0" 2302 + 2223 2303 reghex@^3.0.0: 2224 2304 version "3.0.0" 2225 2305 resolved "https://registry.yarnpkg.com/reghex/-/reghex-3.0.0.tgz#8121a96a75c81bd3996e94255760f98db0d7f3c0" 2226 2306 integrity sha512-CWL9oEFQBq1PF3iT4GjSz7Te/OuLFYYHWS5/lCyxmMFncsr4Cxi/aapgmEF1AiqodEHI16t0cu1A/B/O78NUcA== 2227 2307 2308 + regjsgen@^0.5.0: 2309 + version "0.5.2" 2310 + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2311 + integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2312 + 2313 + regjsparser@^0.6.0: 2314 + version "0.6.9" 2315 + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6" 2316 + integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ== 2317 + dependencies: 2318 + jsesc "~0.5.0" 2319 + 2228 2320 require-directory@^2.1.1: 2229 2321 version "2.1.1" 2230 2322 resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" ··· 2364 2456 version "0.7.3" 2365 2457 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2366 2458 integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2459 + 2460 + sourcemap-codec@^1.4.4: 2461 + version "1.4.8" 2462 + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 2463 + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 2367 2464 2368 2465 sprintf-js@~1.0.2: 2369 2466 version "1.0.3" ··· 2563 2660 integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2564 2661 dependencies: 2565 2662 is-typedarray "^1.0.0" 2663 + 2664 + unicode-canonical-property-names-ecmascript@^1.0.4: 2665 + version "1.0.4" 2666 + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2667 + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2668 + 2669 + unicode-match-property-ecmascript@^1.0.4: 2670 + version "1.0.4" 2671 + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2672 + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2673 + dependencies: 2674 + unicode-canonical-property-names-ecmascript "^1.0.4" 2675 + unicode-property-aliases-ecmascript "^1.0.4" 2676 + 2677 + unicode-match-property-value-ecmascript@^1.1.0: 2678 + version "1.2.0" 2679 + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 2680 + integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 2681 + 2682 + unicode-property-aliases-ecmascript@^1.0.4: 2683 + version "1.1.0" 2684 + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 2685 + integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 2566 2686 2567 2687 universalify@^0.1.2: 2568 2688 version "0.1.2"