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
npm install --save-dev link-into
- Issue Tracker: https://github.com/paulmelnikow/link-into/issues
- Source Code: https://github.com/paulmelnikow/link-into
Pull requests welcome!
If you are having issues, please let me know.
The project is licensed under the MIT license.