Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

symbolink

nicewaytodoit19MIT0.0.15

Symbolic linking with config file

symbolic link, folder link, folder, symlink

readme

Symbolink

Symbolink allows you to create multiple link by setting config file and then executing in as appropriate.

Main

To install: $ npm install -g symbolink

to execute: $ symbolink -f ./config.json

Config file

{
    "root": "C:/test",
    "links": [
        { "link": "t1-1", "dest": "./destination/folder" },
        { "link": "t1-2", "dest": "./destination/folder" }
    ]
}

Options

  • Option 'file', alias: 'f' - path to config file.
  • Option 'root', alias: 'r' - root folder for relative paths of links.
  • Option 'link', alias: 'l' - symlink name that will be created if already taken, old folder will be renamed
  • Option 'dest', alias: 'd' - destination folder, symbolic link above will poin to this folder.