| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- "use strict";
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.uniAppManifestPlugin = exports.getOutputManifestJson = void 0;
- const path_1 = __importDefault(require("path"));
- const fs_extra_1 = __importDefault(require("fs-extra"));
- const uni_cli_shared_1 = require("@dcloudio/uni-cli-shared");
- const utils_1 = require("../utils");
- let outputManifestJson = undefined;
- function getOutputManifestJson() {
- return outputManifestJson;
- }
- exports.getOutputManifestJson = getOutputManifestJson;
- function uniAppManifestPlugin() {
- const manifestJsonPath = path_1.default.resolve(process.env.UNI_INPUT_DIR, 'manifest.json');
- const manifestJsonUTSPath = path_1.default.resolve(process.env.UNI_INPUT_DIR, uni_cli_shared_1.MANIFEST_JSON_UTS);
- let manifestJson = {};
- return {
- name: 'uni:app-manifest',
- apply: 'build',
- resolveId(id) {
- if ((0, utils_1.isManifest)(id)) {
- return manifestJsonUTSPath;
- }
- },
- load(id) {
- if ((0, utils_1.isManifest)(id)) {
- return fs_extra_1.default.readFileSync(manifestJsonPath, 'utf8');
- }
- },
- transform(code, id) {
- if ((0, utils_1.isManifest)(id)) {
- this.addWatchFile(path_1.default.resolve(process.env.UNI_INPUT_DIR, 'manifest.json'));
- manifestJson = (0, uni_cli_shared_1.parseJson)(code);
- return `export default ${JSON.stringify(manifestJson)}`;
- }
- },
- writeBundle() {
- const app = manifestJson.app || {};
- outputManifestJson = {
- id: manifestJson.appid || '',
- name: manifestJson.name || '',
- description: manifestJson.description || '',
- version: {
- name: manifestJson.versionName || '',
- code: manifestJson.versionCode || '',
- },
- 'uni-app-x': manifestJson['uni-app-x'] || {},
- app,
- };
- if (process.env.NODE_ENV !== 'production') {
- // 发行模式下,需要等解析ext-api模块
- fs_extra_1.default.outputFileSync(path_1.default.resolve(process.env.UNI_OUTPUT_DIR, 'manifest.json'), JSON.stringify(outputManifestJson, null, 2));
- }
- },
- };
- }
- exports.uniAppManifestPlugin = uniAppManifestPlugin;
|