@dcloudio/uni-cli-shared 3.0.0-alpha-5000120260205002 → 3.0.0-alpha-5000220260306001
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/constants.js +1 -1
- package/dist/messages/en.d.ts +1 -2
- package/dist/messages/en.js +1 -2
- package/dist/messages/index.d.ts +1 -3
- package/dist/messages/zh_CN.d.ts +0 -1
- package/dist/messages/zh_CN.js +0 -1
- package/lib/dom2/app/@vue/compiler-core/dist/compiler-core.cjs.js +4871 -6363
- package/lib/dom2/app/@vue/compiler-core/dist/compiler-core.cjs.prod.js +4817 -6240
- package/lib/dom2/app/@vue/compiler-core/dist/compiler-core.d.ts +875 -829
- package/lib/dom2/app/@vue/compiler-core/dist/compiler-core.esm-bundler.js +3894 -5482
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.cjs.js +651 -832
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +630 -795
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.d.ts +43 -35
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.esm-browser.js +4498 -6186
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.esm-browser.prod.js +10 -13
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.esm-bundler.js +482 -620
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.global.js +5180 -6869
- package/lib/dom2/app/@vue/compiler-dom/dist/compiler-dom.global.prod.js +10 -13
- package/lib/dom2/app/@vue/compiler-sfc/dist/compiler-sfc.cjs.js +14531 -21212
- package/lib/dom2/app/@vue/compiler-sfc/dist/compiler-sfc.d.ts +11499 -408
- package/lib/dom2/app/@vue/compiler-sfc/dist/compiler-sfc.esm-browser.js +38510 -52982
- package/lib/dom2/app/@vue/compiler-vapor/dist/compiler-vapor.cjs.js +3121 -4210
- package/lib/dom2/app/@vue/compiler-vapor/dist/compiler-vapor.d.ts +22697 -377
- package/lib/dom2/app/@vue/compiler-vapor/dist/compiler-vapor.esm-browser.js +21287 -27110
- package/lib/dom2/app/@vue/compiler-vapor-dom2/dist/compiler-vapor-dom2.cjs.js +1 -84
- package/lib/dom2/app/@vue/shared/dist/shared.cjs.js +532 -486
- package/lib/dom2/app/@vue/shared/dist/shared.cjs.prod.js +530 -476
- package/lib/dom2/app/@vue/shared/dist/shared.d.ts +289 -261
- package/lib/dom2/app/@vue/shared/dist/shared.esm-bundler.js +528 -481
- package/package.json +5 -5
package/dist/constants.js
CHANGED
|
@@ -92,4 +92,4 @@ exports.JS_STYLE_PLACEHOLDER_MARKER = '__js_style_placeholder__';
|
|
|
92
92
|
exports.JS_STYLE_PLACEHOLDER_STR = JSON.stringify({
|
|
93
93
|
[exports.JS_STYLE_PLACEHOLDER_MARKER]: 0,
|
|
94
94
|
});
|
|
95
|
-
exports.JS_STYLE_PLACEHOLDER_RE = /\{\s*"__js_style_placeholder__"\s*:\s*0\s*}
|
|
95
|
+
exports.JS_STYLE_PLACEHOLDER_RE = /\{\s*"__js_style_placeholder__"\s*:\s*0\s*}/g;
|
package/dist/messages/en.d.ts
CHANGED
|
@@ -2,12 +2,11 @@ declare const _default: {
|
|
|
2
2
|
readonly 'app.compiler.version': "Compiler version: {version}";
|
|
3
3
|
readonly compiling: "Compiling...";
|
|
4
4
|
readonly 'dev.performance': "Please note that in running mode, due to log output, sourcemap, and uncompressed source code, the performance and package size are not as good as release mode.";
|
|
5
|
-
readonly 'dev.exclusion': "Please configure the antivirus software to set up an exclusion list for scanning, reducing system resource consumption. [详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)";
|
|
6
5
|
readonly 'dev.performance.nvue': "Especially the sourcemap of app-nvue has a greater impact";
|
|
7
6
|
readonly 'dev.performance.mp': "To officially release, please click the release menu or use the cli release command to release";
|
|
8
7
|
readonly 'dev.performance.web': "\nVite is compiled on demand, and clicking on an uncompiled page at runtime will compile first and then load, resulting in a slower display, and there is no such problem after release.";
|
|
9
8
|
readonly 'build.done': "DONE Build complete.";
|
|
10
|
-
readonly 'dev.watching.start': "Compiling...";
|
|
9
|
+
readonly 'dev.watching.start': "Incremental Compiling...";
|
|
11
10
|
readonly 'dev.watching.end': "DONE Build complete. Watching for changes...";
|
|
12
11
|
readonly 'dev.watching.end.pages': "DONE Build complete. PAGES:{pages}";
|
|
13
12
|
readonly 'dev.watching.end.files': "DONE Build complete. FILES:{files}";
|
package/dist/messages/en.js
CHANGED
|
@@ -4,12 +4,11 @@ exports.default = {
|
|
|
4
4
|
'app.compiler.version': 'Compiler version: {version}',
|
|
5
5
|
compiling: 'Compiling...',
|
|
6
6
|
'dev.performance': 'Please note that in running mode, due to log output, sourcemap, and uncompressed source code, the performance and package size are not as good as release mode.',
|
|
7
|
-
'dev.exclusion': 'Please configure the antivirus software to set up an exclusion list for scanning, reducing system resource consumption. [详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)',
|
|
8
7
|
'dev.performance.nvue': 'Especially the sourcemap of app-nvue has a greater impact',
|
|
9
8
|
'dev.performance.mp': 'To officially release, please click the release menu or use the cli release command to release',
|
|
10
9
|
'dev.performance.web': '\nVite is compiled on demand, and clicking on an uncompiled page at runtime will compile first and then load, resulting in a slower display, and there is no such problem after release.',
|
|
11
10
|
'build.done': 'DONE Build complete.',
|
|
12
|
-
'dev.watching.start': 'Compiling...',
|
|
11
|
+
'dev.watching.start': 'Incremental Compiling...',
|
|
13
12
|
'dev.watching.end': 'DONE Build complete. Watching for changes...',
|
|
14
13
|
'dev.watching.end.pages': 'DONE Build complete. PAGES:{pages}',
|
|
15
14
|
'dev.watching.end.files': 'DONE Build complete. FILES:{files}',
|
package/dist/messages/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export declare const M: {
|
|
|
2
2
|
readonly 'app.compiler.version': "编译器版本:{version}";
|
|
3
3
|
readonly compiling: "正在编译中...";
|
|
4
4
|
readonly 'dev.performance': "请注意运行模式下,因日志输出、sourcemap 以及未压缩源码等原因,性能和包体积,均不及发行模式。";
|
|
5
|
-
readonly 'dev.exclusion': "请在杀毒软件中设置扫描排除名单,减少系统资源消耗。[详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)";
|
|
6
5
|
readonly 'dev.performance.nvue': "尤其是 app-nvue 的 sourcemap 影响较大";
|
|
7
6
|
readonly 'dev.performance.mp': "若要正式发布,请点击发行菜单或使用 cli 发布命令进行发布";
|
|
8
7
|
readonly 'dev.performance.web': "\nvite是按需编译,运行时点击某个未编译页面会先编译后加载,导致显示较慢,发行后无此问题。";
|
|
@@ -53,12 +52,11 @@ export declare const M: {
|
|
|
53
52
|
readonly 'app.compiler.version': "Compiler version: {version}";
|
|
54
53
|
readonly compiling: "Compiling...";
|
|
55
54
|
readonly 'dev.performance': "Please note that in running mode, due to log output, sourcemap, and uncompressed source code, the performance and package size are not as good as release mode.";
|
|
56
|
-
readonly 'dev.exclusion': "Please configure the antivirus software to set up an exclusion list for scanning, reducing system resource consumption. [详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)";
|
|
57
55
|
readonly 'dev.performance.nvue': "Especially the sourcemap of app-nvue has a greater impact";
|
|
58
56
|
readonly 'dev.performance.mp': "To officially release, please click the release menu or use the cli release command to release";
|
|
59
57
|
readonly 'dev.performance.web': "\nVite is compiled on demand, and clicking on an uncompiled page at runtime will compile first and then load, resulting in a slower display, and there is no such problem after release.";
|
|
60
58
|
readonly 'build.done': "DONE Build complete.";
|
|
61
|
-
readonly 'dev.watching.start': "Compiling...";
|
|
59
|
+
readonly 'dev.watching.start': "Incremental Compiling...";
|
|
62
60
|
readonly 'dev.watching.end': "DONE Build complete. Watching for changes...";
|
|
63
61
|
readonly 'dev.watching.end.pages': "DONE Build complete. PAGES:{pages}";
|
|
64
62
|
readonly 'dev.watching.end.files': "DONE Build complete. FILES:{files}";
|
package/dist/messages/zh_CN.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ declare const _default: {
|
|
|
2
2
|
readonly 'app.compiler.version': "编译器版本:{version}";
|
|
3
3
|
readonly compiling: "正在编译中...";
|
|
4
4
|
readonly 'dev.performance': "请注意运行模式下,因日志输出、sourcemap 以及未压缩源码等原因,性能和包体积,均不及发行模式。";
|
|
5
|
-
readonly 'dev.exclusion': "请在杀毒软件中设置扫描排除名单,减少系统资源消耗。[详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)";
|
|
6
5
|
readonly 'dev.performance.nvue': "尤其是 app-nvue 的 sourcemap 影响较大";
|
|
7
6
|
readonly 'dev.performance.mp': "若要正式发布,请点击发行菜单或使用 cli 发布命令进行发布";
|
|
8
7
|
readonly 'dev.performance.web': "\nvite是按需编译,运行时点击某个未编译页面会先编译后加载,导致显示较慢,发行后无此问题。";
|
package/dist/messages/zh_CN.js
CHANGED
|
@@ -4,7 +4,6 @@ exports.default = {
|
|
|
4
4
|
'app.compiler.version': '编译器版本:{version}',
|
|
5
5
|
compiling: '正在编译中...',
|
|
6
6
|
'dev.performance': '请注意运行模式下,因日志输出、sourcemap 以及未压缩源码等原因,性能和包体积,均不及发行模式。',
|
|
7
|
-
'dev.exclusion': '请在杀毒软件中设置扫描排除名单,减少系统资源消耗。[详情](https://uniapp.dcloud.net.cn/uni-app-x/compiler/#tips)',
|
|
8
7
|
'dev.performance.nvue': '尤其是 app-nvue 的 sourcemap 影响较大',
|
|
9
8
|
'dev.performance.mp': '若要正式发布,请点击发行菜单或使用 cli 发布命令进行发布',
|
|
10
9
|
'dev.performance.web': '\nvite是按需编译,运行时点击某个未编译页面会先编译后加载,导致显示较慢,发行后无此问题。',
|