refactor
This commit is contained in:
2
dist/mod_docs/index.d.ts
vendored
Normal file
2
dist/mod_docs/index.d.ts
vendored
Normal 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
11
dist/mod_docs/index.js
vendored
Normal 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
1
dist/mod_docs/mod.plugins.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export * from '../npmts.plugins';
|
6
dist/mod_docs/mod.plugins.js
vendored
Normal file
6
dist/mod_docs/mod.plugins.js
vendored
Normal 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"));
|
Reference in New Issue
Block a user