@startupjs/docs 0.54.0 → 0.54.1
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/README.md +0 -17
- package/package.json +5 -5
- package/routes.js +0 -1
package/README.md
CHANGED
|
@@ -90,23 +90,6 @@ startupjs: >= 0.33.0
|
|
|
90
90
|
/>
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
-
4. Add server-side `docs` routes to your `server/index.js` file:
|
|
94
|
-
|
|
95
|
-
```js
|
|
96
|
-
import getDocsRoutes from '@startupjs/docs/routes'
|
|
97
|
-
// ...
|
|
98
|
-
|
|
99
|
-
startupjsServer({
|
|
100
|
-
getHead,
|
|
101
|
-
appRoutes: [
|
|
102
|
-
...getMainRoutes(),
|
|
103
|
-
...getDocsRoutes()
|
|
104
|
-
]
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
// ...
|
|
108
|
-
```
|
|
109
|
-
|
|
110
93
|
## Licence
|
|
111
94
|
|
|
112
95
|
MIT
|
package/package.json
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"description": "MDX documentation generator",
|
|
7
|
-
"version": "0.54.
|
|
7
|
+
"version": "0.54.1",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "index.js",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@fortawesome/free-solid-svg-icons": "^5.12.0",
|
|
12
|
-
"@startupjs/mdx": "^0.54.
|
|
13
|
-
"@startupjs/scrollable-anchors": "^0.54.
|
|
14
|
-
"@startupjs/ui": "^0.54.
|
|
12
|
+
"@startupjs/mdx": "^0.54.1",
|
|
13
|
+
"@startupjs/scrollable-anchors": "^0.54.1",
|
|
14
|
+
"@startupjs/ui": "^0.54.1",
|
|
15
15
|
"parse-prop-types": "^0.3.0"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"react-native": ">= 0.61.4 < 0.64.0",
|
|
20
20
|
"startupjs": ">= 0.33.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "e9788c7b41bcb0fcc85840e951b97c727169462a"
|
|
23
23
|
}
|
package/routes.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './client/app/routes'
|