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
A commandline tool for local Gatsby development. When doing development work on the Gatsby core this tool allows you to easily update any project that has depencies on packages from Gatsby, like a site you are working on.
4
4
5
-
It's a simple cli tool for have easily a functionnal development environment for working on Gatsby.
Navigate to the project you want to link to your forked Gatsby repository and run:
24
29
25
30
```bash
26
31
$ gatsby-dev
27
32
```
28
33
29
-
Tools automaticly find gatsby packages into current `package.json`, copy it from your local fork and watch!
34
+
The tool will then scan your project's package.json to find any Gatsby dependencies and copy them into your project's node_modules folder. A watch task is then created to re-copy any modules that might change while you're working on the code, so you can leave this program running.
30
35
31
36
### Repo without gatby dependencies
32
37
38
+
You can prevent the automatic depencencies scan and instead specify a list of packages you want to link by using the `--packages` option:
0 commit comments