pkg-reflector

3.6.0 • Public • Published

pkg-reflector

Build Status NPM version npm npm David

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 modules

  • use flag --npm or --yarn choose installing tool (default: prefer yarn if available)

  • support alias prf for pkg-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)

Package Sidebar

Install

npm i pkg-reflector

Weekly Downloads

8

Version

3.6.0

License

MIT

Last publish

Collaborators

  • zcong