@modern-js/main-doc 0.0.0-nightly-20230926160605 → 0.0.0-nightly-20230928160554
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.
@@ -31,7 +31,8 @@ We have prepared a tutorial on creating a "contact list app" that you can follow
|
|
31
31
|
|
32
32
|
We offer some commonly used case studies for your reference during the development process. Here you can find some usage patterns of the feature combinations provided by Modern.js. We will continue to improve the case studies here.
|
33
33
|
|
34
|
-
|
35
|
-
|
34
|
+
import ExampleList from '@site-docs-en/components/turtorials-example-list';
|
35
|
+
|
36
|
+
<ExampleList />
|
36
37
|
|
37
38
|
Let's start from [creating a project](tutorials/first-app/c01-start) now!
|
@@ -31,8 +31,9 @@ sidebar_position: 1
|
|
31
31
|
|
32
32
|
我们提供了一些在开发过程中常用的案例供你参考,可以在这里找到 Modern.js 提供的一些功能组合的使用方式,我们将持续完善这里的案例。
|
33
33
|
|
34
|
-
-
|
35
|
-
|
34
|
+
import ExampleList from '@site-docs/components/turtorials-example-list';
|
35
|
+
|
36
|
+
<ExampleList />
|
36
37
|
|
37
38
|
下面就让我们从 [创建项目](tutorials/first-app/c01-start) 开始吧!
|
38
39
|
|
package/package.json
CHANGED
@@ -15,17 +15,17 @@
|
|
15
15
|
"modern",
|
16
16
|
"modern.js"
|
17
17
|
],
|
18
|
-
"version": "0.0.0-nightly-
|
18
|
+
"version": "0.0.0-nightly-20230928160554",
|
19
19
|
"publishConfig": {
|
20
20
|
"registry": "https://registry.npmjs.org/",
|
21
21
|
"access": "public",
|
22
22
|
"provenance": true
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@modern-js/sandpack-react": "0.0.0-nightly-
|
25
|
+
"@modern-js/sandpack-react": "0.0.0-nightly-20230928160554"
|
26
26
|
},
|
27
27
|
"peerDependencies": {
|
28
|
-
"@modern-js/builder-doc": "0.0.0-nightly-
|
28
|
+
"@modern-js/builder-doc": "0.0.0-nightly-20230928160554"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
31
|
"classnames": "^2",
|
@@ -35,12 +35,12 @@
|
|
35
35
|
"ts-node": "^10.9.1",
|
36
36
|
"typescript": "^5",
|
37
37
|
"fs-extra": "^10",
|
38
|
-
"rspress": "0.
|
39
|
-
"@rspress/shared": "0.
|
38
|
+
"rspress": "0.2.0",
|
39
|
+
"@rspress/shared": "0.2.0",
|
40
40
|
"@types/node": "^16",
|
41
41
|
"@types/fs-extra": "^9",
|
42
|
-
"@modern-js/builder-doc": "0.0.0-nightly-
|
43
|
-
"@modern-js/doc-plugin-auto-sidebar": "0.0.0-nightly-
|
42
|
+
"@modern-js/builder-doc": "0.0.0-nightly-20230928160554",
|
43
|
+
"@modern-js/doc-plugin-auto-sidebar": "0.0.0-nightly-20230928160554"
|
44
44
|
},
|
45
45
|
"scripts": {
|
46
46
|
"dev": "rspress dev",
|