@startupjs/docs 0.54.0 → 0.54.2

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 (3) hide show
  1. package/README.md +0 -17
  2. package/package.json +8 -8
  3. 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,20 +4,20 @@
4
4
  "access": "public"
5
5
  },
6
6
  "description": "MDX documentation generator",
7
- "version": "0.54.0",
7
+ "version": "0.54.2",
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.0",
13
- "@startupjs/scrollable-anchors": "^0.54.0",
14
- "@startupjs/ui": "^0.54.0",
12
+ "@startupjs/mdx": "^0.54.2",
13
+ "@startupjs/scrollable-anchors": "^0.54.2",
14
+ "@startupjs/ui": "^0.54.2",
15
15
  "parse-prop-types": "^0.3.0"
16
16
  },
17
17
  "peerDependencies": {
18
- "react": "16.9 - 17",
19
- "react-native": ">= 0.61.4 < 0.64.0",
20
- "startupjs": ">= 0.33.0"
18
+ "react": "*",
19
+ "react-native": "*",
20
+ "startupjs": "*"
21
21
  },
22
- "gitHead": "6ff1f85289a0b0aa9aef46f55b9cbbb556707f0c"
22
+ "gitHead": "92667aeef94a9b0c9e88a428cff742504bcfc6f2"
23
23
  }
package/routes.js DELETED
@@ -1 +0,0 @@
1
- export { default } from './client/app/routes'