Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1110635

Browse files
author
梅世祺
committed
refactor: remove unused files and clean the codebase
1 parent a6152a4 commit 1110635

File tree

7 files changed

+593
-112
lines changed

7 files changed

+593
-112
lines changed

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
root = true
2+
3+
[*.{ts,tsx}]
4+
indent_size = 2
5+
indent_style = space

.github/screenshot.png

-868 KB
Binary file not shown.

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "none",
4+
"printWidth": 100,
5+
"jsxSingleQuote": true,
6+
"semi": false,
7+
"arrowParens": "avoid"
8+
}

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) 2022 Shu Ding
4+
Copyright (c) 2023-Present The OpenQuickJS Team
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,8 @@
1-
# Nextra Docs Template
1+
# OpenQuickJS Documentation
22

3-
This is a template for creating documentation with [Nextra](https://nextra.site).
3+
## Develop
44

5-
[**Live Demo →**](https://nextra-docs-template.vercel.app)
6-
7-
[![](.github/screenshot.png)](https://nextra-docs-template.vercel.app)
8-
9-
## Quick Start
10-
11-
Click the button to clone this repository and deploy it on Vercel:
12-
13-
[![](https://vercel.com/button)](https://vercel.com/new/clone?s=https%3A%2F%2Fgithub.com%2Fshuding%2Fnextra-docs-template&showOptionalTeamCreation=false)
14-
15-
## Local Development
16-
17-
First, run `pnpm i` to install the dependencies.
18-
19-
Then, run `pnpm dev` to start the development server and visit localhost:3000.
20-
21-
## License
22-
23-
This project is licensed under the MIT License.
5+
```bash
6+
pnpm i # install dependencies
7+
pnpm dev # start dev server
8+
```

next.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const withNextra = require('nextra')({
2-
theme: 'nextra-theme-docs',
3-
themeConfig: './theme.config.tsx',
4-
})
1+
const withNextra = require("nextra")({
2+
theme: "nextra-theme-docs",
3+
themeConfig: "./theme.config.tsx",
4+
});
55

6-
module.exports = withNextra()
6+
module.exports = withNextra();

0 commit comments

Comments
 (0)