fisrt commit
This commit is contained in:
28
node_modules/phaser/scripts/tsgen/bin/publish.js
generated
vendored
Normal file
28
node_modules/phaser/scripts/tsgen/bin/publish.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
"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 str = JSON.stringify(data().get(), null, 4);
|
||||
fs.writeFileSync(path.join(opts.destination, 'phaser.json'), str);
|
||||
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
|
||||
Reference in New Issue
Block a user