Skip to content

Commit

Permalink
make proper node project
Browse files Browse the repository at this point in the history
  • Loading branch information
tylorr committed Sep 16, 2013
1 parent 4b439be commit ea97468
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 1,262 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules/
22 changes: 22 additions & 0 deletions LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2013 Tylor Reynolds

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.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# assetman

Boar-to-Git asset manager

## Getting Started
Install the module with: `npm install -g assetman`

## License
Copyright (c) 2013 Tylor Reynolds
Licensed under the MIT license.
14 changes: 13 additions & 1 deletion assetman → assetman.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/usr/bin/env node

/*
* assetman
* https://github.com/miningold/assetman
*
* Copyright (c) 2013 Tylor Reynolds
* Licensed under the MIT license.
*/

'use strict';

var path = require('path'),
fs = require('fs'),
util = require('util'),
Expand All @@ -12,7 +22,8 @@ var path = require('path'),
parse;

var cDir = process.cwd(),
pDir, assetConfig;
pDir, assetConfig,
configPath;

// Search for Asset Config file starting with working directory and working
// up the hierarchy
Expand Down Expand Up @@ -205,3 +216,4 @@ var commandSettings = {
var argv = process.argv.slice(2);
checkHelp(argv);
parse(commandSettings, argv);

179 changes: 0 additions & 179 deletions node_modules/commander/History.md

This file was deleted.

Loading

0 comments on commit ea97468

Please sign in to comment.