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.
Files changed (41) hide show
  1. package/README.md +28 -1
  2. package/bin.js +2 -0
  3. package/dist/index.js +18 -8028
  4. package/package.json +27 -28
  5. package/template-basic/doc_build/404.html +17 -0
  6. package/template-basic/doc_build/guide/index.html +146 -0
  7. package/template-basic/doc_build/hello.html +19 -0
  8. package/template-basic/doc_build/index.html +17 -0
  9. package/template-basic/doc_build/static/css/styles.b2b1631f.css +1 -0
  10. package/template-basic/doc_build/static/js/21.ec2c01fe.js +2 -0
  11. package/template-basic/doc_build/static/js/21.ec2c01fe.js.LICENSE.txt +21 -0
  12. package/template-basic/doc_build/static/js/async/194.62189d7d.js +1 -0
  13. package/template-basic/doc_build/static/js/async/599.4a892881.js +1 -0
  14. package/template-basic/doc_build/static/js/async/918.8c28cdf5.js +1 -0
  15. package/template-basic/doc_build/static/js/index.b77560ea.js +6 -0
  16. package/template-basic/doc_build/static/js/index.b77560ea.js.LICENSE.txt +13 -0
  17. package/template-basic/doc_build/static/js/lib-react.958723e2.js +2 -0
  18. package/template-basic/doc_build/static/js/lib-react.958723e2.js.LICENSE.txt +39 -0
  19. package/template-basic/doc_build/static/js/lib-router.2fc64dcb.js +2 -0
  20. package/template-basic/doc_build/static/js/lib-router.2fc64dcb.js.LICENSE.txt +32 -0
  21. package/template-basic/doc_build/static/js/styles.c233f00f.js +1 -0
  22. package/template-basic/doc_build/static/search_index.1427c47e.json +1 -0
  23. package/{template → template-basic}/docs/index.md +4 -4
  24. package/template-basic/docs/public/rspress-dark-logo.png +0 -0
  25. package/template-basic/docs/public/rspress-icon.png +0 -0
  26. package/template-basic/docs/public/rspress-light-logo.png +0 -0
  27. package/template-basic/node_modules/.bin/rspress +17 -0
  28. package/{template → template-basic}/package.json +1 -1
  29. package/{template → template-basic}/rspress.config.ts +7 -4
  30. package/template-common/README.md +29 -0
  31. package/template-common/gitignore +14 -0
  32. package/dist/index.d.ts +0 -2
  33. package/template/_gitignore +0 -25
  34. /package/{template/docs/public → template-basic/doc_build}/rspress-dark-logo.png +0 -0
  35. /package/{template/docs/public → template-basic/doc_build}/rspress-icon.png +0 -0
  36. /package/{template/docs/public → template-basic/doc_build}/rspress-light-logo.png +0 -0
  37. /package/{template → template-basic}/docs/_meta.json +0 -0
  38. /package/{template → template-basic}/docs/guide/_meta.json +0 -0
  39. /package/{template → template-basic}/docs/guide/index.md +0 -0
  40. /package/{template → template-basic}/docs/hello.md +0 -0
  41. /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
+ ```
@@ -0,0 +1,14 @@
1
+ # Local
2
+ .DS_Store
3
+ *.local
4
+ *.log*
5
+
6
+ # Dist
7
+ node_modules
8
+ dist/
9
+ doc_build/
10
+
11
+ # IDE
12
+ .vscode/*
13
+ !.vscode/extensions.json
14
+ .idea
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
-
2
- export { }
@@ -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