mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 09:48:18 +00:00
26 lines
No EOL
884 B
JavaScript
26 lines
No EOL
884 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.publish = void 0;
|
|
const fs = require("fs-extra");
|
|
const path = require("path");
|
|
const Parser_1 = require("./Parser");
|
|
function publish(data, opts) {
|
|
// remove undocumented stuff.
|
|
data({ undocumented: true }).remove();
|
|
// remove package data
|
|
data({ kind: 'package' }).remove();
|
|
// remove header comments
|
|
data({ copyright: { isString: true } }).remove();
|
|
// remove private members
|
|
data({ access: 'private' }).remove();
|
|
// remove ignored doclets
|
|
data({ ignore: true }).remove();
|
|
if (!fs.existsSync(opts.destination)) {
|
|
fs.mkdirSync(opts.destination);
|
|
}
|
|
var out = new Parser_1.Parser(data().get()).emit();
|
|
fs.writeFileSync(path.join(opts.destination, 'phaser.d.ts'), out);
|
|
}
|
|
exports.publish = publish;
|
|
;
|
|
//# sourceMappingURL=publish.js.map
|