Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
5e6c5bd8
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
750
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5e6c5bd8
编写于
8月 24, 2019
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(cli): wxsCallMethods
上级
fd00be4d
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
46 addition
and
10 deletion
+46
-10
packages/vue-cli-plugin-uni/lib/h5/compiler-options.js
packages/vue-cli-plugin-uni/lib/h5/compiler-options.js
+5
-5
packages/vue-cli-plugin-uni/lib/h5/index.js
packages/vue-cli-plugin-uni/lib/h5/index.js
+3
-3
packages/vue-cli-plugin-uni/package.json
packages/vue-cli-plugin-uni/package.json
+1
-1
packages/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js
...li-plugin-uni/packages/webpack-uni-filter-loader/index.js
+37
-1
未找到文件。
packages/vue-cli-plugin-uni/lib/h5/compiler-options.js
浏览文件 @
5e6c5bd8
...
...
@@ -4,7 +4,7 @@ const {
const
simplePathRE
=
/^
[
A-Za-z_$
][\w
$
]
*
(?:\.[
A-Za-z_$
][\w
$
]
*|
\[
'
[^
'
]
*
?
']|
\[
"
[^
"
]
*
?
"]|
\[\d
+]|
\[[
A-Za-z_$
][\w
$
]
*]
)
*$/
function
processEvent
(
expr
,
filterModules
)
{
function
processEvent
(
expr
,
filterModules
)
{
const
isMethodPath
=
simplePathRE
.
test
(
expr
)
if
(
isMethodPath
)
{
if
(
filterModules
.
find
(
name
=>
expr
.
indexOf
(
name
+
'
.
'
)
===
0
))
{
...
...
@@ -22,7 +22,7 @@ ${expr}
`
}
function
hasOwn
(
obj
,
key
)
{
function
hasOwn
(
obj
,
key
)
{
return
hasOwnProperty
.
call
(
obj
,
key
)
}
...
...
@@ -33,7 +33,7 @@ const deprecated = {
}
}
function
addTag
(
tag
)
{
function
addTag
(
tag
)
{
if
(
!
process
.
UNI_TAGS
)
{
process
.
UNI_TAGS
=
new
Set
()
}
...
...
@@ -43,7 +43,7 @@ function addTag(tag) {
module
.
exports
=
{
preserveWhitespace
:
false
,
modules
:
[
require
(
'
../format-text
'
),
{
preTransformNode
(
el
,
{
preTransformNode
(
el
,
{
warn
})
{
if
(
el
.
tag
.
indexOf
(
'
v-uni-
'
)
===
0
)
{
...
...
@@ -53,7 +53,7 @@ module.exports = {
el
.
tag
=
'
v-uni-
'
+
el
.
tag
}
},
postTransformNode
(
el
,
{
postTransformNode
(
el
,
{
warn
,
filterModules
})
{
...
...
packages/vue-cli-plugin-uni/lib/h5/index.js
浏览文件 @
5e6c5bd8
...
...
@@ -10,7 +10,7 @@ const {
const
WebpackHtmlAppendPlugin
=
require
(
'
../../packages/webpack-html-append-plugin
'
)
function
resolve
(
dir
)
{
function
resolve
(
dir
)
{
return
path
.
resolve
(
__dirname
,
'
../../
'
,
dir
)
}
...
...
@@ -61,7 +61,7 @@ if (devServer && Object.keys(devServer).length) {
module
.
exports
=
{
vueConfig
,
webpackConfig
(
webpackConfig
)
{
webpackConfig
(
webpackConfig
)
{
return
{
devtool
:
process
.
env
.
NODE_ENV
===
'
production
'
?
false
:
'
source-map
'
,
resolve
:
{
...
...
@@ -100,7 +100,7 @@ module.exports = {
plugins
}
},
chainWebpack
(
webpackConfig
)
{
chainWebpack
(
webpackConfig
)
{
webpackConfig
.
plugins
.
delete
(
'
copy
'
)
if
(
!
process
.
env
.
UNI_OPT_PREFETCH
)
{
...
...
packages/vue-cli-plugin-uni/package.json
浏览文件 @
5e6c5bd8
{
"name"
:
"@dcloudio/vue-cli-plugin-uni"
,
"version"
:
"0.9.52
8
"
,
"version"
:
"0.9.52
9
"
,
"description"
:
"uni-app plugin for vue-cli 3"
,
"main"
:
"index.js"
,
"scripts"
:
{
...
...
packages/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js
浏览文件 @
5e6c5bd8
const
path
=
require
(
'
path
'
)
const
loaderUtils
=
require
(
'
loader-utils
'
)
const
t
=
require
(
'
@babel/types
'
)
const
parser
=
require
(
'
@babel/parser
'
)
const
traverse
=
require
(
'
@babel/traverse
'
).
default
const
{
normalizeNodeModules
}
=
require
(
'
@dcloudio/uni-cli-shared/lib/platform
'
)
...
...
@@ -18,10 +24,40 @@ module.exports = function(source, map) {
map
)
}
else
{
// mp
const
callMethods
=
new
Set
()
if
(
source
.
indexOf
(
'
callMethod
'
)
!==
-
1
)
{
traverse
(
parser
.
parse
(
source
,
{
sourceType
:
'
module
'
}),
{
MemberExpression
(
path
,
state
)
{
const
property
=
path
.
node
.
property
const
parentNode
=
path
.
parent
if
(
(
property
.
name
===
'
callMethod
'
||
property
.
value
===
'
callMethod
'
)
&&
t
.
isCallExpression
(
parentNode
)
&&
t
.
isLiteral
(
parentNode
.
arguments
[
0
])
)
{
callMethods
.
add
(
parentNode
.
arguments
[
0
].
value
)
}
}
})
}
if
(
params
.
issuerPath
)
{
const
resourcePath
=
normalizeNodeModules
(
path
.
relative
(
process
.
env
.
UNI_INPUT_DIR
,
this
.
resourcePath
))
this
.
emitFile
(
resourcePath
,
source
)
}
this
.
callback
(
null
,
`export default {}`
,
map
)
this
.
callback
(
null
,
`export default function (Component) {
if(!Component.options.wxsCallMethods){
Component.options.wxsCallMethods = []
}
${[...
callMethods
].
map
(
method
=>
{
return
"
Component.options.wxsCallMethods.push('
"
+
method
+
"
')
"
}).
join
(
'
\n
'
)}
}`
,
map
)
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录