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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,14 @@ To build all projects, from the root directory:
35
35
yarn build
36
36
```
37
37
38
+
To build a single project and all of its dependencies:
39
+
```
40
+
yarn workspaces foreach -pR --topological-dev --from '@launchdarkly/js-client-sdk' run build
41
+
```
42
+
Replacing `@launchdarkly/js-client-sdk` with the specific package you want to build.
43
+
44
+
Running `yarn build` in an individual package will build that package, but will not rebuild any dependencies.
45
+
38
46
### Testing
39
47
40
48
Unit tests should be implemented in a `__tests__` folder in the root of the package. The directory structure inside of `__tests__` should mirror that of the source directory.
0 commit comments