Compare commits

...

2 Commits

Author SHA1 Message Date
8efa67a4ff 3.3.2 2016-02-25 08:39:48 +01:00
f7304f59a5 add optional docs publishing 2016-02-25 08:39:38 +01:00
5 changed files with 9 additions and 5 deletions

View File

@ -2,5 +2,6 @@
support
compile
test/
docs/
examples
.gitignore

2
dist/npmts.jsdoc.js vendored
View File

@ -32,7 +32,7 @@ var publishDocs = function (configArg) {
+ "&& git push --force --quiet "
+ "\"" + gitUrl + "\" "
+ "master:gh-pages " + "> /dev/null 2>&1";
if (plugins.smartenv.getEnv().isTravis) {
if (plugins.smartenv.getEnv().isTravis && configArg.docs && configArg.docs.publish) {
plugins.beautylog.log("now publishing docs to GitHub");
if (!plugins.shelljs.which('git')) {
plugins.beautylog.error('Git is not installed');

View File

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

View File

@ -9,5 +9,8 @@
"./subts2/",
"./customdir"
],
"coveralls":true
"coveralls":true,
"docs": {
"publish":true
}
}

View File

@ -39,8 +39,8 @@ var publishDocs = function(configArg){
+ "\"" + gitUrl + "\" "
+ "master:gh-pages " + "> /dev/null 2>&1";
if(plugins.smartenv.getEnv().isTravis){
plugins.beautylog.log("now publishing docs to GitHub")
if(plugins.smartenv.getEnv().isTravis && configArg.docs && configArg.docs.publish){
plugins.beautylog.log("now publishing docs to GitHub");
if (!plugins.shelljs.which('git')) {
plugins.beautylog.error('Git is not installed');
plugins.shelljs.exit(1);