link-into

Create a tree of symlinks from glob patterns


Keywords
symlink, glob, cli
License
MIT
Install
npm install link-into@3.0.1

Documentation

link-into

version license build code style

Create a tree of symlinks from glob patterns.

Given the following tree:

.
└── assets
    ├── bar.png
    └── foo.svg
link-into build/ '**/*.png' '**/*.svg'

Creates this tree:

.
├── assets
│   ├── bar.png
│   └── foo.svg
└── build
    └── assets
        ├── bar.png -> ../../assets/bar.png
        └── foo.svg -> ../../assets/foo.svg

Installation

npm install --save-dev link-into

Contribute

Pull requests welcome!

Support

If you are having issues, please let me know.

License

The project is licensed under the MIT license.