scivey / bower-copy

Copy main script files of bower components to an arbitrary destination directory.
MIT License
1 stars 2 forks source link

bower-copy

Scott Ivey -> http://www.scivey.net

Copy main script files of bower components to an arbitrary destination directory, or resolve a list of component names paired with paths to their main scripts. Usable on the command line and as a required module.

$   bower-copy -d ./public/js
$   bower-copy -s ./someDir/bower_components -d ./public/js
var copyComponents = require("bower-copy").copyComponents;

copyComponents({dest: "./serve/js/vendor"}, function(err, copied) {
    // main script files are copied to `dest` dir.
    // `copied` is a list of src->dest pairs.
});

Installation

npm install bower-copy -g

Command Line

bower-copy

Copy bower components' main scripts to a target directory.

API

copyComponents(options, callback)

Copies all bower components to {dest}/{component_name}.js, and returns a list of src -> dest pairs for reference.

resolveComponents([componentDir,] callback)

Returns a list of objects indicating the name (component) and main script path (main) of each component. This doesn't do any file copying on its own.

Changelog

0.1.0

0.0.2

0.0.1

GitHub

https://github.com/scivey/bower-copy

Contact

https://github.com/scivey

http://www.scivey.net

scott.ivey@gmail.com

License

MIT License (MIT)

Copyright (c) 2013 Scott Ivey, scott.ivey@gmail.com

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.