Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tropicadri committed Apr 18, 2023
1 parent 6f81794 commit a7cab22
Show file tree
Hide file tree
Showing 10 changed files with 1,495 additions and 2,599 deletions.
2,093 changes: 1,371 additions & 722 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@types/fs-extra": "^9.0.5",
"@types/lodash": "^4.14.165",
"@types/stringify-object": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"acorn": "^8.0.1",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"babylon": "^6.18.0",
Expand Down Expand Up @@ -71,16 +71,16 @@
"require-dir": "^1.2.0",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-typescript2": "^0.34.1",
"selenium-assistant": "^6.1.1",
"semver": "^7.3.2",
"serve-index": "^1.9.1",
"service-worker-mock": "^1.9.3",
"sinon": "^9.0.3",
"tempy": "^0.6.0",
"type-fest": "^2.3.4",
"type-fest": "^3.8.0",
"typescript": "^4.9.5",
"typescript-json-schema": "^0.51.0",
"typescript-json-schema": "^0.56.0",
"upath": "^1.2.0",
"webpack-v4": "npm:webpack@^4.44.2",
"webpack-v5": "npm:webpack@^5.9.0",
Expand Down
92 changes: 53 additions & 39 deletions packages/workbox-build/src/schema/GenerateSWOptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,9 @@
{
"$ref": "#/definitions/ArrayBufferView"
},
{
"$ref": "#/definitions/ReadableStream<any>"
},
{
"$ref": "#/definitions/Blob"
},
Expand All @@ -637,9 +640,6 @@
{
"$ref": "#/definitions/URLSearchParams"
},
{
"$ref": "#/definitions/ReadableStream<Uint8Array>"
},
{
"type": [
"null",
Expand Down Expand Up @@ -670,19 +670,26 @@
"headers": {
"anyOf": [
{
"$ref": "#/definitions/Headers"
"$ref": "#/definitions/Record<string,string>"
},
{
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
"items": [
{
"type": "string"
},
{
"type": "string"
}
],
"minItems": 2,
"maxItems": 2
}
},
{
"$ref": "#/definitions/Record<string,string>"
"$ref": "#/definitions/Headers"
}
]
},
Expand Down Expand Up @@ -739,7 +746,9 @@
}
]
},
"window": {}
"window": {
"type": "null"
}
},
"additionalProperties": false
},
Expand All @@ -749,28 +758,21 @@
"byteLength": {
"type": "number"
},
"__@toStringTag": {
"__@toStringTag@25": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"__@toStringTag",
"__@toStringTag@25",
"byteLength"
]
},
"ArrayBufferView": {
"type": "object",
"properties": {
"buffer": {
"anyOf": [
{
"$ref": "#/definitions/ArrayBuffer"
},
{
"$ref": "#/definitions/SharedArrayBuffer"
}
]
"$ref": "#/definitions/ArrayBufferLike"
},
"byteLength": {
"type": "number"
Expand All @@ -786,16 +788,26 @@
"byteOffset"
]
},
"ArrayBufferLike": {
"anyOf": [
{
"$ref": "#/definitions/ArrayBuffer"
},
{
"$ref": "#/definitions/SharedArrayBuffer"
}
]
},
"SharedArrayBuffer": {
"type": "object",
"properties": {
"byteLength": {
"type": "number"
},
"__@species": {
"__@species@598": {
"$ref": "#/definitions/SharedArrayBuffer"
},
"__@toStringTag": {
"__@toStringTag@25": {
"type": "string",
"enum": [
"SharedArrayBuffer"
Expand All @@ -804,11 +816,23 @@
},
"additionalProperties": false,
"required": [
"__@species",
"__@toStringTag",
"__@species@598",
"__@toStringTag@25",
"byteLength"
]
},
"ReadableStream<any>": {
"type": "object",
"properties": {
"locked": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"locked"
]
},
"Blob": {
"type": "object",
"properties": {
Expand All @@ -833,23 +857,11 @@
"type": "object",
"additionalProperties": false
},
"ReadableStream<Uint8Array>": {
"type": "object",
"properties": {
"locked": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"locked"
]
},
"Headers": {
"Record<string,string>": {
"type": "object",
"additionalProperties": false
},
"Record<string,string>": {
"Headers": {
"type": "object",
"additionalProperties": false
},
Expand All @@ -869,12 +881,14 @@
"type": "null"
}
]
}
},
"reason": {}
},
"additionalProperties": false,
"required": [
"aborted",
"onabort"
"onabort",
"reason"
]
},
"RouteMatchCallback": {}
Expand Down
Loading

0 comments on commit a7cab22

Please sign in to comment.