feat: docker compose maybe

This commit is contained in:
2023-11-13 16:10:04 -05:00
parent 180b261e40
commit b625ccd8d6
8031 changed files with 2182966 additions and 0 deletions

3
node_modules/mdn-data/api/index.js generated vendored Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
inheritance: require('./inheritance'),
}

2681
node_modules/mdn-data/api/inheritance.json generated vendored Normal file

File diff suppressed because it is too large Load Diff

31
node_modules/mdn-data/api/inheritance.schema.json generated vendored Normal file
View File

@ -0,0 +1,31 @@
{
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"inherits": {
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"minLength": 1
}
]
},
"implements": {
"minItems": 0,
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": [
"inherits",
"implements"
]
}
}