web-specs 1.3.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +34 -2
  2. package/index.json +37 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -28,6 +28,8 @@ cross-references, WebIDL, quality, etc.
28
28
  - [`seriesComposition`](#seriescomposition)
29
29
  - [`seriesPrevious`](#seriesprevious)
30
30
  - [`seriesNext`](#seriesnext)
31
+ - [`forkOf`](#forkof)
32
+ - [`forks`](#forks)
31
33
  - [`organization`](#organization)
32
34
  - [`groups`](#groups)
33
35
  - [`release`](#release)
@@ -138,6 +140,13 @@ For WHATWG specs, this is the shortname that appears at the beginning of the URL
138
140
  (e.g. `compat` for `https://compat.spec.whatwg.org/`). For specs developed on
139
141
  GitHub, this is usually the name of repository that holds the spec.
140
142
 
143
+ When the spec is a fork (see [`forkOf`](#forkof)) of a base spec, its shortname
144
+ will start with the shortname of the base spec completed by `-fork-` and the
145
+ actual shortname of the fork spec. For instance, given an exception handling
146
+ fork of the WebAssembly spec for which the raw shortname would be
147
+ `exception-handling`, the actual spec shortname will be
148
+ `wasm-js-api-1-fork-exception-handling`.
149
+
141
150
  The `shortname` property is always set.
142
151
 
143
152
 
@@ -273,8 +282,9 @@ number.
273
282
 
274
283
  ### `seriesComposition`
275
284
 
276
- Whether the spec is a standalone spec, or whether it is a delta spec over the
277
- previous level or version in the series. Possible values are `full` or `delta`.
285
+ Whether the spec is a standalone spec, whether it is a delta spec over the
286
+ previous level or version in the series, or whether it is a temporary fork of
287
+ another spec. Possible values are `full`, `delta`, or `fork`.
278
288
 
279
289
  The `seriesComposition` property is always set.
280
290
 
@@ -294,6 +304,28 @@ The `shortname` of the next spec in the series.
294
304
  The `seriesNext` property is only set where there is a next level or version.
295
305
 
296
306
 
307
+ ### `forkOf`
308
+
309
+ The shortname of the spec that this spec is a fork of.
310
+
311
+ The `forkOf` property is only set when the spec is a fork of another one. The
312
+ [`seriesComposition`](#seriescomposition) property is always `"fork"` when the
313
+ `forkOf` property is set.
314
+
315
+ A forked specs is supposed to be temporary by nature. It will be removed from
316
+ the list as soon as it gets merged into the main spec, or as soon as it gets
317
+ abandoned.
318
+
319
+
320
+ ### `forks`
321
+
322
+ An array that lists shortnames of known forks of the spec in the list.
323
+
324
+ The `forks` property is only set when there exists at least one fork of the
325
+ spec in the list, meaning when there is an entry in the list that has a
326
+ [`forkOf`](#forkof) property set to the spec's shortname.
327
+
328
+
297
329
  ### `organization`
298
330
 
299
331
  The name of the standardization organization that owns the spec such as `W3C`,
package/index.json CHANGED
@@ -2975,6 +2975,40 @@
2975
2975
  ]
2976
2976
  }
2977
2977
  },
2978
+ {
2979
+ "url": "https://webassembly.github.io/exception-handling/js-api/",
2980
+ "seriesComposition": "fork",
2981
+ "shortname": "wasm-js-api-1-fork-exception-handling",
2982
+ "series": {
2983
+ "shortname": "wasm-js-api",
2984
+ "currentSpecification": "wasm-js-api-1",
2985
+ "title": "WebAssembly JavaScript Interface",
2986
+ "shortTitle": "WebAssembly JavaScript Interface",
2987
+ "releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
2988
+ "nightlyUrl": "https://webassembly.github.io/spec/js-api/"
2989
+ },
2990
+ "seriesVersion": "1",
2991
+ "forkOf": "wasm-js-api-1",
2992
+ "organization": "W3C",
2993
+ "groups": [
2994
+ {
2995
+ "name": "WebAssembly Community Group",
2996
+ "url": "https://www.w3.org/community/webassembly/"
2997
+ }
2998
+ ],
2999
+ "nightly": {
3000
+ "url": "https://webassembly.github.io/exception-handling/js-api/",
3001
+ "repository": "https://github.com/WebAssembly/exception-handling",
3002
+ "sourcePath": "document/js-api/index.bs",
3003
+ "filename": "index.html"
3004
+ },
3005
+ "title": "WebAssembly JavaScript Interface: Exception Handling",
3006
+ "source": "spec",
3007
+ "shortTitle": "WebAssembly JavaScript Interface: Exception Handling",
3008
+ "categories": [
3009
+ "browser"
3010
+ ]
3011
+ },
2978
3012
  {
2979
3013
  "url": "https://webbluetoothcg.github.io/web-bluetooth/",
2980
3014
  "seriesComposition": "full",
@@ -16852,6 +16886,9 @@
16852
16886
  "nightlyUrl": "https://webassembly.github.io/spec/js-api/"
16853
16887
  },
16854
16888
  "seriesVersion": "1",
16889
+ "forks": [
16890
+ "wasm-js-api-1-fork-exception-handling"
16891
+ ],
16855
16892
  "organization": "W3C",
16856
16893
  "groups": [
16857
16894
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-specs",
3
- "version": "1.3.0",
3
+ "version": "2.0.0",
4
4
  "description": "Curated list of technical Web specifications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,4 +14,4 @@
14
14
  "index.json"
15
15
  ],
16
16
  "main": "index.json"
17
- }
17
+ }