0.0.15 • Published 9 years ago

versionz v0.0.15

Weekly downloads
38
License
-
Repository
github
Last release
9 years ago

versionz

Build Status

Uses git to look at your previous package.json to determine if there was a version change

var versionz = require('versionz');

versionz(function(err, info) {
	if (err) {
		console.log(err);
	} else if (info.changed) {
		console.log('package.json version changed from ' + info.then +
		 ' to ' + info.now + ' last commit');
	} else {
		console.log('package.json did not change since last commit');
	}
});

cli

There is a command-line interface. Run npm install -g versionz. versionz runs git commands in the current directory to look at your previous package.json to determine if there was a version change

0.0.15

9 years ago

0.0.14

9 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago