lpkg v1.2.2
lpkg
A local package manager for your private workspace. Store your files - media, libraries, snippets, etc - in a centralized store, and import them into any project at any time, easily.
Installation
Install globally using Node.js
npm install -g lpkgor yarn
yarn global add lpkgUsage
For help with commands, or aliases, run
lpkg --helpTo add a new package to the store
lpkg add <package-name> --src <path_to_package>To remove a package from the store
lpkg remove <package-name>To remove all packages from the store
lpkg clearTo list all packages in the store
lpkg listTo install a registered package in the current directory
lpkg install <package-name> Additionally, you can pass a version argument when running the add and install commands. By default, all packages are given a version number 1.0.0.
lpkg add <package-name> --version "0.5.0"
lpkg install <package-name> --version "0.5.0"Notes
I will update this repo as my activities demand for new features, but if there's anyone using this tool and would like to see new features added, please do request.