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/setting-up-the-project.md
+7
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,13 @@ Then, from an individual test app:
91
91
-`pnpm start` - starts the build for test assets in watch mode
92
92
-`pnpm test:start` - launches a test server (and by opens a browser window for debugging them)
93
93
94
+
Because the project uses hardlinks, even though the packages are rebuilding, the test apps won't be able
95
+
to see the results of the change in many scenarios unless the hardlinks are regenerated.
96
+
97
+
At anypoint, run `pnpm sync` from the root to regenerate the hardlinks. The test app server may
98
+
pick up this change automatically, but if it does not saving any file (even without changing it)
99
+
in the test app will trigger a rebuild.
100
+
94
101
## Run some commands
95
102
96
103
Generally test and lint commands can be found in the `"scripts"` section of the root `package.json` manifest. Individual packages or test packages have additional commands in the `"scripts"` section of their own `package.json` manifest as well.
0 commit comments