Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
6e82d141
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6e82d141
编写于
1月 11, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mp): 1. 修复 小程序插件编译时入口文件判断错误。移除使用 UNI_MP_PLUGIN 定义变量
上级
858a9f13
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
27 deletion
+30
-27
packages/vue-cli-plugin-uni/commands/build.js
packages/vue-cli-plugin-uni/commands/build.js
+14
-12
packages/vue-cli-plugin-uni/lib/mp/index.js
packages/vue-cli-plugin-uni/lib/mp/index.js
+7
-6
packages/webpack-uni-mp-loader/lib/plugin/index-new.js
packages/webpack-uni-mp-loader/lib/plugin/index-new.js
+9
-9
未找到文件。
packages/vue-cli-plugin-uni/commands/build.js
浏览文件 @
6e82d141
...
...
@@ -34,7 +34,7 @@ module.exports = (api, options) => {
'
--auto-host
'
:
'
specify automator host
'
,
'
--auto-port
'
:
'
specify automator port
'
,
'
--subpackage
'
:
'
specify subpackage
'
,
'
--plugin
'
:
'
specify plugin
'
,
'
--plugin
'
:
'
specify
mp
plugin
'
,
'
--manifest
'
:
'
build manifest.json
'
}
},
async
(
args
)
=>
{
...
...
@@ -244,17 +244,19 @@ function analysisPluginDir () {
const
pluginJson
=
parseJson
(
fs
.
readFileSync
(
pluginJsonPath
,
'
utf-8
'
),
true
)
// main 入口文件是否存在
process
.
env
.
UNI_MP_PLUGIN_MAIN
=
pluginJson
.
main
const
UNI_MP_PLUGIN_MAIN
=
process
.
env
.
UNI_MP_PLUGIN_MAIN
const
mainFilePath
=
path
.
resolve
(
process
.
env
.
UNI_INPUT_DIR
,
UNI_MP_PLUGIN_MAIN
)
if
(
UNI_MP_PLUGIN_MAIN
&&
!
fs
.
pathExistsSync
(
mainFilePath
))
{
console
.
log
()
console
.
error
(
uniI18n
.
__
(
'
pluginUni.entryDileNoExistsCheckAfterRetry
'
,
{
0
:
UNI_MP_PLUGIN_MAIN
}))
console
.
log
()
process
.
exit
(
0
)
if
(
pluginJson
.
main
)
{
process
.
env
.
UNI_MP_PLUGIN_MAIN
=
pluginJson
.
main
const
UNI_MP_PLUGIN_MAIN
=
process
.
env
.
UNI_MP_PLUGIN_MAIN
const
mainFilePath
=
path
.
resolve
(
process
.
env
.
UNI_INPUT_DIR
,
UNI_MP_PLUGIN_MAIN
)
if
(
UNI_MP_PLUGIN_MAIN
&&
!
fs
.
pathExistsSync
(
mainFilePath
))
{
console
.
log
()
console
.
error
(
uniI18n
.
__
(
'
pluginUni.entryDileNoExistsCheckAfterRetry
'
,
{
0
:
UNI_MP_PLUGIN_MAIN
}))
console
.
log
()
process
.
exit
(
0
)
}
}
}
...
...
packages/vue-cli-plugin-uni/lib/mp/index.js
浏览文件 @
6e82d141
...
...
@@ -178,11 +178,12 @@ module.exports = {
{
const
globalEnv
=
process
.
env
.
UNI_PLATFORM
===
'
mp-alipay
'
?
'
my
'
:
'
wx
'
;
[].
concat
(
process
.
env
.
UNI_MP_PLUGIN
?
process
.
env
.
UNI_MP_PLUGIN_MAIN
:
JSON
.
parse
(
process
.
env
.
UNI_MP_PLUGIN_EXPORT
))
.
forEach
(
fileName
=>
addToUniEntry
(
fileName
))
beforeCode
+=
`
${
globalEnv
}
.__webpack_require_
${(
process
.
env
.
UNI_MP_PLUGIN
||
'
UNI_MP_PLUGIN
'
).
replace
(
/-/g
,
'
_
'
)}
__ = __webpack_require__;`
[].
concat
(
process
.
env
.
UNI_MP_PLUGIN
?
process
.
env
.
UNI_MP_PLUGIN_MAIN
:
JSON
.
parse
(
process
.
env
.
UNI_MP_PLUGIN_EXPORT
)
).
forEach
(
fileName
=>
addToUniEntry
(
fileName
))
beforeCode
+=
`
${
globalEnv
}
.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;`
}
const
alias
=
{
// 仅 mp-weixin
...
...
@@ -319,4 +320,4 @@ module.exports = {
webpackConfig
.
plugins
.
delete
(
'
preload
'
)
webpackConfig
.
plugins
.
delete
(
'
prefetch
'
)
}
}
}
packages/webpack-uni-mp-loader/lib/plugin/index-new.js
浏览文件 @
6e82d141
...
...
@@ -76,22 +76,22 @@ function addMPPluginRequire (compilation) {
const
needProcess
=
process
.
env
.
UNI_MP_PLUGIN
?
name
===
UNI_MP_PLUGIN_MAIN
:
UNI_MP_PLUGIN_EXPORT
.
includes
(
name
)
if
(
needProcess
)
{
const
modules
=
compilation
.
modules
const
orignalSource
=
compilation
.
assets
[
name
].
source
()
const
globalEnv
=
process
.
env
.
UNI_PLATFORM
===
'
mp-alipay
'
?
'
my
'
:
'
wx
'
;
const
filePath
=
normalizePath
(
path
.
resolve
(
process
.
env
.
UNI_INPUT_DIR
,
name
))
const
uniModuleId
=
modules
.
find
(
module
=>
module
.
resource
&&
normalizePath
(
module
.
resource
)
===
filePath
).
id
const
newlineIndex
=
orignalSource
.
lastIndexOf
(
'
\n
'
)
const
newlineIndex
=
compilation
.
assets
[
name
].
source
().
lastIndexOf
(
'
\n
'
)
const
source
=
compilation
.
assets
[
name
].
source
().
substring
(
0
,
newlineIndex
)
+
`\nmodule.exports =
${
process
.
env
.
UNI_PLATFORM
===
'
mp-alipay
'
?
'
my
'
:
'
wx
'
}
.__webpack_require_
${(
process
.
env
.
UNI_MP_PLUGIN
||
'
UNI_MP_PLUGIN
'
).
replace
(
/-/g
,
'
_
'
)}
__('
${
uniModuleId
}
');\n`
+
compilation
.
assets
[
name
].
source
().
substring
(
newlineIndex
+
1
)
const
source
=
orignalSource
.
substring
(
0
,
newlineIndex
)
+
`\nmodule.exports =
${
globalEnv
}
.__webpack_require_UNI_MP_PLUGIN__('
${
uniModuleId
}
');\n`
+
orignalSource
.
substring
(
newlineIndex
+
1
)
compilation
.
assets
[
name
]
=
{
size
()
{
size
()
{
return
Buffer
.
byteLength
(
source
,
'
utf8
'
)
},
source
()
{
source
()
{
return
source
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录