| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- "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");
- const utils_2 = 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_2.isManifest)(id)) {
- return manifestJsonUTSPath;
- }
- },
- load(id) {
- if ((0, utils_2.isManifest)(id)) {
- return fs_extra_1.default.readFileSync(manifestJsonPath, 'utf8');
- }
- },
- transform(code, id) {
- if ((0, utils_2.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 'manifest.json'`;
- }
- },
- generateBundle(_, bundle) {
- if (bundle[utils_1.ENTRY_FILENAME]) {
- const asset = bundle[utils_1.ENTRY_FILENAME];
- const singleThreadCode = manifestJson?.['uni-app-x']?.['singleThread'] === false
- ? `override singleThread = false`
- : '';
- const flexDir = (0, uni_cli_shared_1.parseUniXFlexDirection)(manifestJson);
- const flexDirCode = flexDir !== 'column' ? `override flexDirection = "${flexDir}"` : '';
- const splashScreen = (0, uni_cli_shared_1.parseUniXSplashScreen)(manifestJson);
- const splashScreenCode = splashScreen && Object.keys(splashScreen).length > 0
- ? `override splashScreen: Map<string, any> | null = ${(0, utils_1.stringifyMap)(splashScreen)}`
- : '';
- const codes = [singleThreadCode, flexDirCode, splashScreenCode]
- .filter(Boolean)
- .join('\n');
- asset.source =
- asset.source +
- `
- import { AppConfig } from "io.dcloud.uniapp.appframe"
- export class UniAppConfig extends AppConfig {
- override name: string = "${manifestJson.name || ''}"
- override appid: string = "${manifestJson.appid || ''}"
- override versionName: string = "${manifestJson.versionName || ''}"
- override versionCode: string = "${manifestJson.versionCode || ''}"
- override uniCompileVersion: string = "${process.env.UNI_COMPILER_VERSION || ''}"
- ${codes}
- constructor() {}
- }
- `;
- }
- },
- 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;
|