compile
This commit is contained in:
parent
e297be6fc2
commit
e30dc5d77c
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -2,10 +2,10 @@
|
|||||||
/// <reference path="./typings/main.d.ts" />
|
/// <reference path="./typings/main.d.ts" />
|
||||||
console.log("**** starting NPMTS ****");
|
console.log("**** starting NPMTS ****");
|
||||||
var plugins = require("./npmts.plugins");
|
var plugins = require("./npmts.plugins");
|
||||||
var promisechain = require("./npmts.promisechain");
|
var npmts_promisechain_1 = require("./npmts.promisechain");
|
||||||
plugins.beautylog.figletSync("NPMTS");
|
plugins.beautylog.figletSync("NPMTS");
|
||||||
try {
|
try {
|
||||||
promisechain.run();
|
npmts_promisechain_1.promisechain();
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
4
dist/npmts.promisechain.js
vendored
4
dist/npmts.promisechain.js
vendored
@ -12,8 +12,7 @@ var NpmtsJsdoc = require("./npmts.jsdoc");
|
|||||||
var NpmtsOptions = require("./npmts.options");
|
var NpmtsOptions = require("./npmts.options");
|
||||||
var NpmtsPublish = require("./npmts.publish");
|
var NpmtsPublish = require("./npmts.publish");
|
||||||
var NpmtsTests = require("./npmts.tests");
|
var NpmtsTests = require("./npmts.tests");
|
||||||
exports.run = function () {
|
exports.promisechain = function () {
|
||||||
var promisechain;
|
|
||||||
NpmtsConfigFile.run()
|
NpmtsConfigFile.run()
|
||||||
.then(NpmtsOptions.run)
|
.then(NpmtsOptions.run)
|
||||||
.then(NpmtsClean.run)
|
.then(NpmtsClean.run)
|
||||||
@ -47,5 +46,4 @@ exports.run = function () {
|
|||||||
plugins.beautylog.success("Done!");
|
plugins.beautylog.success("Done!");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return promisechain;
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user