@dcloudio/uni-cli-shared 3.0.0-alpha-3030820220114004 → 3.0.0-alpha-3031020220124001
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.
- package/dist/hbx/log.js +5 -5
- package/dist/mp/event.js +0 -5
- package/dist/mp/usingComponents.js +1 -15
- package/dist/vite/features.js +2 -2
- package/dist/vite/plugins/vitejs/plugins/css.js +3 -3
- package/dist/vite/utils/url.d.ts +0 -11
- package/dist/vite/utils/url.js +2 -21
- package/dist/vue/transforms/index.js +1 -7
- package/dist/vue/transforms/transformEvent.d.ts +2 -2
- package/dist/vue/transforms/transformEvent.js +1 -7
- package/package.json +9 -9
package/dist/hbx/log.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.errorFormatter = exports.removeWarnFormatter = exports.removeInfoFormatter = exports.h5ServeFormatter = void 0;
|
|
7
7
|
const path_1 = __importDefault(require("path"));
|
|
8
|
-
const
|
|
8
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
9
9
|
const utils_1 = require("../utils");
|
|
10
10
|
const SIGNAL_H5_LOCAL = ' > Local:';
|
|
11
11
|
const SIGNAL_H5_NETWORK = ' > Network:';
|
|
@@ -66,20 +66,20 @@ exports.errorFormatter = {
|
|
|
66
66
|
function buildErrorMessage(err, args = [], includeStack = true) {
|
|
67
67
|
var _a, _b;
|
|
68
68
|
if (err.plugin) {
|
|
69
|
-
args.push(`${
|
|
69
|
+
args.push(`${chalk_1.default.magenta('[plugin:' + err.plugin + ']')} ${chalk_1.default.red(err.message)}`);
|
|
70
70
|
}
|
|
71
71
|
else {
|
|
72
|
-
args.push(
|
|
72
|
+
args.push(chalk_1.default.red(err.message));
|
|
73
73
|
}
|
|
74
74
|
if (err.id) {
|
|
75
|
-
args.push(`at ${
|
|
75
|
+
args.push(`at ${chalk_1.default.cyan((0, utils_1.normalizePath)(path_1.default.relative(process.env.UNI_INPUT_DIR, err.id.split('?')[0])) +
|
|
76
76
|
':' +
|
|
77
77
|
(((_a = err.loc) === null || _a === void 0 ? void 0 : _a.line) || 1) +
|
|
78
78
|
':' +
|
|
79
79
|
(((_b = err.loc) === null || _b === void 0 ? void 0 : _b.column) || 0))}`);
|
|
80
80
|
}
|
|
81
81
|
if (err.frame) {
|
|
82
|
-
args.push(
|
|
82
|
+
args.push(chalk_1.default.yellow(pad(err.frame)));
|
|
83
83
|
}
|
|
84
84
|
if (includeStack && err.stack) {
|
|
85
85
|
args.push(pad(cleanStack(err.stack)));
|
package/dist/mp/event.js
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.formatMiniProgramEvent = void 0;
|
|
4
|
-
const uni_shared_1 = require("@dcloudio/uni-shared");
|
|
5
4
|
function formatMiniProgramEvent(eventName, { isCatch, isCapture, isComponent, }) {
|
|
6
|
-
if (isComponent) {
|
|
7
|
-
// 自定义组件的自定义事件需要格式化,因为 triggerEvent 时也会格式化
|
|
8
|
-
eventName = (0, uni_shared_1.customizeEvent)(eventName);
|
|
9
|
-
}
|
|
10
5
|
if (!isComponent && eventName === 'click') {
|
|
11
6
|
eventName = 'tap';
|
|
12
7
|
}
|
|
@@ -130,22 +130,8 @@ function findBindingComponent(tag, bindingComponents) {
|
|
|
130
130
|
return tag === componentTag || tag === camelName || tag === PascalName;
|
|
131
131
|
});
|
|
132
132
|
}
|
|
133
|
-
function normalizeComponentId(id) {
|
|
134
|
-
// _unref(test) => test
|
|
135
|
-
if (id.includes('_unref(')) {
|
|
136
|
-
return id.replace('_unref(', '').replace(')', '');
|
|
137
|
-
}
|
|
138
|
-
// $setup["test"] => test
|
|
139
|
-
if (id.includes('$setup[')) {
|
|
140
|
-
return id.replace('$setup["', '').replace('"', '');
|
|
141
|
-
}
|
|
142
|
-
return id;
|
|
143
|
-
}
|
|
144
133
|
function parseBindingComponents(templateBindingComponents, scriptBindingComponents) {
|
|
145
|
-
const bindingComponents = {};
|
|
146
|
-
Object.keys(templateBindingComponents).forEach((id) => {
|
|
147
|
-
bindingComponents[normalizeComponentId(id)] = templateBindingComponents[id];
|
|
148
|
-
});
|
|
134
|
+
const bindingComponents = { ...templateBindingComponents };
|
|
149
135
|
Object.keys(scriptBindingComponents).forEach((id) => {
|
|
150
136
|
const { tag } = scriptBindingComponents[id];
|
|
151
137
|
const name = findBindingComponent(tag, templateBindingComponents);
|
package/dist/vite/features.js
CHANGED
|
@@ -131,8 +131,8 @@ function initManifestFeature({ manifestJson, command, platform, }) {
|
|
|
131
131
|
};
|
|
132
132
|
if (command === 'build') {
|
|
133
133
|
// TODO 需要预编译一遍?
|
|
134
|
-
|
|
135
|
-
|
|
134
|
+
features.wxs = false;
|
|
135
|
+
features.longpress = false;
|
|
136
136
|
}
|
|
137
137
|
if (manifestJson.h5 &&
|
|
138
138
|
manifestJson.h5.router &&
|
|
@@ -26,7 +26,7 @@ exports.minifyCSS = exports.cssUrlRE = exports.cssPostPlugin = exports.cssPlugin
|
|
|
26
26
|
const fs_1 = __importDefault(require("fs"));
|
|
27
27
|
const path_1 = __importDefault(require("path"));
|
|
28
28
|
const fast_glob_1 = __importDefault(require("fast-glob"));
|
|
29
|
-
const
|
|
29
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
30
30
|
const postcss_load_config_1 = __importDefault(require("postcss-load-config"));
|
|
31
31
|
const pluginutils_1 = require("@rollup/pluginutils");
|
|
32
32
|
const utils_1 = require("../utils");
|
|
@@ -396,7 +396,7 @@ async function compileCSS(id, code, config, urlReplacer, atImportResolvers, serv
|
|
|
396
396
|
column: message.column,
|
|
397
397
|
})}`;
|
|
398
398
|
}
|
|
399
|
-
config.logger.warn(
|
|
399
|
+
config.logger.warn(chalk_1.default.yellow(msg));
|
|
400
400
|
}
|
|
401
401
|
}
|
|
402
402
|
return {
|
|
@@ -505,7 +505,7 @@ async function minifyCSS(css, config) {
|
|
|
505
505
|
});
|
|
506
506
|
if (warnings.length) {
|
|
507
507
|
const msgs = await (0, esbuild_1.formatMessages)(warnings, { kind: 'warning' });
|
|
508
|
-
config.logger.warn(
|
|
508
|
+
config.logger.warn(chalk_1.default.yellow(`warnings when minifying css:\n${msgs.join('\n')}`));
|
|
509
509
|
}
|
|
510
510
|
return code;
|
|
511
511
|
}
|
package/dist/vite/utils/url.d.ts
CHANGED
|
@@ -11,17 +11,6 @@ export declare function parseVueRequest(id: string): {
|
|
|
11
11
|
query: VueQuery;
|
|
12
12
|
};
|
|
13
13
|
export declare const isImportRequest: (url: string) => boolean;
|
|
14
|
-
/**
|
|
15
|
-
* Prefix for resolved fs paths, since windows paths may not be valid as URLs.
|
|
16
|
-
*/
|
|
17
|
-
export declare const FS_PREFIX = "/@fs/";
|
|
18
|
-
/**
|
|
19
|
-
* Prefix for resolved Ids that are not valid browser import specifiers
|
|
20
|
-
*/
|
|
21
|
-
export declare const VALID_ID_PREFIX = "/@id/";
|
|
22
|
-
export declare const CLIENT_PUBLIC_PATH = "/@vite/client";
|
|
23
|
-
export declare const ENV_PUBLIC_PATH = "/@vite/env";
|
|
24
|
-
export declare const isInternalRequest: (url: string) => boolean;
|
|
25
14
|
export declare const queryRE: RegExp;
|
|
26
15
|
export declare const hashRE: RegExp;
|
|
27
16
|
export declare const cleanUrl: (url: string) => string;
|
package/dist/vite/utils/url.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.isJsFile = exports.cleanUrl = exports.hashRE = exports.queryRE = exports.
|
|
6
|
+
exports.isJsFile = exports.cleanUrl = exports.hashRE = exports.queryRE = exports.isImportRequest = exports.parseVueRequest = void 0;
|
|
7
7
|
const path_1 = __importDefault(require("path"));
|
|
8
8
|
const querystring_1 = __importDefault(require("querystring"));
|
|
9
9
|
const constants_1 = require("../../constants");
|
|
@@ -28,28 +28,9 @@ function parseVueRequest(id) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
exports.parseVueRequest = parseVueRequest;
|
|
31
|
-
const importQueryRE = /(\?|&)import
|
|
31
|
+
const importQueryRE = /(\?|&)import(?:&|$)/;
|
|
32
32
|
const isImportRequest = (url) => importQueryRE.test(url);
|
|
33
33
|
exports.isImportRequest = isImportRequest;
|
|
34
|
-
/**
|
|
35
|
-
* Prefix for resolved fs paths, since windows paths may not be valid as URLs.
|
|
36
|
-
*/
|
|
37
|
-
exports.FS_PREFIX = `/@fs/`;
|
|
38
|
-
/**
|
|
39
|
-
* Prefix for resolved Ids that are not valid browser import specifiers
|
|
40
|
-
*/
|
|
41
|
-
exports.VALID_ID_PREFIX = `/@id/`;
|
|
42
|
-
exports.CLIENT_PUBLIC_PATH = `/@vite/client`;
|
|
43
|
-
exports.ENV_PUBLIC_PATH = `/@vite/env`;
|
|
44
|
-
const internalPrefixes = [
|
|
45
|
-
exports.FS_PREFIX,
|
|
46
|
-
exports.VALID_ID_PREFIX,
|
|
47
|
-
exports.CLIENT_PUBLIC_PATH,
|
|
48
|
-
exports.ENV_PUBLIC_PATH,
|
|
49
|
-
];
|
|
50
|
-
const InternalPrefixRE = new RegExp(`^(?:${internalPrefixes.join('|')})`);
|
|
51
|
-
const isInternalRequest = (url) => InternalPrefixRE.test(url);
|
|
52
|
-
exports.isInternalRequest = isInternalRequest;
|
|
53
34
|
exports.queryRE = /\?.*$/;
|
|
54
35
|
exports.hashRE = /#.*$/;
|
|
55
36
|
const cleanUrl = (url) => url.replace(exports.hashRE, '').replace(exports.queryRE, '');
|
|
@@ -37,12 +37,6 @@ exports.transformMatchMedia = (0, transformTag_1.createTransformTag)({
|
|
|
37
37
|
'match-media': 'uni-match-media',
|
|
38
38
|
});
|
|
39
39
|
exports.transformTapToClick = (0, transformEvent_1.createTransformEvent)({
|
|
40
|
-
tap:
|
|
41
|
-
// 地图组件有自己特定的 tap 事件
|
|
42
|
-
if (node.tag === 'map' || node.tag === 'v-uni-map') {
|
|
43
|
-
return 'tap';
|
|
44
|
-
}
|
|
45
|
-
return 'click';
|
|
46
|
-
},
|
|
40
|
+
tap: 'click',
|
|
47
41
|
});
|
|
48
42
|
exports.transformComponentLink = (0, transformComponent_1.createTransformComponentLink)(constants_1.COMPONENT_BIND_LINK);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare function createTransformEvent(options: Record<string, string
|
|
1
|
+
import { NodeTransform } from '@vue/compiler-core';
|
|
2
|
+
export declare function createTransformEvent(options: Record<string, string>): NodeTransform;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createTransformEvent = void 0;
|
|
4
|
-
const shared_1 = require("@vue/shared");
|
|
5
4
|
const ast_1 = require("../../vite/utils/ast");
|
|
6
5
|
function createTransformEvent(options) {
|
|
7
6
|
return function transformEvent(node) {
|
|
@@ -14,12 +13,7 @@ function createTransformEvent(options) {
|
|
|
14
13
|
const eventType = options[arg.content];
|
|
15
14
|
if (eventType) {
|
|
16
15
|
// e.g tap => click
|
|
17
|
-
|
|
18
|
-
arg.content = eventType(node, prop);
|
|
19
|
-
}
|
|
20
|
-
else {
|
|
21
|
-
arg.content = eventType;
|
|
22
|
-
}
|
|
16
|
+
arg.content = eventType;
|
|
23
17
|
}
|
|
24
18
|
}
|
|
25
19
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcloudio/uni-cli-shared",
|
|
3
|
-
"version": "3.0.0-alpha-
|
|
3
|
+
"version": "3.0.0-alpha-3031020220124001",
|
|
4
4
|
"description": "@dcloudio/uni-cli-shared",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,15 +21,16 @@
|
|
|
21
21
|
"@babel/core": "^7.16.5",
|
|
22
22
|
"@babel/parser": "^7.16.4",
|
|
23
23
|
"@babel/types": "^7.16.0",
|
|
24
|
-
"@dcloudio/uni-i18n": "3.0.0-alpha-
|
|
25
|
-
"@dcloudio/uni-shared": "3.0.0-alpha-
|
|
24
|
+
"@dcloudio/uni-i18n": "3.0.0-alpha-3031020220124001",
|
|
25
|
+
"@dcloudio/uni-shared": "3.0.0-alpha-3031020220124001",
|
|
26
26
|
"@rollup/pluginutils": "^4.1.2",
|
|
27
|
-
"@vue/compiler-core": "3.2.
|
|
28
|
-
"@vue/compiler-dom": "3.2.
|
|
29
|
-
"@vue/compiler-sfc": "3.2.
|
|
30
|
-
"@vue/server-renderer": "3.2.
|
|
31
|
-
"@vue/shared": "3.2.
|
|
27
|
+
"@vue/compiler-core": "3.2.26",
|
|
28
|
+
"@vue/compiler-dom": "3.2.26",
|
|
29
|
+
"@vue/compiler-sfc": "3.2.26",
|
|
30
|
+
"@vue/server-renderer": "3.2.26",
|
|
31
|
+
"@vue/shared": "3.2.26",
|
|
32
32
|
"base64url": "^3.0.1",
|
|
33
|
+
"chalk": "^4.1.1",
|
|
33
34
|
"chokidar": "^3.5.2",
|
|
34
35
|
"compare-versions": "^3.6.0",
|
|
35
36
|
"debug": "^4.3.2",
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
"merge": "^2.1.1",
|
|
45
46
|
"mime": "^3.0.0",
|
|
46
47
|
"module-alias": "^2.2.2",
|
|
47
|
-
"picocolors": "^1.0.0",
|
|
48
48
|
"postcss-import": "^14.0.2",
|
|
49
49
|
"postcss-load-config": "^3.1.0",
|
|
50
50
|
"postcss-modules": "^4.2.2",
|