1.0.14 • Published 8 years ago

vagrant-plugins v1.0.14

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

Node Vagrant Plugins

A module that installs vagrant plugins listed in your package.json. Requires Vagrant.

npm install vagrant-plugins

Example:

Add a key to your package.json called "vagrantPlugins".

"vagrantPlugins": {
    "vagrant-aws": "*",
    "vagrant-aws-winrm": "0.0.3",
    "vagrant-env": "*",
    "vagrant-vsphere": "*"
 }

Gulp examaple:

var gulp = require('gulp');
var vp = require('vagrant-plugins');

gulp.task('install', function () {
    vp();
});

You can also pass in the plugins you want:

var gulp = require('gulp');
var vp = require('vagrant-plugins');

gulp.task('install', function () {
    vp({
        plugins: {
            "vagrant-aws": "*",
            "vagrant-vsphere": "*"
        }
    });
});
1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago