@dcloudio/uni-cli-shared 3.0.0-alpha-1000920260615733 → 3.0.0-alpha-1000920260626810

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/hbx/index.d.ts +1 -1
  2. package/dist/i18n.js +32 -17
  3. package/dist/logs/console.js +12 -1
  4. package/dist/mp/imports.d.ts +3 -1
  5. package/dist/mp/template.d.ts +2 -1
  6. package/dist/mp/usingComponents.d.ts +2 -1
  7. package/dist/utils.d.ts +1 -1
  8. package/dist/vite/cloud.js +2 -7
  9. package/dist/vite/index.d.ts +2 -3
  10. package/dist/vite/plugins/console.js +29 -26
  11. package/dist/vite/plugins/copy.js +1 -0
  12. package/dist/vite/plugins/cssScoped.js +25 -16
  13. package/dist/vite/plugins/dynamicImportPolyfill.d.ts +8 -1
  14. package/dist/vite/plugins/easycom.js +46 -43
  15. package/dist/vite/plugins/inject.js +131 -117
  16. package/dist/vite/plugins/json.js +17 -14
  17. package/dist/vite/plugins/jsonJs.d.ts +2 -2
  18. package/dist/vite/plugins/jsonJs.js +7 -0
  19. package/dist/vite/plugins/mainJs.d.ts +1 -1
  20. package/dist/vite/plugins/mainJs.js +7 -0
  21. package/dist/vite/plugins/pre.js +35 -30
  22. package/dist/vite/plugins/sfc.js +11 -1
  23. package/dist/vite/plugins/sourceMap.js +4 -1
  24. package/dist/vite/plugins/uts/ext-api.js +23 -17
  25. package/dist/vite/plugins/uts/uni_modules.js +66 -39
  26. package/dist/vite/plugins/uts/uvue.js +55 -48
  27. package/dist/vite/plugins/vitejs/plugins/asset.d.ts +11 -4
  28. package/dist/vite/plugins/vitejs/plugins/asset.js +1 -1
  29. package/dist/vite/plugins/vitejs/plugins/css.d.ts +4 -1
  30. package/dist/vite/plugins/vitejs/plugins/css.js +97 -81
  31. package/dist/vite/utils/utils.d.ts +3 -2
  32. package/dist/vue/transforms/templateTransformAssetUrl.js +4 -4
  33. package/dist/vue/transforms/templateTransformSrcset.js +4 -4
  34. package/package.json +17 -17
@@ -1,5 +1,5 @@
1
1
  export { formatAtFilename, createErrorWithBlockFlag } from './log';
2
2
  export * from './env';
3
3
  export { initModuleAlias, installHBuilderXPlugin, formatInstallHBuilderXPluginTips, } from './alias';
4
- export declare function uniHBuilderXConsolePlugin(method?: string): import("vite").Plugin<any>;
4
+ export declare function uniHBuilderXConsolePlugin(method?: string): import("vite/dist/node").Plugin<any>;
5
5
  export declare function isEnableConsole(): boolean;
package/dist/i18n.js CHANGED
@@ -47,36 +47,51 @@ function isUniAppLocaleFile(filepath) {
47
47
  return localeJsonRE.test(path_1.default.basename(filepath));
48
48
  }
49
49
  exports.isUniAppLocaleFile = isUniAppLocaleFile;
50
+ const localeJsonCache = new Map();
50
51
  function parseLocaleJson(filepath) {
52
+ const { mtimeMs, size } = fs_1.default.statSync(filepath);
53
+ const cached = localeJsonCache.get(filepath);
54
+ if (cached && cached.mtimeMs === mtimeMs && cached.size === size) {
55
+ return cached.json;
56
+ }
51
57
  let jsonObj = (0, json_1.parseJson)(fs_1.default.readFileSync(filepath, 'utf8'), false, filepath);
52
58
  if (isUniAppLocaleFile(filepath)) {
53
59
  jsonObj = jsonObj.common || {};
54
60
  }
61
+ localeJsonCache.set(filepath, { mtimeMs, size, json: jsonObj });
55
62
  return jsonObj;
56
63
  }
64
+ const localeFilesCache = new Map();
57
65
  function getLocaleFiles(cwd) {
58
- return (0, fast_glob_1.sync)('*.json', { cwd, absolute: true });
66
+ let mtimeMs;
67
+ try {
68
+ mtimeMs = fs_1.default.statSync(cwd).mtimeMs;
69
+ }
70
+ catch {
71
+ return [];
72
+ }
73
+ const cached = localeFilesCache.get(cwd);
74
+ if (cached && cached.mtimeMs === mtimeMs) {
75
+ return cached.files;
76
+ }
77
+ const files = (0, fast_glob_1.sync)('*.json', { cwd, absolute: true });
78
+ localeFilesCache.set(cwd, { mtimeMs, files });
79
+ return files;
59
80
  }
60
81
  exports.getLocaleFiles = getLocaleFiles;
61
82
  function initLocales(dir, withMessages = true) {
62
- if (!fs_1.default.existsSync(dir)) {
63
- return {};
64
- }
65
- return fs_1.default.readdirSync(dir).reduce((res, filename) => {
66
- if (path_1.default.extname(filename) === '.json') {
67
- try {
68
- const locale = path_1.default
69
- .basename(filename)
70
- .replace(/(uni-app.)?(.*).json/, '$2');
71
- if (withMessages) {
72
- (0, shared_1.extend)(res[locale] || (res[locale] = {}), parseLocaleJson(path_1.default.join(dir, filename)));
73
- }
74
- else {
75
- res[locale] = {};
76
- }
83
+ return getLocaleFiles(dir).reduce((res, filepath) => {
84
+ const filename = path_1.default.basename(filepath);
85
+ try {
86
+ const locale = filename.replace(/(uni-app.)?(.*).json/, '$2');
87
+ if (withMessages) {
88
+ (0, shared_1.extend)(res[locale] || (res[locale] = {}), parseLocaleJson(filepath));
89
+ }
90
+ else {
91
+ res[locale] = {};
77
92
  }
78
- catch (e) { }
79
93
  }
94
+ catch { }
80
95
  return res;
81
96
  }, {});
82
97
  }
@@ -21,13 +21,24 @@ function rewriteConsoleExpr(method, id, filename, code, sourceMap = false) {
21
21
  return {
22
22
  code: s.toString(),
23
23
  map: sourceMap
24
- ? s.generateMap({ hires: (0, x_1.shouldUseHighResolutionSourceMap)() })
24
+ ? normalizeSourceMap(s.generateMap({ hires: (0, x_1.shouldUseHighResolutionSourceMap)() }))
25
25
  : { mappings: '' },
26
26
  };
27
27
  }
28
28
  return { code, map: null };
29
29
  }
30
30
  exports.rewriteConsoleExpr = rewriteConsoleExpr;
31
+ function normalizeSourceMap(map) {
32
+ return {
33
+ ...map,
34
+ file: map.file || '',
35
+ names: map.names || [],
36
+ sources: map.sources || [],
37
+ sourcesContent: map.sourcesContent || [],
38
+ toString: () => map.toString(),
39
+ toUrl: () => map.toUrl(),
40
+ };
41
+ }
31
42
  function restoreConsoleExpr(code) {
32
43
  return code.replace(/(?:uni\.)?__f__\('([^']+)','at ([^:]+):(\d+)',/g, 'console.$1(');
33
44
  }
@@ -1,5 +1,6 @@
1
- import type { PluginContext } from 'rollup';
2
1
  import { type ImportSpecifier } from 'es-module-lexer';
2
+ import type { Rolldown } from 'vite';
3
+ type PluginContext = Rolldown.PluginContext;
3
4
  /**
4
5
  * 暂时没用
5
6
  * @param source
@@ -10,3 +11,4 @@ import { type ImportSpecifier } from 'es-module-lexer';
10
11
  export declare function findVueComponentImports(source: string, importer: string, resolve: PluginContext['resolve']): Promise<(ImportSpecifier & {
11
12
  i: string;
12
13
  })[]>;
14
+ export {};
@@ -1,6 +1,7 @@
1
- import type { EmittedAsset } from 'rollup';
1
+ import type { Rolldown } from 'vite';
2
2
  import type { AttributeNode, DirectiveNode, ElementNode } from '@vue/compiler-core';
3
3
  import type { MiniProgramComponentsType } from '../json/mp/types';
4
+ type EmittedAsset = Rolldown.EmittedAsset;
4
5
  type LazyElementFn = (node: ElementNode, context: {
5
6
  isMiniProgramComponent(name: string): MiniProgramComponentsType | undefined;
6
7
  }) => {
@@ -1,5 +1,6 @@
1
1
  import { type ImportDeclaration, type Program } from '@babel/types';
2
- import type { PluginContext } from 'rollup';
2
+ import type { Rolldown } from 'vite';
3
+ type PluginContext = Rolldown.PluginContext;
3
4
  type BindingComponents = Record<string, {
4
5
  tag: string;
5
6
  type: 'unknown' | 'setup' | 'self';
package/dist/utils.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare function normalizePagePath(pagePath: string, platform: UniApp.PLA
15
15
  export declare function removeExt(str: string): string;
16
16
  export declare function normalizeNodeModules(str: string): string;
17
17
  export declare function normalizeMiniProgramFilename(filename: string, inputDir?: string): string;
18
- export declare function normalizeParsePlugins(importer: string, babelParserPlugins?: ParserPlugin[]): ParserPlugin[];
18
+ export declare function normalizeParsePlugins(importer: string, babelParserPlugins?: ParserPlugin[]): (import("@babel/parser").ParserPluginWithOptions | ("jsx" | "typescript" | "asyncDoExpressions" | "asyncGenerators" | "bigInt" | "classPrivateMethods" | "classPrivateProperties" | "classProperties" | "classStaticBlock" | "decimal" | "decorators-legacy" | "deferredImportEvaluation" | "decoratorAutoAccessors" | "destructuringPrivate" | "doExpressions" | "dynamicImport" | "explicitResourceManagement" | "exportDefaultFrom" | "exportNamespaceFrom" | "flow" | "flowComments" | "functionBind" | "functionSent" | "importMeta" | "logicalAssignment" | "importAssertions" | "importAttributes" | "importReflection" | "moduleBlocks" | "moduleStringNames" | "nullishCoalescingOperator" | "numericSeparator" | "objectRestSpread" | "optionalCatchBinding" | "optionalChaining" | "partialApplication" | "placeholders" | "privateIn" | "regexpUnicodeSets" | "sourcePhaseImports" | "throwExpressions" | "topLevelAwait" | "v8intrinsic" | "decorators" | "estree" | "moduleAttributes" | "optionalChainingAssign" | "pipelineOperator" | "recordAndTuple"))[];
19
19
  export declare function pathToGlob(pathString: string, glob: string, options?: {
20
20
  windows?: boolean;
21
21
  escape?: boolean;
@@ -131,18 +131,13 @@ function uniEncryptUniModulesPlugin() {
131
131
  }
132
132
  delete bundle[fileName];
133
133
  const pkg = `uni_modules/${uniModuleId}/package.json`;
134
- bundle[pkg] = {
134
+ this.emitFile({
135
135
  type: 'asset',
136
136
  fileName: pkg,
137
- name: pkg,
138
- names: [pkg],
139
- originalFileName: null,
140
- originalFileNames: [],
141
- needsCodeReference: false,
142
137
  source: genUniModulesPackageJson(uniModuleId, process.env.UNI_INPUT_DIR, {
143
138
  env: (0, uni_modules_cloud_1.initCheckEnv)(),
144
139
  }),
145
- };
140
+ });
146
141
  }
147
142
  else if (fileName.endsWith('.js')) {
148
143
  if (isMp) {
@@ -1,5 +1,4 @@
1
- import type { Plugin } from 'vite';
2
- import type { EmittedAsset } from 'rollup';
1
+ import type { Plugin, Rolldown } from 'vite';
3
2
  import type { ParserOptions } from '@vue/compiler-core';
4
3
  import type { CompilerOptions, SFCStyleCompileOptions, TemplateCompiler } from '@vue/compiler-sfc';
5
4
  import type { UniViteCopyPluginOptions } from './plugins/copy';
@@ -17,7 +16,7 @@ interface UniVitePluginUniOptions {
17
16
  styleOptions?: Pick<SFCStyleCompileOptions, 'postcssPlugins'>;
18
17
  compilerOptions?: {
19
18
  miniProgram?: {
20
- emitFile?: (emittedFile: EmittedAsset) => string;
19
+ emitFile?: (emittedFile: Rolldown.EmittedAsset) => string;
21
20
  };
22
21
  isNativeTag?: ParserOptions['isNativeTag'];
23
22
  isVoidTag?: ParserOptions['isVoidTag'];
@@ -29,32 +29,35 @@ function uniConsolePlugin(options) {
29
29
  }
30
30
  }
31
31
  },
32
- transform(code, id) {
33
- if (dropConsole) {
34
- return;
35
- }
36
- if ((0, filter_1.isRenderjs)(id) || (0, filter_1.isWxs)(id)) {
37
- return {
38
- code: (0, console_1.restoreConsoleExpr)(code),
39
- map: null,
40
- };
41
- }
42
- if (!filter(id))
43
- return null;
44
- if (!(0, utils_1.isJsFile)(id))
45
- return null;
46
- let { filename } = (0, utils_1.parseVueRequest)(id);
47
- if (options.filename) {
48
- filename = options.filename(filename);
49
- }
50
- if (!filename) {
51
- return null;
52
- }
53
- if (!code.includes('console.')) {
54
- return null;
55
- }
56
- debugConsole(id);
57
- return (0, console_1.rewriteConsoleExpr)(options.method, id, filename, code, (0, utils_2.withSourcemap)(resolvedConfig));
32
+ transform: {
33
+ filter: { code: /console\.|__f__/ },
34
+ handler(code, id) {
35
+ if (dropConsole) {
36
+ return;
37
+ }
38
+ if ((0, filter_1.isRenderjs)(id) || (0, filter_1.isWxs)(id)) {
39
+ return {
40
+ code: (0, console_1.restoreConsoleExpr)(code),
41
+ map: null,
42
+ };
43
+ }
44
+ if (!filter(id))
45
+ return null;
46
+ if (!(0, utils_1.isJsFile)(id))
47
+ return null;
48
+ let { filename } = (0, utils_1.parseVueRequest)(id);
49
+ if (options.filename) {
50
+ filename = options.filename(filename);
51
+ }
52
+ if (!filename) {
53
+ return null;
54
+ }
55
+ if (!code.includes('console.')) {
56
+ return null;
57
+ }
58
+ debugConsole(id);
59
+ return (0, console_1.rewriteConsoleExpr)(options.method, id, filename, code, (0, utils_2.withSourcemap)(resolvedConfig));
60
+ },
58
61
  },
59
62
  };
60
63
  }
@@ -11,6 +11,7 @@ function uniViteCopyPlugin({ targets, }) {
11
11
  let isFirstBuild = true;
12
12
  return {
13
13
  name: 'uni:copy',
14
+ enforce: 'pre',
14
15
  apply: 'build',
15
16
  configResolved(config) {
16
17
  resolvedConfig = config;
@@ -13,6 +13,7 @@ const utils_1 = require("../../utils");
13
13
  const utils_2 = require("../../vue/utils");
14
14
  const debugScoped = (0, debug_1.default)('uni:scoped');
15
15
  const SCOPED_RE = /<style\s[^>]*scoped[^>]*>/i;
16
+ const VUE_SFC_ID_RE = /\.(?:vue|nvue|uvue)(?:$|\?(?!vue(?:&|=|$)))/;
16
17
  function addScoped(code) {
17
18
  return code.replace(/(<style\b[^><]*)>/gi, (str, $1) => {
18
19
  if ($1.includes('scoped')) {
@@ -32,14 +33,18 @@ function uniRemoveCssScopedPlugin(_ = { filter: () => false }) {
32
33
  return {
33
34
  name: 'uni:css-remove-scoped',
34
35
  enforce: 'pre',
35
- transform(code, id) {
36
- if (!(0, utils_2.isVueSfcFile)(id))
37
- return null;
38
- debugScoped(id);
39
- return {
40
- code: removeScoped(code),
41
- map: null,
42
- };
36
+ transform: {
37
+ // SFC 主模块需要移除 scoped,跳过 script/style/template 等子模块。
38
+ filter: { id: VUE_SFC_ID_RE },
39
+ handler(code, id) {
40
+ if (!(0, utils_2.isVueSfcFile)(id))
41
+ return null;
42
+ debugScoped(id);
43
+ return {
44
+ code: removeScoped(code),
45
+ map: null,
46
+ };
47
+ },
43
48
  },
44
49
  };
45
50
  }
@@ -49,14 +54,18 @@ function uniCssScopedPlugin({ filter } = { filter: () => false }) {
49
54
  return {
50
55
  name: 'uni:css-scoped',
51
56
  enforce: 'pre',
52
- transform(code, id) {
53
- if (!filter(id))
54
- return null;
55
- debugScoped(id);
56
- return {
57
- code: addScoped(code),
58
- map: null,
59
- };
57
+ transform: {
58
+ // 仅 SFC 主模块需要补 scoped,跳过 script/style/template 等子模块。
59
+ filter: { id: VUE_SFC_ID_RE },
60
+ handler(code, id) {
61
+ if (!filter(id))
62
+ return null;
63
+ debugScoped(id);
64
+ return {
65
+ code: addScoped(code),
66
+ map: null,
67
+ };
68
+ },
60
69
  },
61
70
  // 仅 h5
62
71
  handleHotUpdate(ctx) {
@@ -1,2 +1,9 @@
1
1
  import type { Plugin } from 'vite';
2
- export declare function dynamicImportPolyfill(promise?: boolean): Plugin;
2
+ interface DynamicImportPolyfillPlugin extends Plugin {
3
+ renderDynamicImport(): {
4
+ left: string;
5
+ right: string;
6
+ };
7
+ }
8
+ export declare function dynamicImportPolyfill(promise?: boolean): DynamicImportPolyfillPlugin;
9
+ export {};
@@ -16,53 +16,56 @@ function uniEasycomPlugin(options) {
16
16
  const filter = (0, pluginutils_1.createFilter)(options.include, options.exclude);
17
17
  return {
18
18
  name: 'uni:app-easycom',
19
- transform(code, id) {
20
- if (!filter(id)) {
21
- return;
22
- }
23
- const { filename } = (0, url_1.parseVueRequest)(id);
24
- if (!constants_1.EXTNAME_VUE_TEMPLATE.includes(path_1.default.extname(filename))) {
25
- return;
26
- }
27
- if (!code.includes('_resolveComponent')) {
28
- return;
29
- }
30
- let i = 0;
31
- const importDeclarations = [];
32
- code = code.replace(/_resolveComponent\("(.+?)"(, true)?\)/g, (str, name) => {
33
- if (name && !name.startsWith('_')) {
34
- const source = (0, easycom_1.matchEasycom)(name);
35
- if (source) {
36
- // 处理easycom组件优先级
37
- return (0, easycom_1.genResolveEasycomCode)(importDeclarations, str, (0, easycom_1.addImportDeclaration)(importDeclarations, `__easycom_${i++}`, source, source.includes('uts-proxy')
38
- ? (0, shared_1.capitalize)((0, shared_1.camelize)(name)) + 'Component'
39
- : source.includes('uni_helpers')
40
- ? (0, shared_1.capitalize)((0, shared_1.camelize)(name))
41
- : ''));
42
- }
43
- else {
44
- const utsCustomElement = (0, uts_1.getUTSCustomElement)(name);
45
- if (utsCustomElement) {
46
- (0, easycom_1.addImportDeclaration)(importDeclarations, '', utsCustomElement.source, '');
47
- return `'${name}'`;
19
+ transform: {
20
+ filter: { id: /\.(vue|uvue)(\?|$)/, code: /_resolveComponent/ },
21
+ handler(code, id) {
22
+ if (!filter(id)) {
23
+ return;
24
+ }
25
+ const { filename } = (0, url_1.parseVueRequest)(id);
26
+ if (!constants_1.EXTNAME_VUE_TEMPLATE.includes(path_1.default.extname(filename))) {
27
+ return;
28
+ }
29
+ if (!code.includes('_resolveComponent')) {
30
+ return;
31
+ }
32
+ let i = 0;
33
+ const importDeclarations = [];
34
+ code = code.replace(/_resolveComponent\("(.+?)"(, true)?\)/g, (str, name) => {
35
+ if (name && !name.startsWith('_')) {
36
+ const source = (0, easycom_1.matchEasycom)(name);
37
+ if (source) {
38
+ // 处理easycom组件优先级
39
+ return (0, easycom_1.genResolveEasycomCode)(importDeclarations, str, (0, easycom_1.addImportDeclaration)(importDeclarations, `__easycom_${i++}`, source, source.includes('uts-proxy')
40
+ ? (0, shared_1.capitalize)((0, shared_1.camelize)(name)) + 'Component'
41
+ : source.includes('uni_helpers')
42
+ ? (0, shared_1.capitalize)((0, shared_1.camelize)(name))
43
+ : ''));
48
44
  }
49
- }
50
- if (process.env.UNI_APP_X === 'true') {
51
- if ((0, uni_shared_1.isAppUVueBuiltInEasyComponent)(name)) {
52
- // 内置easycom组件不传入self参数
53
- return str.replace(', true)', ')');
45
+ else {
46
+ const utsCustomElement = (0, uts_1.getUTSCustomElement)(name);
47
+ if (utsCustomElement) {
48
+ (0, easycom_1.addImportDeclaration)(importDeclarations, '', utsCustomElement.source, '');
49
+ return `'${name}'`;
50
+ }
51
+ }
52
+ if (process.env.UNI_APP_X === 'true') {
53
+ if ((0, uni_shared_1.isAppUVueBuiltInEasyComponent)(name)) {
54
+ // 内置easycom组件不传入self参数
55
+ return str.replace(', true)', ')');
56
+ }
54
57
  }
55
58
  }
59
+ return str;
60
+ });
61
+ if (importDeclarations.length) {
62
+ code = importDeclarations.join('') + code;
56
63
  }
57
- return str;
58
- });
59
- if (importDeclarations.length) {
60
- code = importDeclarations.join('') + code;
61
- }
62
- return {
63
- code,
64
- map: null,
65
- };
64
+ return {
65
+ code,
66
+ map: null,
67
+ };
68
+ },
66
69
  },
67
70
  };
68
71
  }