1.0.2 • Published 5 years ago

yarn-link v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

yarn-link

This is a CLI tool for quickly creating symbolic links between local node packages.

How it works

It activates all packages listed in the dependencies section of your yarn-link.json as a symbolic link and then applies all linked packages to any project listed in your projects section.

Getting Started

In the project you will be using the tool, create a file called yarn-link.json. This is what will be used to determine how to create the symbolic links. It supports explicit path definitions as well as wildcards (*).

note: wildcards will only look one layer deep.

{
    "dependencies" : [
        "./relative/package",
        "./relative/package/parent/*"
    ],
    "projects" : [
        "./relative/project",
        "./relative/project/parent/*"
    ]
}
1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago