Skip to content

Commit

Permalink
not quite ready for release but bumping version number and making aut…
Browse files Browse the repository at this point in the history
…on report version number
  • Loading branch information
digiwano committed Aug 22, 2011
1 parent cef3df7 commit c292b30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions lib/auton.js
Expand Up @@ -10,10 +10,12 @@
path = require( 'path' ), path = require( 'path' ),
inspect = util.inspect, inspect = util.inspect,
fs = require( 'fs' ), fs = require( 'fs' ),
plugins = require('./plugins'); plugins = require('./plugins'),
VERSION = '0.1.7';


module.exports.plugins = plugins; module.exports.plugins = plugins;
module.exports.Compiler = Compiler; module.exports.Compiler = Compiler;
module.exports.VERSION = VERSION;


function Compiler( rootDir, outputDir, watchMode ) { function Compiler( rootDir, outputDir, watchMode ) {
this.rootDir = rootDir; this.rootDir = rootDir;
Expand Down Expand Up @@ -44,7 +46,7 @@
watchMode = that.watchMode, watchMode = that.watchMode,
rootDir = that.rootDir, rootDir = that.rootDir,
outputDir = that.outputDir; outputDir = that.outputDir;

this.log('info', 'Auton v' + VERSION, 'starting...');
var watcher = watch.watchTree(rootDir, { var watcher = watch.watchTree(rootDir, {
'sample-rate' : 5, 'sample-rate' : 5,
'ignore' : new RegExp('/[._]') 'ignore' : new RegExp('/[._]')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Rando Christensen <digiwano@gmail.com>", "author": "Rando Christensen <digiwano@gmail.com>",
"name": "auton", "name": "auton",
"description": "Extensible resource compiler/minifier/compressor tool", "description": "Extensible resource compiler/minifier/compressor tool",
"version": "0.1.6", "version": "0.1.7",
"homepage": "https://github.com/digiwano/auton", "homepage": "https://github.com/digiwano/auton",
"repository": { "repository": {
"type": "git", "type": "git",
Expand Down

0 comments on commit c292b30

Please sign in to comment.