This commit is contained in:
2017-11-28 17:33:55 +01:00
parent c0b7dc2547
commit 8896d3ef76
39 changed files with 244 additions and 372 deletions

2
dist/mod_docs/index.d.ts vendored Normal file
View File

@ -0,0 +1,2 @@
import { INpmtsConfig } from '../npmts.config';
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;

11
dist/mod_docs/index.js vendored Normal file
View File

@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/* ------------------------------------------
* This module creates TypeScript documentation
* -------------------------------------------- */
const q = require("smartq");
exports.run = function (configArg) {
let done = q.defer();
done.resolve(configArg);
return done.promise;
};

1
dist/mod_docs/mod.plugins.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from '../npmts.plugins';

6
dist/mod_docs/mod.plugins.js vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("../npmts.plugins"));