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: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,31 @@ And spin up a development build of your new project:
24
24
25
25
yarn build
26
26
27
+
### Integrate with local Code Studio
28
+
In this repo:
29
+
30
+
```
31
+
yarn link
32
+
```
33
+
34
+
In main repo's `apps/` directory:
35
+
36
+
```
37
+
yarn link @code-dot-org/maze
38
+
```
39
+
40
+
This will set up a symlink in main repo's apps/node_modules/ to point at your local changes.
41
+
42
+
Run
43
+
44
+
```
45
+
yarn run build
46
+
```
47
+
48
+
in this repo, and then the main repo's `apps` build should pick the changes up next time it builds.
49
+
50
+
If you are running `yarn start` for continuous builds in the main repo, it will pick up the changes once the build in this repo has completed.
51
+
27
52
### Publishing a new version
28
53
29
54
In /maze: npm login with an authorized npm account. If necessary, create one under your own email, login with our shared dev account and add your new account to the org. After logging in, you may need to authorize your machine (follow the prompt given):
0 commit comments