Skip to content

Developing Locally

Steven Bone edited this page Oct 17, 2024 · 2 revisions

If you need to test gurgler with an existing applications, edit the application's package.json.

  1. Find gurgler under `devDependencies
  2. Change the version to file:relative_path_to_gurgler
"devDependencies": {
  ...
  "gurgler": "file:../gurgler"
}

This change points to a gurgler that is adjacent to the application's directory.

Important:

  • make sure npm install has been run in the gurgler repo
  • do not commit this change to package.json.
Clone this wiki locally