Browse Source

deps: upgrade `remark-cli` to v9

Antoine du Hamel 3 years ago
parent
commit
def967d5ee
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package.json
  2. 1 1
      website/src/docs/xhrupload.md

+ 1 - 1
package.json

@@ -117,7 +117,7 @@
     "postcss-logical": "^4.0.2",
     "postcss-safe-important": "1.2.0",
     "pre-commit": "1.2.2",
-    "remark-cli": "^8.0.1",
+    "remark-cli": "^9.0.0",
     "remark-lint-uppy": "file:private/remark-lint-uppy",
     "replacestream": "^4.0.3",
     "resize-observer-polyfill": "^1.5.1",

+ 1 - 1
website/src/docs/xhrupload.md

@@ -222,7 +222,7 @@ Limit the amount of uploads going on at the same time. Setting this to `0` means
 
 ### `responseType: ''`
 
-The response type expected from the server, determining how the `xhr.response` property should be filled. The `xhr.response` property can be accessed in a custom [`getResponseData()`](#getResponseData-responseText-response) callback. This option sets the [`XMLHttpRequest.responseType][XHR.responseType] property. Only '', 'text', 'arraybuffer', 'blob' and 'document' are widely supported by browsers, so it's recommended to use one of those. The default is the empty string, which is equivalent to 'text' for the `xhr.response` property.
+The response type expected from the server, determining how the `xhr.response` property should be filled. The `xhr.response` property can be accessed in a custom [`getResponseData()`](#getResponseData-responseText-response) callback. This option sets the [`XMLHttpRequest.responseType`][XHR.responseType] property. Only '', 'text', 'arraybuffer', 'blob' and 'document' are widely supported by browsers, so it's recommended to use one of those. The default is the empty string, which is equivalent to 'text' for the `xhr.response` property.
 
 ### `withCredentials: false`