| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- 'use strict';
- var uniCliShared = require('@dcloudio/uni-cli-shared');
- var initMiniProgramPlugin = require('@dcloudio/uni-mp-vite');
- var path = require('path');
- var shared = require('@vue/shared');
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
- var initMiniProgramPlugin__default = /*#__PURE__*/_interopDefault(initMiniProgramPlugin);
- var path__default = /*#__PURE__*/_interopDefault(path);
- var compilerOptions$1 = {
- target: "es6",
- module: "commonjs"
- };
- var source = {
- compilerOptions: compilerOptions$1
- };
- const properties = ['name', 'versionName', 'versionCode'];
- function formatAppJson(_appJson, manifestJson, _pagesJson) {
- const appJson = _appJson;
- // 华为IDE V3.0.2+ 需要此属性,否则无法导入
- appJson.appType = 'webapp';
- appJson.minPlatformVersion = 1070;
- properties.forEach((name) => {
- if (shared.hasOwn(manifestJson, name)) {
- appJson[name] = manifestJson[name];
- }
- });
- if (!appJson.name) {
- const inputDir = process.env.UNI_INPUT_DIR;
- let projectname = path__default.default.basename(inputDir);
- if (projectname === 'src') {
- projectname = path__default.default.basename(path__default.default.dirname(inputDir));
- }
- appJson.name = projectname;
- }
- if (!appJson.package) {
- appJson.package = appJson.name;
- }
- if (manifestJson['quickapp-webview']) {
- shared.extend(appJson, manifestJson['quickapp-webview']);
- }
- if (process.env.UNI_SUB_PLATFORM &&
- manifestJson[process.env.UNI_SUB_PLATFORM]) {
- shared.extend(appJson, manifestJson[process.env.UNI_SUB_PLATFORM]);
- }
- if (!appJson.package) {
- console.warn('manifest.json->quickapp-webview 缺少 package 配置');
- }
- if (!appJson.icon) {
- console.warn('manifest.json->quickapp-webview 缺少 icon 配置');
- }
- }
- const compilerOptions = {
- nodeTransforms: [uniCliShared.transformRef, uniCliShared.transformComponentLink],
- };
- const miniProgram = {
- class: {
- array: true,
- },
- slot: {
- fallbackContent: true,
- dynamicSlotNames: true,
- },
- directive: 'qa:',
- };
- const projectConfigFilename = 'jsconfig.json';
- const options = {
- cdn: process.env.UNI_SUB_PLATFORM === 'quickapp-webview-huawei' ? 200 : 201,
- vite: {
- inject: {
- uni: [path__default.default.resolve(__dirname, 'uni.api.esm.js'), 'default'],
- },
- alias: {
- 'uni-mp-runtime': path__default.default.resolve(__dirname, 'uni.mp.esm.js'),
- },
- copyOptions: {},
- },
- global: 'qa',
- app: {
- darkmode: false,
- subpackages: true,
- usingComponents: true,
- },
- json: {
- formatAppJson,
- },
- template: Object.assign(Object.assign({}, miniProgram), { filter: {
- extname: '.qjs',
- lang: 'qjs',
- generate(filter, filename) {
- if (filename) {
- return `<qjs src="${filename}.qjs" module="${filter.name}"/>`;
- }
- return `<qjs module="${filter.name}">
- ${filter.code}
- </qjs>`;
- },
- }, extname: '.qxml', compilerOptions }),
- style: {
- extname: '.css',
- },
- project: {
- filename: projectConfigFilename,
- config: [],
- source,
- },
- };
- const uniQuickappWebviewPlugin = {
- name: 'uni:quickapp-webview',
- config() {
- return {
- define: {
- __VUE_CREATED_DEFERRED__: true,
- },
- build: {
- // css 中不支持引用本地资源
- assetsInlineLimit: uniCliShared.ASSETS_INLINE_LIMIT,
- },
- };
- },
- };
- var index = [uniQuickappWebviewPlugin, ...initMiniProgramPlugin__default.default(options)];
- module.exports = index;
|