browser-specs 2.30.0 → 3.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.
- package/README.md +34 -2
- package/index.json +37 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ cross-references, WebIDL, quality, etc.
|
|
|
29
29
|
- [`seriesComposition`](#seriescomposition)
|
|
30
30
|
- [`seriesPrevious`](#seriesprevious)
|
|
31
31
|
- [`seriesNext`](#seriesnext)
|
|
32
|
+
- [`forkOf`](#forkof)
|
|
33
|
+
- [`forks`](#forks)
|
|
32
34
|
- [`organization`](#organization)
|
|
33
35
|
- [`groups`](#groups)
|
|
34
36
|
- [`release`](#release)
|
|
@@ -140,6 +142,13 @@ For WHATWG specs, this is the shortname that appears at the beginning of the URL
|
|
|
140
142
|
(e.g. `compat` for `https://compat.spec.whatwg.org/`). For specs developed on
|
|
141
143
|
GitHub, this is usually the name of repository that holds the spec.
|
|
142
144
|
|
|
145
|
+
When the spec is a fork (see [`forkOf`](#forkof)) of a base spec, its shortname
|
|
146
|
+
will start with the shortname of the base spec completed by `-fork-` and the
|
|
147
|
+
actual shortname of the fork spec. For instance, given an exception handling
|
|
148
|
+
fork of the WebAssembly spec for which the raw shortname would be
|
|
149
|
+
`exception-handling`, the actual spec shortname will be
|
|
150
|
+
`wasm-js-api-1-fork-exception-handling`.
|
|
151
|
+
|
|
143
152
|
The `shortname` property is always set.
|
|
144
153
|
|
|
145
154
|
|
|
@@ -275,8 +284,9 @@ number.
|
|
|
275
284
|
|
|
276
285
|
### `seriesComposition`
|
|
277
286
|
|
|
278
|
-
Whether the spec is a standalone spec,
|
|
279
|
-
previous level or version in the series
|
|
287
|
+
Whether the spec is a standalone spec, whether it is a delta spec over the
|
|
288
|
+
previous level or version in the series, or whether it is a temporary fork of
|
|
289
|
+
another spec. Possible values are `full`, `delta`, or `fork`.
|
|
280
290
|
|
|
281
291
|
The `seriesComposition` property is always set.
|
|
282
292
|
|
|
@@ -296,6 +306,28 @@ The `shortname` of the next spec in the series.
|
|
|
296
306
|
The `seriesNext` property is only set where there is a next level or version.
|
|
297
307
|
|
|
298
308
|
|
|
309
|
+
### `forkOf`
|
|
310
|
+
|
|
311
|
+
The shortname of the spec that this spec is a fork of.
|
|
312
|
+
|
|
313
|
+
The `forkOf` property is only set when the spec is a fork of another one. The
|
|
314
|
+
[`seriesComposition`](#seriescomposition) property is always `"fork"` when the
|
|
315
|
+
`forkOf` property is set.
|
|
316
|
+
|
|
317
|
+
A forked specs is supposed to be temporary by nature. It will be removed from
|
|
318
|
+
the list as soon as it gets merged into the main spec, or as soon as it gets
|
|
319
|
+
abandoned.
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### `forks`
|
|
323
|
+
|
|
324
|
+
An array that lists shortnames of known forks of the spec in the list.
|
|
325
|
+
|
|
326
|
+
The `forks` property is only set when there exists at least one fork of the
|
|
327
|
+
spec in the list, meaning when there is an entry in the list that has a
|
|
328
|
+
[`forkOf`](#forkof) property set to the spec's shortname.
|
|
329
|
+
|
|
330
|
+
|
|
299
331
|
### `organization`
|
|
300
332
|
|
|
301
333
|
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",
|
|
@@ -16656,6 +16690,9 @@
|
|
|
16656
16690
|
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
16657
16691
|
},
|
|
16658
16692
|
"seriesVersion": "1",
|
|
16693
|
+
"forks": [
|
|
16694
|
+
"wasm-js-api-1-fork-exception-handling"
|
|
16695
|
+
],
|
|
16659
16696
|
"organization": "W3C",
|
|
16660
16697
|
"groups": [
|
|
16661
16698
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-specs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Curated list of technical Web specifications that are directly implemented or that will be implemented by Web browsers.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
"index.json"
|
|
15
15
|
],
|
|
16
16
|
"main": "index.json"
|
|
17
|
-
}
|
|
17
|
+
}
|