2016-02-22 21:22:39 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
/// <reference path="./typings/main.d.ts" />
|
|
|
|
var plugins = require("./npmts.plugins");
|
|
|
|
var paths = require("./npmts.paths");
|
2016-02-23 17:35:28 +00:00
|
|
|
var genJsdoc = function (configArg) {
|
2016-02-22 21:22:39 +00:00
|
|
|
var done = plugins.Q.defer();
|
|
|
|
plugins.beautylog.log("now generating " + "JsDoc documentation".blue);
|
|
|
|
plugins.gulp.src([
|
|
|
|
plugins.path.join(paths.cwd, "README.md"),
|
|
|
|
plugins.path.join(paths.distDir, "**/*.js")
|
|
|
|
])
|
|
|
|
.pipe(plugins.g.jsdoc3({
|
|
|
|
opts: {
|
|
|
|
destination: paths.docsDir
|
|
|
|
}
|
2016-02-23 17:35:28 +00:00
|
|
|
}, function () {
|
|
|
|
done.resolve(configArg);
|
|
|
|
}));
|
2016-02-22 21:22:39 +00:00
|
|
|
return done.promise;
|
|
|
|
};
|
2016-02-23 17:35:28 +00:00
|
|
|
var publishDocs = function (configArg) {
|
2016-02-22 21:22:39 +00:00
|
|
|
var done = plugins.Q.defer();
|
2016-02-23 17:10:03 +00:00
|
|
|
var gitUrl = plugins.projectinfo.npm(paths.cwd, {
|
|
|
|
gitAccessToken: process.env.GITHUB_TOKEN
|
|
|
|
}).git.httpsUrl;
|
|
|
|
var deployScript = ""
|
|
|
|
+ "cd " + paths.docsDir + " "
|
|
|
|
+ "&& git init "
|
|
|
|
+ "&& git config user.name \"TRAVIS CI\" "
|
|
|
|
+ "&& git config user.email \"travis@shipzone.io\" "
|
|
|
|
+ "&& git add . "
|
|
|
|
+ "&& git commit -m \"Deploy to GitHub Pages\" "
|
|
|
|
+ "&& git push --force --quiet "
|
|
|
|
+ "\"" + gitUrl + "\" "
|
|
|
|
+ "master:gh-pages "
|
|
|
|
+ "> /dev/null 2>&1";
|
|
|
|
console.log(deployScript);
|
2016-02-23 14:43:18 +00:00
|
|
|
if (plugins.smartenv.getEnv().isTravis) {
|
2016-02-22 21:22:39 +00:00
|
|
|
plugins.beautylog.log("now publishing docs to GitHub");
|
|
|
|
if (!plugins.shelljs.which('git')) {
|
|
|
|
plugins.beautylog.error('Git is not installed');
|
|
|
|
plugins.shelljs.exit(1);
|
|
|
|
}
|
|
|
|
else if (plugins.shelljs.exec(deployScript).code !== 0) {
|
2016-02-22 21:38:26 +00:00
|
|
|
plugins.beautylog.error('Error: Git failed');
|
2016-02-22 21:22:39 +00:00
|
|
|
plugins.shelljs.exit(1);
|
|
|
|
}
|
2016-02-23 17:35:28 +00:00
|
|
|
done.resolve(configArg);
|
2016-02-22 21:22:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-02-23 17:35:28 +00:00
|
|
|
done.resolve(configArg);
|
2016-02-22 21:22:39 +00:00
|
|
|
}
|
|
|
|
return done.promise;
|
|
|
|
};
|
2016-02-23 17:35:28 +00:00
|
|
|
exports.run = function (configArg) {
|
2016-02-22 21:22:39 +00:00
|
|
|
var done = plugins.Q.defer();
|
2016-02-23 17:35:28 +00:00
|
|
|
genJsdoc(configArg)
|
2016-02-22 21:22:39 +00:00
|
|
|
.then(publishDocs)
|
|
|
|
.then(done.resolve);
|
|
|
|
return done.promise;
|
|
|
|
};
|