UNPKG

pothos-schema-exporter

Version:
57 lines (56 loc) 2.44 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.PothosSchemaExporterPlugin = void 0; const core_1 = __importStar(require("@pothos/core")); require("./global-types.js"); const graphql_1 = require("graphql"); const fs_1 = require("fs"); const path_1 = __importDefault(require("path")); class PothosSchemaExporterPlugin extends core_1.BasePlugin { afterBuild(schema) { const builder = this.builder; const output = builder.options.pothosSchemaExporter?.output; if (output) { const targetDir = path_1.default.dirname(output); fs_1.promises.mkdir(targetDir, { recursive: true }) .catch(() => undefined) .then(() => { fs_1.promises.writeFile(output, (0, graphql_1.printSchema)(schema)); }); } return schema; } } exports.PothosSchemaExporterPlugin = PothosSchemaExporterPlugin; const pluginName = "pothosSchemaExporter"; const allowPluginReRegistration = core_1.default.allowPluginReRegistration; core_1.default.allowPluginReRegistration = true; core_1.default.registerPlugin(pluginName, PothosSchemaExporterPlugin); core_1.default.allowPluginReRegistration = allowPluginReRegistration; exports.default = pluginName;