File tree 1 file changed +20
-4
lines changed
1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -48,25 +48,41 @@ Under the hood, this library simply uses the official [@material/web](https://gi
48
48
49
49
3 . Change to the project directory
50
50
51
- 4 . To install all project dependencies, run the following command:
51
+ 4 . To get started, ensure you have pnpm installed globally, run the following command:
52
+
53
+ ```
54
+ npm install -g pnpm
55
+ ```
56
+
57
+ 5 . To install all project dependencies, run the following command:
52
58
53
59
```
54
60
pnpm i
55
61
```
56
62
57
- 5 . To build the project, run the following command (this needs to be done only once):
63
+ 6 . To build the project, run the following commands (these needs to be done only once):
64
+
65
+ ```
66
+ cd packages/ui
67
+ ```
58
68
59
69
```
60
70
pnpm build
61
71
```
62
72
63
- 6 . To run the code locally, run the following code:
73
+ 7 . Return to the monorepo root:
74
+
75
+ ```
76
+ cd ../../
77
+ ```
78
+
79
+ 8 . To run the code locally, run the following code:
64
80
65
81
```
66
82
pnpm dev
67
83
```
68
84
69
- This will run the demo app, and whenever you update the library, the app should rebuild
85
+ This will run the demo app on http://localhost:3000 , and whenever you update the library, the app should rebuild
70
86
71
87
### Roadmap 🚀
72
88
You can’t perform that action at this time.
0 commit comments