Some of the different ways of including npm dependencies:
Git
Note: There's some trickiness with how the package is built when pulling from git you should be able to rely on prepare
being run, however, I'veseen a number of times where this has failed on people's machines.
"glamor": "github:tggreene/glamor#f6af50c70494b6e04f6ae5edc4db12320df37329"
Override package Name
"evergreen-ui": "npm:@tggreene/[email protected]"
Local
Note: This isn't a file uri so don't prepend with slashes.
"evergreen-ui": "file:../../../tggreene/evergreen"
Note that local requires behave quite differently between npm (symlink) and yarn (cp), with yarn you may need to
yarn install
after changes!