Compare commits

...

2 Commits

Author SHA1 Message Date
50b14e60c6 3.6.1 2016-03-23 15:23:14 +01:00
4753a4ff82 fix small error 2016-03-23 15:23:04 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
/// <reference path="./typings/main.d.ts" />
var plugins = require("./npmts.plugins");
exports.isRelease = function () {
if (plugins.smartci.check.isCi() && plugins.smartci.isTaggedCommit()) {
if (plugins.smartci.check.isCi() && plugins.smartci.check.isTaggedCommit()) {
return true;
}
else {

View File

@ -1,6 +1,6 @@
{
"name": "npmts",
"version": "3.6.0",
"version": "3.6.1",
"description": "write npm modules with TypeScript",
"main": "dist/index.js",
"bin": {

View File

@ -2,7 +2,7 @@
import plugins = require("./npmts.plugins");
export let isRelease = function():boolean {
if (plugins.smartci.check.isCi() && plugins.smartci.isTaggedCommit()){
if (plugins.smartci.check.isCi() && plugins.smartci.check.isTaggedCommit()){
return true;
} else {
return false;