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
Using the local github repository requires you to manually clone the component library to your computer, build, and link it:
104
104
105
105
#### Preparing your local copy of the component library:
106
-
_Prerequisite: clone the [webstore-component-library](https://github.com/scientist-softserv/webstore-component-library.git) and [get the app running](https://github.com/scientist-softserv/webstore-component-library#running-the-app)_
107
-
108
-
cd webstore-component-library
109
-
yarn link # now there is a magic symlink in `~/.config/yarn/link` usable by the webstore app
106
+
_Prerequisite: clone the [webstore-component-library](https://github.com/scientist-softserv/webstore-component-library.git) (wcl) and [get the app running](https://github.com/scientist-softserv/webstore-component-library#running-the-app)_
107
+
```bash
108
+
cd webstore-component-library
109
+
yarn link # now there is a magic symlink in `~/.config/yarn/link` usable by the webstore app
110
+
```
110
111
111
112
Choose one of the below:
112
-
113
-
npm run build-lib # must be run every time you want a change to show in the webstore
114
-
npm run watch-lib # run once and the wcl will watch for changes
113
+
```bash
114
+
npm run build-lib # must be run every time you want a change to show in the webstore
115
+
npm run watch-lib # run once and the wcl will watch for changes
116
+
```
115
117
116
118
#### Preparing your local copy of the webstore:
117
-
118
-
# run in a separate terminal window than where the wcl is
119
-
cd webstore
120
-
yarn link "@scientist-softserv/webstore-component-library"
0 commit comments