Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
50b14e60c6 | |||
4753a4ff82 |
2
dist/npmts.options.js
vendored
2
dist/npmts.options.js
vendored
@ -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 {
|
||||
|
@ -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": {
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user