You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2024. It is now read-only.
# After the dependencies are installed, the `postinstall` script with trigger `preconstruct dev` which will build all the component packages.
24
25
```
25
26
26
-
4. Setup all the dependencies and packages by running `yarn bootstrap`. This
27
-
command will install dependencies and bootstrap the repo using `lerna`
28
-
```bash
29
-
yarn bootstrap
27
+
4. Run the Vite Playground.
30
28
```
29
+
yarn playground:dev
30
+
```
31
+
This will boot the playground server and watches for changes in any package.
31
32
32
-
> If you run into any issues during this step, kindly reach out to the Chakra UI
33
+
> If you run into any issues during these steps, kindly reach out to the Chakra UI
33
34
> Vue team here:[https://discord.gg/cMpMfvxa](https://discord.gg/cMpMfvxa)
34
35
36
+
## For Windows OS Users
37
+
There may be some trouble specific to the local setup in Windows. The following are suggestions in ensuring the local environment boots up successfully:
38
+
39
+
- The package dependencies and scripts should work with Node `v16.16.0 and higher`
40
+
- If you receive the error `EPERM: operation not permitted, symlink` and mentions `preconstruct`, you will need to enable OS developer mode. See Github issue [#381 for Preconstruct](https://github.com/preconstruct/preconstruct/issues/381)
41
+
- If you receive the error `NODE_ENV is not recognized as an internal or external command`, try the package [win-node-env](https://www.npmjs.com/package/win-node-env)
42
+
35
43
## Development
36
44
37
45
To improve our development process, we've set up tooling and systems. Chakra UI
@@ -57,7 +65,7 @@ cross-component development and builds all components.
57
65
**`yarn bootstrap`**: bootstraps the entire project and symlinks all
58
66
dependencies for cross-component development.
59
67
60
-
**`yarn dev`**: starts components playground server and loads stories in SFCs in the `packages/**/examples/*.vue` file.
68
+
**`yarn playground:dev`**: starts components playground server and loads stories in SFCs in the `packages/**/examples/*.vue` file.
61
69
62
70
**`yarn docs:dev`**: run the documentation site locally.
0 commit comments