From 91759b262e548aa2c7712cafb55f1ca524aa3c3f Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Mon, 26 Feb 2024 11:52:28 +0100 Subject: [PATCH 1/2] Add groups as an omittable field --- feature-group-definitions/array-at.yml | 3 +++ feature-group-definitions/array-by-copy.yml | 3 +++ feature-group-definitions/array-copywithin.yml | 3 +++ feature-group-definitions/array-fill.yml | 3 +++ feature-group-definitions/array-find.yml | 3 +++ feature-group-definitions/array-findlast.yml | 3 +++ feature-group-definitions/array-flat.yml | 2 ++ feature-group-definitions/array-from.yml | 3 +++ feature-group-definitions/array-fromasync.yml | 2 ++ feature-group-definitions/array-includes.yml | 3 +++ feature-group-definitions/array-isarray.yml | 2 ++ feature-group-definitions/array-iteration-methods.yml | 2 ++ feature-group-definitions/array-iterators.yml | 3 +++ feature-group-definitions/array-of.yml | 3 +++ feature-group-definitions/array-splice.yml | 2 ++ feature-group-definitions/array.yml | 2 ++ feature-group-definitions/typed-array-iteration-methods.yml | 2 ++ feature-group-definitions/typed-array-iterators.yml | 3 +++ feature-group-definitions/typed-arrays.yml | 2 ++ index.ts | 3 ++- 20 files changed, 51 insertions(+), 1 deletion(-) diff --git a/feature-group-definitions/array-at.yml b/feature-group-definitions/array-at.yml index 13901b709b1..09f801476a5 100644 --- a/feature-group-definitions/array-at.yml +++ b/feature-group-definitions/array-at.yml @@ -2,6 +2,9 @@ name: Array at() description: Array at() and typed array at() methods spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.at snapshot: ecmascript-2022 +groups: + - arrays + - typed-arrays status: baseline: low baseline_low_date: 2022-03-14 diff --git a/feature-group-definitions/array-by-copy.yml b/feature-group-definitions/array-by-copy.yml index cb7a6f6be71..e07aa768977 100644 --- a/feature-group-definitions/array-by-copy.yml +++ b/feature-group-definitions/array-by-copy.yml @@ -9,6 +9,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tosorted - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.with snapshot: ecmascript-2023 +groups: + - arrays + - typed-arrays status: baseline: low baseline_low_date: 2023-07-04 diff --git a/feature-group-definitions/array-copywithin.yml b/feature-group-definitions/array-copywithin.yml index 34c6d4e1668..0e5c80a1d19 100644 --- a/feature-group-definitions/array-copywithin.yml +++ b/feature-group-definitions/array-copywithin.yml @@ -2,6 +2,9 @@ name: Array copyWithin() description: Array copyWithin() and typed array copyWithin() methods spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.copywithin snapshot: ecmascript-2015 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-09-30 diff --git a/feature-group-definitions/array-fill.yml b/feature-group-definitions/array-fill.yml index 2911815b043..d2a260d662a 100644 --- a/feature-group-definitions/array-fill.yml +++ b/feature-group-definitions/array-fill.yml @@ -4,6 +4,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.fill - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.fill snapshot: ecmascript-2015 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-09-01 diff --git a/feature-group-definitions/array-find.yml b/feature-group-definitions/array-find.yml index 134cfef8562..4e2ce735cab 100644 --- a/feature-group-definitions/array-find.yml +++ b/feature-group-definitions/array-find.yml @@ -6,6 +6,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.find - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findindex snapshot: ecmascript-2015 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-09-01 diff --git a/feature-group-definitions/array-findlast.yml b/feature-group-definitions/array-findlast.yml index 9b01c79d678..46ac7cd6984 100644 --- a/feature-group-definitions/array-findlast.yml +++ b/feature-group-definitions/array-findlast.yml @@ -6,6 +6,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlast - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlastindex snapshot: ecmascript-2023 +groups: + - arrays + - typed-arrays status: baseline: low baseline_low_date: 2022-08-23 diff --git a/feature-group-definitions/array-flat.yml b/feature-group-definitions/array-flat.yml index 53a109f0a86..e68b62273dc 100644 --- a/feature-group-definitions/array-flat.yml +++ b/feature-group-definitions/array-flat.yml @@ -5,6 +5,8 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flat - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flatmap snapshot: ecmascript-2019 +groups: + - arrays status: baseline: high baseline_low_date: 2020-01-15 diff --git a/feature-group-definitions/array-from.yml b/feature-group-definitions/array-from.yml index d48d98b1cc1..20d3f4e515a 100644 --- a/feature-group-definitions/array-from.yml +++ b/feature-group-definitions/array-from.yml @@ -4,6 +4,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.from - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of snapshot: ecmascript-2015 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-09-30 diff --git a/feature-group-definitions/array-fromasync.yml b/feature-group-definitions/array-fromasync.yml index be26307eb41..b613e878042 100644 --- a/feature-group-definitions/array-fromasync.yml +++ b/feature-group-definitions/array-fromasync.yml @@ -1,6 +1,8 @@ name: Array.fromAsync() description: Array.fromAsync() static method spec: https://tc39.es/proposal-array-from-async/#sec-array.fromAsync +groups: + - arrays status: baseline: low baseline_low_date: 2024-01-23 diff --git a/feature-group-definitions/array-includes.yml b/feature-group-definitions/array-includes.yml index 7a9352ea8de..6a9713d5f99 100644 --- a/feature-group-definitions/array-includes.yml +++ b/feature-group-definitions/array-includes.yml @@ -4,6 +4,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.includes - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.includes snapshot: ecmascript-2016 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-12-01 diff --git a/feature-group-definitions/array-isarray.yml b/feature-group-definitions/array-isarray.yml index 12452f57275..e29deb69e4e 100644 --- a/feature-group-definitions/array-isarray.yml +++ b/feature-group-definitions/array-isarray.yml @@ -2,6 +2,8 @@ name: Array.isArray() description: Array.isArray() static method spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.isarray snapshot: ecmascript-5 +groups: + - arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array-iteration-methods.yml b/feature-group-definitions/array-iteration-methods.yml index 4876183a0ac..394231ec6bb 100644 --- a/feature-group-definitions/array-iteration-methods.yml +++ b/feature-group-definitions/array-iteration-methods.yml @@ -11,6 +11,8 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduceright - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.some snapshot: ecmascript-5 +groups: + - arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array-iterators.yml b/feature-group-definitions/array-iterators.yml index 4526b9df4d9..6b058e4e403 100644 --- a/feature-group-definitions/array-iterators.yml +++ b/feature-group-definitions/array-iterators.yml @@ -6,6 +6,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.keys - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.values snapshot: ecmascript-2015 +groups: + - arrays + - iterators status: baseline: high baseline_low_date: 2016-09-20 diff --git a/feature-group-definitions/array-of.yml b/feature-group-definitions/array-of.yml index 055b53cf7a9..b4a892ab08a 100644 --- a/feature-group-definitions/array-of.yml +++ b/feature-group-definitions/array-of.yml @@ -4,6 +4,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.of - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of snapshot: ecmascript-2015 +groups: + - arrays + - typed-arrays status: baseline: high baseline_low_date: 2015-09-30 diff --git a/feature-group-definitions/array-splice.yml b/feature-group-definitions/array-splice.yml index 6e416517114..55809e50fc1 100644 --- a/feature-group-definitions/array-splice.yml +++ b/feature-group-definitions/array-splice.yml @@ -2,6 +2,8 @@ name: Array splice() description: Array splice() method spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.splice snapshot: ecmascript-2015 +groups: + - arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array.yml b/feature-group-definitions/array.yml index 6362500d390..0785929a2e0 100644 --- a/feature-group-definitions/array.yml +++ b/feature-group-definitions/array.yml @@ -17,6 +17,8 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.unshift - https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-array-initializer snapshot: ecmascript-1 +groups: + - arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/typed-array-iteration-methods.yml b/feature-group-definitions/typed-array-iteration-methods.yml index f7ab376e0de..b50f17e529a 100644 --- a/feature-group-definitions/typed-array-iteration-methods.yml +++ b/feature-group-definitions/typed-array-iteration-methods.yml @@ -11,6 +11,8 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduceright - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.some snapshot: ecmascript-2015 +groups: + - typed-arrays status: baseline: high baseline_low_date: 2016-03-21 diff --git a/feature-group-definitions/typed-array-iterators.yml b/feature-group-definitions/typed-array-iterators.yml index 7e1c4c0d251..bf9e0add0ce 100644 --- a/feature-group-definitions/typed-array-iterators.yml +++ b/feature-group-definitions/typed-array-iterators.yml @@ -6,6 +6,9 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.values snapshot: ecmascript-2015 +groups: + - iterators + - typed-arrays status: baseline: high baseline_low_date: 2016-09-20 diff --git a/feature-group-definitions/typed-arrays.yml b/feature-group-definitions/typed-arrays.yml index aee1833cdf0..b8772bc7947 100644 --- a/feature-group-definitions/typed-arrays.yml +++ b/feature-group-definitions/typed-arrays.yml @@ -19,6 +19,8 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tolocalestring - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tostring snapshot: ecmascript-2015 +groups: + - typed-arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/index.ts b/index.ts index 85845c553ae..f8710aec74c 100644 --- a/index.ts +++ b/index.ts @@ -14,7 +14,8 @@ const monthsFromBaselineLowToHigh = 30; // They're not part of the public schema (yet). const omittables = [ "description", - "snapshot" + "snapshot", + "groups" ] function scrub(data: FeatureData) { From 68c78572867964fe052a20ef421a28c1f883568a Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Fri, 1 Mar 2024 13:40:54 +0100 Subject: [PATCH 2/2] groups -> group --- feature-group-definitions/array-at.yml | 2 +- feature-group-definitions/array-by-copy.yml | 2 +- feature-group-definitions/array-copywithin.yml | 2 +- feature-group-definitions/array-fill.yml | 2 +- feature-group-definitions/array-find.yml | 2 +- feature-group-definitions/array-findlast.yml | 2 +- feature-group-definitions/array-flat.yml | 3 +-- feature-group-definitions/array-from.yml | 2 +- feature-group-definitions/array-fromasync.yml | 3 +-- feature-group-definitions/array-includes.yml | 2 +- feature-group-definitions/array-isarray.yml | 3 +-- feature-group-definitions/array-iteration-methods.yml | 3 +-- feature-group-definitions/array-iterators.yml | 2 +- feature-group-definitions/array-of.yml | 2 +- feature-group-definitions/array-splice.yml | 3 +-- feature-group-definitions/array.yml | 3 +-- feature-group-definitions/typed-array-iteration-methods.yml | 3 +-- feature-group-definitions/typed-array-iterators.yml | 2 +- feature-group-definitions/typed-arrays.yml | 3 +-- index.ts | 2 +- 20 files changed, 20 insertions(+), 28 deletions(-) diff --git a/feature-group-definitions/array-at.yml b/feature-group-definitions/array-at.yml index 09f801476a5..7196f903947 100644 --- a/feature-group-definitions/array-at.yml +++ b/feature-group-definitions/array-at.yml @@ -2,7 +2,7 @@ name: Array at() description: Array at() and typed array at() methods spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.at snapshot: ecmascript-2022 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-by-copy.yml b/feature-group-definitions/array-by-copy.yml index e07aa768977..204cdbb6be9 100644 --- a/feature-group-definitions/array-by-copy.yml +++ b/feature-group-definitions/array-by-copy.yml @@ -9,7 +9,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tosorted - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.with snapshot: ecmascript-2023 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-copywithin.yml b/feature-group-definitions/array-copywithin.yml index 0e5c80a1d19..870e49f6b42 100644 --- a/feature-group-definitions/array-copywithin.yml +++ b/feature-group-definitions/array-copywithin.yml @@ -2,7 +2,7 @@ name: Array copyWithin() description: Array copyWithin() and typed array copyWithin() methods spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.copywithin snapshot: ecmascript-2015 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-fill.yml b/feature-group-definitions/array-fill.yml index d2a260d662a..ceda301695c 100644 --- a/feature-group-definitions/array-fill.yml +++ b/feature-group-definitions/array-fill.yml @@ -4,7 +4,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.fill - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.fill snapshot: ecmascript-2015 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-find.yml b/feature-group-definitions/array-find.yml index 4e2ce735cab..8b84872d038 100644 --- a/feature-group-definitions/array-find.yml +++ b/feature-group-definitions/array-find.yml @@ -6,7 +6,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.find - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findindex snapshot: ecmascript-2015 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-findlast.yml b/feature-group-definitions/array-findlast.yml index 46ac7cd6984..ad4c6df0c90 100644 --- a/feature-group-definitions/array-findlast.yml +++ b/feature-group-definitions/array-findlast.yml @@ -6,7 +6,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlast - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlastindex snapshot: ecmascript-2023 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-flat.yml b/feature-group-definitions/array-flat.yml index e68b62273dc..27feadc7512 100644 --- a/feature-group-definitions/array-flat.yml +++ b/feature-group-definitions/array-flat.yml @@ -5,8 +5,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flat - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flatmap snapshot: ecmascript-2019 -groups: - - arrays +group: arrays status: baseline: high baseline_low_date: 2020-01-15 diff --git a/feature-group-definitions/array-from.yml b/feature-group-definitions/array-from.yml index 20d3f4e515a..2949bb5c099 100644 --- a/feature-group-definitions/array-from.yml +++ b/feature-group-definitions/array-from.yml @@ -4,7 +4,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.from - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of snapshot: ecmascript-2015 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-fromasync.yml b/feature-group-definitions/array-fromasync.yml index b613e878042..d3fd07aedb8 100644 --- a/feature-group-definitions/array-fromasync.yml +++ b/feature-group-definitions/array-fromasync.yml @@ -1,8 +1,7 @@ name: Array.fromAsync() description: Array.fromAsync() static method spec: https://tc39.es/proposal-array-from-async/#sec-array.fromAsync -groups: - - arrays +group: arrays status: baseline: low baseline_low_date: 2024-01-23 diff --git a/feature-group-definitions/array-includes.yml b/feature-group-definitions/array-includes.yml index 6a9713d5f99..e1763719d18 100644 --- a/feature-group-definitions/array-includes.yml +++ b/feature-group-definitions/array-includes.yml @@ -4,7 +4,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.includes - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.includes snapshot: ecmascript-2016 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-isarray.yml b/feature-group-definitions/array-isarray.yml index e29deb69e4e..b6551cb1183 100644 --- a/feature-group-definitions/array-isarray.yml +++ b/feature-group-definitions/array-isarray.yml @@ -2,8 +2,7 @@ name: Array.isArray() description: Array.isArray() static method spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.isarray snapshot: ecmascript-5 -groups: - - arrays +group: arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array-iteration-methods.yml b/feature-group-definitions/array-iteration-methods.yml index 394231ec6bb..a93ff340d29 100644 --- a/feature-group-definitions/array-iteration-methods.yml +++ b/feature-group-definitions/array-iteration-methods.yml @@ -11,8 +11,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduceright - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.some snapshot: ecmascript-5 -groups: - - arrays +group: arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array-iterators.yml b/feature-group-definitions/array-iterators.yml index 6b058e4e403..ad8677354b6 100644 --- a/feature-group-definitions/array-iterators.yml +++ b/feature-group-definitions/array-iterators.yml @@ -6,7 +6,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.keys - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.values snapshot: ecmascript-2015 -groups: +group: - arrays - iterators status: diff --git a/feature-group-definitions/array-of.yml b/feature-group-definitions/array-of.yml index b4a892ab08a..d7071e9e4e9 100644 --- a/feature-group-definitions/array-of.yml +++ b/feature-group-definitions/array-of.yml @@ -4,7 +4,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.of - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of snapshot: ecmascript-2015 -groups: +group: - arrays - typed-arrays status: diff --git a/feature-group-definitions/array-splice.yml b/feature-group-definitions/array-splice.yml index 55809e50fc1..40f8920b7bc 100644 --- a/feature-group-definitions/array-splice.yml +++ b/feature-group-definitions/array-splice.yml @@ -2,8 +2,7 @@ name: Array splice() description: Array splice() method spec: https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.splice snapshot: ecmascript-2015 -groups: - - arrays +group: arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/array.yml b/feature-group-definitions/array.yml index 0785929a2e0..b0505a78899 100644 --- a/feature-group-definitions/array.yml +++ b/feature-group-definitions/array.yml @@ -17,8 +17,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.unshift - https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-array-initializer snapshot: ecmascript-1 -groups: - - arrays +group: arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/feature-group-definitions/typed-array-iteration-methods.yml b/feature-group-definitions/typed-array-iteration-methods.yml index b50f17e529a..44a972754d6 100644 --- a/feature-group-definitions/typed-array-iteration-methods.yml +++ b/feature-group-definitions/typed-array-iteration-methods.yml @@ -11,8 +11,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduceright - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.some snapshot: ecmascript-2015 -groups: - - typed-arrays +group: typed-arrays status: baseline: high baseline_low_date: 2016-03-21 diff --git a/feature-group-definitions/typed-array-iterators.yml b/feature-group-definitions/typed-array-iterators.yml index bf9e0add0ce..f0e9cb9b7a3 100644 --- a/feature-group-definitions/typed-array-iterators.yml +++ b/feature-group-definitions/typed-array-iterators.yml @@ -6,7 +6,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.values snapshot: ecmascript-2015 -groups: +group: - iterators - typed-arrays status: diff --git a/feature-group-definitions/typed-arrays.yml b/feature-group-definitions/typed-arrays.yml index b8772bc7947..1b6b12a3778 100644 --- a/feature-group-definitions/typed-arrays.yml +++ b/feature-group-definitions/typed-arrays.yml @@ -19,8 +19,7 @@ spec: - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tolocalestring - https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tostring snapshot: ecmascript-2015 -groups: - - typed-arrays +group: typed-arrays status: baseline: high baseline_low_date: 2015-07-28 diff --git a/index.ts b/index.ts index f8710aec74c..e0825f13df0 100644 --- a/index.ts +++ b/index.ts @@ -15,7 +15,7 @@ const monthsFromBaselineLowToHigh = 30; const omittables = [ "description", "snapshot", - "groups" + "group" ] function scrub(data: FeatureData) {