yeoman
Installs yeoman, yeoman dependencies, generators, and yeoman/bower/grunt projects. Will also build and serve pages during provision.
Version information
released Aug 21st 2014
Start using this module
Add this module to your Puppetfile:
mod 'frankcarey-yeoman', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
frankcarey/yeoman — version 0.1.0 Aug 21st 2014
puppet-yeoman
This is the yeoeman puppet module, which makes it easier to install yeoman, it's dependencies, and any existing yeoman projects.
For a working example checkout https://github.com/frankcarey/angular-vm
To Just install yeoman and it's dependencies:
include yeoman
To install specific yeoman generators (and install yeoman)
yeoman::generator { 'generator-angular': }
To load an existing project that uses yeoman, grunt, and bower (and instal yeoman)
yeoman::project { 'myProject': path => "/git/checkout/path", #required repo => "https://github.com/user/project.git", #required generators => ["generator-angular"], #optional npm_install => true #default bower_install => true #default grunt_build => true #default grunt_serve => false #default }
This example will:
- Install yeoman and any generators you specify
- Clone your git repo to path (uses vcsrepo)
- Run npm install
- Run bower install
- Run grunt build --force (Note that any errors will still fail)
- Run grunt serve
This module could certainly be improved. Issues and pull requests welcome. Please log tickets and issues on github: [https://github.com/frankcarey/puppet-yeoman]
License
MIT
Dependencies
- puppetlabs/vcsrepo (>= 1.0.0)
The MIT License (MIT) Copyright (c) 2014 Frank Carey Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.