43 lines
1.7 KiB
JavaScript
43 lines
1.7 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.uniResolveIdPlugin = void 0;
|
|
const path_1 = __importDefault(require("path"));
|
|
const debug_1 = __importDefault(require("debug"));
|
|
const uni_cli_shared_1 = require("@dcloudio/uni-cli-shared");
|
|
const debugResolve = (0, debug_1.default)('uni:resolve-id');
|
|
const BUILT_IN_MODULES = {
|
|
'vue-router': 'dist/vue-router.esm-bundler.js',
|
|
vuex: 'dist/vuex.esm-bundler.js',
|
|
'vue-i18n': 'dist/vue-i18n.esm-bundler.js',
|
|
'@dcloudio/uni-app': 'dist/uni-app.es.js',
|
|
'@dcloudio/uni-cloud': 'dist/uni-cloud.es.js',
|
|
'@dcloudio/uni-i18n': 'dist/uni-i18n.es.js',
|
|
'@dcloudio/uni-shared': 'dist/uni-shared.es.js',
|
|
'@dcloudio/uni-stacktracey': 'dist/uni-stacktracey.es.js',
|
|
'@vue/shared': 'dist/shared.esm-bundler.js',
|
|
pinia: 'dist/pinia.mjs',
|
|
};
|
|
function uniResolveIdPlugin(options) {
|
|
const resolveCache = {};
|
|
return {
|
|
name: 'uni:resolve-id',
|
|
resolveId(id, importer) {
|
|
const cache = resolveCache[id];
|
|
if (cache) {
|
|
debugResolve('cache', id, cache);
|
|
return cache;
|
|
}
|
|
if (BUILT_IN_MODULES[id]) {
|
|
return (resolveCache[id] = (0, uni_cli_shared_1.resolveBuiltIn)(path_1.default.join(id, BUILT_IN_MODULES[id])));
|
|
}
|
|
if (process.env.UNI_PLATFORM !== 'app') {
|
|
return (0, uni_cli_shared_1.resolveUTSModule)(id, importer ? path_1.default.dirname(importer) : process.env.UNI_INPUT_DIR);
|
|
}
|
|
},
|
|
};
|
|
}
|
|
exports.uniResolveIdPlugin = uniResolveIdPlugin;
|