Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 3月 10, 2023
    • Vitaly Slobodin's avatar
      Update @graphql-eslint-plugin to 3.16.1 · 1016f1d8
      Vitaly Slobodin 创作于
      Transform "operations" configuration key
      for "graphql-eslint-plugin" into a string.
      There is an issue with "graphql-eslint-plugin" cache implementation.
      The cache is implemented as a Map which stores an array
      as a reference. Having the "operations" key as an array invokes
      that issue so we never hit cache because arrays are compared
      by a reference in JavaScript. See below:
      
      let arr = ['1'];
      let cache = new Map();
      cache.set(['1'], 1);
      cache.has(['1']); // false
      1016f1d8
  2. 3月 09, 2023
加载中