Skip to content

paulmelnikow/link-into

Repository files navigation

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.

About

Create a tree of symlinks from glob patterns

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published