This is a VS Code extenstion to start and stop ceafive/auto-install
which installs and erases dependencies as you write your code.
Run the 'Start Auto Installer' command or set the autoInstaller.startOnLaunch to true
in the configuration
Installs or uninstalls dependencies as you type. It installs dependencies that are found in *.test.js
or *.spec.js
under devDependencies
Starts by default when it detects package.json in the root if autoInstall.startOnLaunch is true. By default installs only packages that have >10k monthly downloads.
Checkout ceafive/auto-install
for the details.
Only requires ceafive/auto-install
. This module will be installed automatically globally.
This extension contributes the following settings:
-
autoInstaller.startOnLaunch
: Starts Auto Installer automatically if workspace haspackage.json
in the root. Default:false
-
autoInstaller.secure
: If set totrue
, Auto Installer will only install packages with >10k monthly downloads. seeceafive\auto-install
secure flag. Default:false
-
autoInstaller.notify
: If set to false, Auto Installer will not show notifications for installed or uninstalled packages. Default:true
-
autoInstaller.uninstall
: If set to true, Auto Installer will not show automatically uninstall packages when they are removed from code. Default:false
Cannot be used in a repo with multiple package.json
files. Will be fixed soon.
Rewritten with TypeScript
Display parsing errors
Initial release