create-rspress 1.35.4 → 1.37.0
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 +28 -1
- package/bin.js +2 -0
- package/dist/index.js +18 -8028
- package/package.json +27 -28
- package/template-basic/doc_build/404.html +17 -0
- package/template-basic/doc_build/guide/index.html +146 -0
- package/template-basic/doc_build/hello.html +19 -0
- package/template-basic/doc_build/index.html +17 -0
- package/template-basic/doc_build/static/css/styles.b2b1631f.css +1 -0
- package/template-basic/doc_build/static/js/21.ec2c01fe.js +2 -0
- package/template-basic/doc_build/static/js/21.ec2c01fe.js.LICENSE.txt +21 -0
- package/template-basic/doc_build/static/js/async/194.62189d7d.js +1 -0
- package/template-basic/doc_build/static/js/async/599.4a892881.js +1 -0
- package/template-basic/doc_build/static/js/async/918.8c28cdf5.js +1 -0
- package/template-basic/doc_build/static/js/index.b77560ea.js +6 -0
- package/template-basic/doc_build/static/js/index.b77560ea.js.LICENSE.txt +13 -0
- package/template-basic/doc_build/static/js/lib-react.958723e2.js +2 -0
- package/template-basic/doc_build/static/js/lib-react.958723e2.js.LICENSE.txt +39 -0
- package/template-basic/doc_build/static/js/lib-router.2fc64dcb.js +2 -0
- package/template-basic/doc_build/static/js/lib-router.2fc64dcb.js.LICENSE.txt +32 -0
- package/template-basic/doc_build/static/js/styles.c233f00f.js +1 -0
- package/template-basic/doc_build/static/search_index.1427c47e.json +1 -0
- package/{template → template-basic}/docs/index.md +4 -4
- package/template-basic/docs/public/rspress-dark-logo.png +0 -0
- package/template-basic/docs/public/rspress-icon.png +0 -0
- package/template-basic/docs/public/rspress-light-logo.png +0 -0
- package/template-basic/node_modules/.bin/rspress +17 -0
- package/{template → template-basic}/package.json +1 -1
- package/{template → template-basic}/rspress.config.ts +7 -4
- package/template-common/README.md +29 -0
- package/template-common/gitignore +14 -0
- package/dist/index.d.ts +0 -2
- package/template/_gitignore +0 -25
- /package/{template/docs/public → template-basic/doc_build}/rspress-dark-logo.png +0 -0
- /package/{template/docs/public → template-basic/doc_build}/rspress-icon.png +0 -0
- /package/{template/docs/public → template-basic/doc_build}/rspress-light-logo.png +0 -0
- /package/{template → template-basic}/docs/_meta.json +0 -0
- /package/{template → template-basic}/docs/guide/_meta.json +0 -0
- /package/{template → template-basic}/docs/guide/index.md +0 -0
- /package/{template → template-basic}/docs/hello.md +0 -0
- /package/{template → template-common}/tsconfig.json +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Rspress Website
|
|
2
|
+
|
|
3
|
+
## Setup
|
|
4
|
+
|
|
5
|
+
Install the dependencies:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Get Started
|
|
12
|
+
|
|
13
|
+
Start the dev server:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm run dev
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Build the website for production:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm run build
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Preview the production build locally:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm run preview
|
|
29
|
+
```
|
package/dist/index.d.ts
DELETED
package/template/_gitignore
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Logs
|
|
2
|
-
logs
|
|
3
|
-
*.log
|
|
4
|
-
npm-debug.log*
|
|
5
|
-
yarn-debug.log*
|
|
6
|
-
yarn-error.log*
|
|
7
|
-
pnpm-debug.log*
|
|
8
|
-
lerna-debug.log*
|
|
9
|
-
|
|
10
|
-
node_modules
|
|
11
|
-
dist
|
|
12
|
-
dist-ssr
|
|
13
|
-
*.local
|
|
14
|
-
|
|
15
|
-
# Editor directories and files
|
|
16
|
-
.vscode/*
|
|
17
|
-
!.vscode/extensions.json
|
|
18
|
-
.idea
|
|
19
|
-
.DS_Store
|
|
20
|
-
*.suo
|
|
21
|
-
*.ntvs*
|
|
22
|
-
*.njsproj
|
|
23
|
-
*.sln
|
|
24
|
-
*.sw?
|
|
25
|
-
doc_build
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|