Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulmelnikow/link-into
Create a tree of symlinks from glob patterns
https://github.com/paulmelnikow/link-into
cli glob symlink
Last synced: 8 days ago
JSON representation
Create a tree of symlinks from glob patterns
- Host: GitHub
- URL: https://github.com/paulmelnikow/link-into
- Owner: paulmelnikow
- License: mit
- Created: 2016-05-14T23:24:57.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T19:45:39.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T11:59:37.654Z (25 days ago)
- Topics: cli, glob, symlink
- Language: JavaScript
- Size: 283 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# link-into
[![version](https://img.shields.io/npm/v/link-into.svg?style=flat-square)][npm]
[![license](https://img.shields.io/npm/l/link-into.svg?style=flat-square)][npm]
[![build](https://img.shields.io/circleci/project/github/paulmelnikow/link-into.svg?style=flat-square)][build]
[![code style](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)][prettier][npm]: https://npmjs.com/link-into
[build]: https://circleci.com/gh/paulmelnikow/link-into/tree/master
[prettier]: https://prettier.io/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
- Issue Tracker: https://github.com/paulmelnikow/link-into/issues
- Source Code: https://github.com/paulmelnikow/link-intoPull requests welcome!
## Support
If you are having issues, please let me know.
## License
The project is licensed under the MIT license.