@scalar/docusaurus 0.4.197 → 0.4.198
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/CHANGELOG.md +6 -0
- package/README.md +7 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -84,7 +84,13 @@ plugins: [
|
|
|
84
84
|
|
|
85
85
|
### Example
|
|
86
86
|
|
|
87
|
-
You can find an example in this repo under [
|
|
87
|
+
You can find an example in this repo under [integrations/docusaurus/playground](https://github.com/scalar/scalar/tree/main/integrations/docusaurus/playground)
|
|
88
|
+
|
|
89
|
+
Run the example using
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
npm run playground
|
|
93
|
+
```
|
|
88
94
|
|
|
89
95
|
## Config
|
|
90
96
|
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"testing",
|
|
20
20
|
"react"
|
|
21
21
|
],
|
|
22
|
-
"version": "0.4.
|
|
22
|
+
"version": "0.4.198",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=18"
|
|
25
25
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"CHANGELOG.md"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@scalar/api-reference-react": "0.4.
|
|
32
|
+
"@scalar/api-reference-react": "0.4.29"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@docusaurus/types": "^3.6.0",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"react": "^18.0.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
|
+
"dev": "cd ./playground && pnpm dev",
|
|
47
48
|
"build": "rm -Rf ./dist && tsc --declaration && postcss src/theme.css -o dist/theme.css",
|
|
48
49
|
"format:check": "scalar-format-check",
|
|
49
50
|
"format": "scalar-format",
|