@docusaurus/logger 0.0.0-5312 → 0.0.0-5314

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -22,7 +22,7 @@ It exports a single object as default export: `logger`. `logger` has the followi
22
22
  - The `interpolate` function. It is a template literal tag. The syntax can be found below.
23
23
  - Logging functions. All logging functions can both be used as normal functions (similar to the `console.log` family, but only accepts one parameter) or template literal tags.
24
24
  - `info`: prints information.
25
- - `warn`: prints a warning that should be payed attention to.
25
+ - `warn`: prints a warning that should be paid attention to.
26
26
  - `error`: prints an error (not necessarily halting the program) that signals significant problems.
27
27
  - `success`: prints a success message.
28
28
  - The `report` function. It takes a `ReportingSeverity` value (`ignore`, `log`, `warn`, `throw`) and reports a message according to the severity.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/logger",
3
- "version": "0.0.0-5312",
3
+ "version": "0.0.0-5314",
4
4
  "description": "An encapsulated logger for semantically formatting console messages.",
5
5
  "main": "./lib/index.js",
6
6
  "repository": {
@@ -29,5 +29,5 @@
29
29
  "devDependencies": {
30
30
  "@types/supports-color": "^8.1.1"
31
31
  },
32
- "gitHead": "181c3343fd1fd145643b6a03bf9dc8929aa16e6f"
32
+ "gitHead": "1d660508846285cd626ddaf2c38fb2fa478eaf08"
33
33
  }