UNPKG

@ng-doc/builder

Version:

<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>

18 lines 915 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TEMPLATES_PATH = exports.CACHE_PATH = exports.API_PATTERN = exports.CATEGORY_PATTERN = exports.PAGE_PATTERN = exports.API_NAME = exports.CATEGORY_NAME = exports.PAGE_NAME = exports.GLOBALS = void 0; const tslib_1 = require("tslib"); const path = tslib_1.__importStar(require("path")); exports.GLOBALS = { workspaceRoot: '', relative: (p) => path.relative(exports.GLOBALS.workspaceRoot, p), }; exports.PAGE_NAME = 'ng-doc.page.ts'; exports.CATEGORY_NAME = 'ng-doc.category.ts'; exports.API_NAME = 'ng-doc.api.ts'; exports.PAGE_PATTERN = `**/${exports.PAGE_NAME}`; exports.CATEGORY_PATTERN = `**/${exports.CATEGORY_NAME}`; exports.API_PATTERN = `**/${exports.API_NAME}`; exports.CACHE_PATH = path.join(__dirname, '.cache'); exports.TEMPLATES_PATH = path.join(__dirname, '../templates'); //# sourceMappingURL=variables.js.map