pkg-reflector
v3.6.0
Published
Find and install the npm modules
Downloads
65
Maintainers
Readme
pkg-reflector
Find and install the npm modules your js files used
New
use flag
--custom-cmds="external install tool"
override the install command, eg:--custom-cmds="cnpm install"
use flag
--dry
to dry run, show the finded npm modulesuse flag
--npm
or--yarn
choose installing tool (default: preferyarn
if available)support alias
prf
forpkg-reflector
now support multi files, can be used like
pkg-reflector src/* libs/* *.js
, resolve files using globby and always ignore**/node_modules/**
Install
$ npm install -g pkg-reflector
# using yarn
$ yarn global add pkg-reflector
Feature
Sometimes, we copy some js file from other folder or project, such as rollup.config.js
,you only want to use it in your current project.
If the js file depends some npm modules, you should install these first by yourself, like this:
$ yarn add module1 module2 module3...
we may get some error when add modules cause wrong spelling of the long module name, so use pkg-reflector
, you can do it like this:
$ prf foo.js
# then all done
easy way, isn't it ?
Usage
$ prf <js file[s]> [options]
# use 'prf -h' for more help
simple
$ prf <file>
will install the pkgs and save dependence
.
multi files
$ prf file1 file2 ...
or use patterns
all sindresorhus/globby support
$ prf "./**/*.js"
Note: you should pass args as string "./**/*.js"
, not ./**/*.js
(this will be executed by terminal, if it contains node_modules
folder maybe cause error zsh: argument list too long
)