0.1.1 • Published 4 months ago

ilink v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

ilink

sync up with folders in hard link way

Install

$ npm install --global ilink

Usage

$ ilink --help

Usage: ilink [options] [command]

sync up source folder to target folder

Options:
  -V, --version            output the version number
  -n, --name [name]        alias name of source folder
  -s, --source [source]    source folder to be synced
  -d, --dest [dest]        destination folder
  -w, --watch              watching source folder and sync up the change once source folder got changed
  -si, --silent            output the log of the synced files/folders
  -e, --exclude [exclude]  exclude the file/folder to be synced
  -h, --help               display help for command

Commands:
  add|a [options]          add folder as source folder
  remove|rm <name>         remove linked source folder
  list|ls                  list details about the linked folders.

To register source folder before use

$ ilink -name foo_package_name -s ./local/package_path

To sync source folder after registration

$ ilink -s foo_package_name -d /..../node_modules/target_package_path -w

or use the real folder path without registration

$ ilink -s ./local/package_path -d /..../node_modules/target_package_path -w