rspress 1.0.1 → 1.1.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 (2) hide show
  1. package/README.md +42 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1 +1,42 @@
1
- # rspress
1
+ # Rspress
2
+
3
+ <picture>
4
+ <img alt="Rspress Banner" src="https://github.com/web-infra-dev/rspress/assets/39261479/999e7946-45ff-45d5-b9cd-594e634e0e5a">
5
+ </picture>
6
+
7
+ <h2 align="center">A fast Rspack-based static site generator.</h2>
8
+
9
+ ## Features
10
+
11
+ - **🚀 Fast Startup**: Based on Rust-based build tool and markdown/mdx compiler, the build speed is extremely fast, bringing you the ultimate development experience.
12
+ - **📚 MDX Support**: MDX is a powerful way to write content, allowing you to use React components in Markdown.
13
+ - **📦 Built-in Full Text Search**: Automatically generates a full-text search index for you during building process, providing out-of-the-box full-text search capabilities.
14
+ - **🌈 Static Site Generation**: In production, it automatically builds into static HTML files, which can be easily deployed anywhere.
15
+ - **🔌 Providing Plugin System**: Providing a plugin system, you can customize the build process and theme according to your needs.
16
+ - **📝 Component Document**: Support multi ways to preview your component demo.
17
+
18
+ ## Getting Started
19
+
20
+ Go to the [Quick Start](https://rspress.dev/guide/start/getting-started.html) to get started.
21
+
22
+ ## Contribution
23
+
24
+ Please read the [contributing guide](./CONTRIBUTING.md) and let's build Rspress together.
25
+
26
+ If you have any quesions, you can open an issue or go to [Discord](https://discord.com/channels/977448667919286283/1161653869080756245) to communicate with us.
27
+
28
+ ### Code of Conduct
29
+
30
+ This repo has adopted the ByteDance Open Source Code of Conduct. Please check [Code of Conduct](./CODE_OF_CONDUCT.md) for more details.
31
+
32
+ ### Links
33
+
34
+ | Name | Description |
35
+ | ---------------------------------------------------------- | --------------------------------------- |
36
+ | [@rspress/mdx-rs](https://github.com/web-infra-dev/mdx-rs) | Rust MDX compiler for Rspress. |
37
+ | [Rspack](https://github.com/web-infra-dev/rspack) | A fast Rust-based web bundler. |
38
+ | [Rsbuild](https://github.com/web-infra-dev/rsbuild) | An Rspack-based build tool for the web. |
39
+
40
+ ### License
41
+
42
+ Rspress is licensed under the [MIT License](./LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rspress",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -28,12 +28,12 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@modern-js/node-bundle-require": "2.36.0",
31
+ "@modern-js/node-bundle-require": "2.37.0",
32
32
  "cac": "^6.7.14",
33
33
  "chokidar": "^3.5.3",
34
34
  "chalk": "5.3.0",
35
- "@rspress/core": "1.0.1",
36
- "@rspress/shared": "1.0.1"
35
+ "@rspress/core": "1.1.0",
36
+ "@rspress/shared": "1.1.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/jest": "~29.2.4",