0.0.15 • Published 10 years ago

versionz v0.0.15

Weekly downloads
38
License
-
Repository
github
Last release
10 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

10 years ago

0.0.14

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago