Skip to content

Commit fad95ce

Browse files
committed
chore: updates website deps and styling
1 parent b6cf5c0 commit fad95ce

File tree

4 files changed

+24
-17
lines changed

4 files changed

+24
-17
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@
4949
"prettier": "^2.7.1",
5050
"typescript": "^4.7.4",
5151
"vitest": "^0.18.0"
52+
},
53+
"volta": {
54+
"node": "16.15.1"
5255
}
5356
}

website/docs/intro.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Install
44

5-
```
5+
```bash
66
npm install node-git-server
77
```
88

@@ -40,14 +40,14 @@ repos.listen(port, () => {
4040

4141
then start up the node-git-server server...
4242

43-
```
43+
```bash
4444
$ node example/index.js
4545
node-git-server running at http://localhost:7005
4646
```
4747

4848
meanwhile...
4949

50-
```
50+
```bash
5151
$ git push http://localhost:7005/beep master
5252
Counting objects: 356, done.
5353
Delta compression using up to 2 threads.
@@ -98,14 +98,14 @@ repos.listen(port, () => {
9898

9999
then start up the node-git-server server...
100100

101-
```
101+
```bash
102102
$ node example/index.js
103103
node-git-server running at http://localhost:7005
104104
```
105105

106106
meanwhile...
107107

108-
```
108+
```bash
109109
$ git push http://localhost:7005/beep master
110110
Counting objects: 356, done.
111111
Delta compression using up to 2 threads.
@@ -160,14 +160,14 @@ repos.listen(port, () => {
160160

161161
then start up the node-git-server server...
162162

163-
```
163+
```bash
164164
$ node example/index.js
165165
node-git-server running at http://localhost:7005
166166
```
167167

168168
meanwhile...
169169

170-
```
170+
```bash
171171
$ git push http://localhost:7005/beep master
172172
Counting objects: 356, done.
173173
Delta compression using up to 2 threads.
@@ -182,13 +182,13 @@ To http://localhost:7005/beep
182182

183183
Running the following command will start up a simple http server:
184184

185-
```
185+
```bash
186186
node example/index.js
187187
```
188188

189189
If you want to try using https run the following
190190

191-
```
191+
```bash
192192
node example/index.js --https
193193
```
194194

website/package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
"write-heading-ids": "docusaurus write-heading-ids"
1818
},
1919
"dependencies": {
20-
"@docusaurus/core": "2.0.0-beta.14",
21-
"@docusaurus/preset-classic": "2.0.0-beta.14",
20+
"@docusaurus/core": "2.0.0-beta.22",
21+
"@docusaurus/preset-classic": "2.0.0-beta.22",
2222
"@mdx-js/react": "^1.6.21",
2323
"@svgr/webpack": "^5.5.0",
2424
"clsx": "^1.1.1",
25-
"docusaurus-plugin-api-extractor": "^0.4.3",
26-
"docusaurus-plugin-api-extractor-markdown-documenter": "0.3.3",
27-
"docusaurus-plugin-search-local": "^0.1.4",
28-
"@microsoft/api-extractor": "^7.18.16",
29-
"@microsoft/api-documenter": "^7.13.68",
25+
"docusaurus-plugin-api-extractor": "^2.0.4",
26+
"docusaurus-plugin-api-extractor-markdown-documenter": "0.3.4",
27+
"docusaurus-plugin-search-local": "^0.7.0",
28+
"@microsoft/api-extractor": "^7.28.4",
29+
"@microsoft/api-documenter": "^7.18.2",
3030
"file-loader": "^6.2.0",
3131
"prism-react-renderer": "^1.2.1",
3232
"react": "^17.0.1",
@@ -44,5 +44,8 @@
4444
"last 1 firefox version",
4545
"last 1 safari version"
4646
]
47+
},
48+
"volta": {
49+
"node": "16.15.1"
4750
}
48-
}
51+
}

website/src/pages/index.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
overflow: hidden;
1111
display: flex;
1212
width: 100%;
13+
height: 100vh;
1314
}
1415

1516
@media screen and (max-width: 966px) {

0 commit comments

Comments
 (0)