Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
d6ba5bbe
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,发现更多精彩内容 >>
提交
d6ba5bbe
编写于
11月 20, 2019
作者:
fxy060608
浏览文件
操作
浏览文件
下载
差异文件
feat(v3): add cache
上级
93bb98b1
4b7ee1f4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
43 addition
and
21 deletion
+43
-21
packages/vue-cli-plugin-uni/lib/app-plus/index.js
packages/vue-cli-plugin-uni/lib/app-plus/index.js
+41
-18
packages/vue-cli-plugin-uni/lib/h5/index.js
packages/vue-cli-plugin-uni/lib/h5/index.js
+1
-1
packages/vue-cli-plugin-uni/lib/vue-loader.js
packages/vue-cli-plugin-uni/lib/vue-loader.js
+1
-2
未找到文件。
packages/vue-cli-plugin-uni/lib/app-plus/index.js
浏览文件 @
d6ba5bbe
...
...
@@ -7,7 +7,8 @@ const {
}
=
require
(
'
@dcloudio/uni-cli-shared
'
)
const
{
isUnaryTag
isUnaryTag
,
getPartialIdentifier
}
=
require
(
'
../util
'
)
function
getProvides
()
{
...
...
@@ -79,8 +80,8 @@ const v3 = {
externals
:
{
vue
:
'
Vue
'
},
entry
()
{
return
entry
entry
()
{
return
entry
},
output
:
{
filename
:
'
[name].js
'
,
...
...
@@ -127,18 +128,30 @@ const v3 = {
]
}
},
chainWebpack
(
webpackConfig
,
vueOptions
)
{
chainWebpack
(
webpackConfig
,
vueOptions
,
api
)
{
webpackConfig
.
entryPoints
.
delete
(
'
app
'
)
const
isAppService
=
!!
vueOptions
.
pluginOptions
[
'
uni-app-plus
'
][
'
service
'
]
const
isAppView
=
!!
vueOptions
.
pluginOptions
[
'
uni-app-plus
'
][
'
view
'
]
const
compilerOptions
=
{
const
cacheConfig
=
{
cacheDirectory
:
false
,
cacheIdentifier
:
false
}
if
(
process
.
env
.
UNI_USING_CACHE
)
{
Object
.
assign
(
cacheConfig
,
api
.
genCacheConfig
(
'
vue-template-compiler/
'
+
process
.
env
.
UNI_PLATFORM
,
getPartialIdentifier
()
))
}
const
compilerOptions
=
Object
.
assign
({
isUnaryTag
,
preserveWhitespace
:
false
,
service
:
isAppService
,
view
:
isAppView
}
}
,
cacheConfig
)
// disable vue cache-loader
webpackConfig
.
module
...
...
@@ -150,20 +163,30 @@ const v3 = {
isAppService
,
isAppView
,
compiler
:
getPlatformCompiler
(),
compilerOptions
,
cacheDirectory
:
false
,
cacheIdentifier
:
false
compilerOptions
}))
.
end
()
.
use
(
'
uniapp-custom-block-loader
'
)
.
loader
(
require
.
resolve
(
'
@dcloudio/vue-cli-plugin-uni/packages/webpack-custom-block-loader
'
))
.
options
({
compiler
:
getPlatformCompiler
()
})
.
end
()
.
uses
.
delete
(
'
cache-loader
'
)
.
end
()
.
use
(
'
uniapp-custom-block-loader
'
)
.
loader
(
require
.
resolve
(
'
@dcloudio/vue-cli-plugin-uni/packages/webpack-custom-block-loader
'
))
.
options
({
compiler
:
getPlatformCompiler
()
})
// 是否启用 cache
if
(
process
.
env
.
UNI_USING_CACHE
)
{
webpackConfig
.
module
.
rule
(
'
vue
'
)
.
use
(
'
cache-loader
'
)
.
tap
(
options
=>
Object
.
assign
(
options
,
api
.
genCacheConfig
(
'
vue-loader/
'
+
process
.
env
.
UNI_PLATFORM
,
getPartialIdentifier
()
)))
}
else
{
webpackConfig
.
module
.
rule
(
'
vue
'
)
.
uses
.
delete
(
'
cache-loader
'
)
}
if
(
isAppView
)
{
if
(
process
.
env
.
NODE_ENV
===
'
production
'
)
{
...
...
packages/vue-cli-plugin-uni/lib/h5/index.js
浏览文件 @
d6ba5bbe
...
...
@@ -105,7 +105,7 @@ module.exports = {
},
{
resourceQuery
:
/vue&type=template/
,
use
:
[{
loader
:
resolve
(
'
packages/
h5-vue-template-loader
'
)
loader
:
resolve
(
'
packages/
webpack-uni-app-loader/filter-modules-template.js
'
)
}]
},
{
resourceQuery
:
[
/lang=wxs/
,
/blockType=wxs/
],
...
...
packages/vue-cli-plugin-uni/lib/vue-loader.js
浏览文件 @
d6ba5bbe
...
...
@@ -14,7 +14,6 @@ module.exports = function modifyVueLoader (webpackConfig, compilerOptions, api)
cacheDirectory
:
false
,
cacheIdentifier
:
false
}
const
partialIdentifier
=
{}
if
(
process
.
env
.
UNI_USING_CACHE
)
{
Object
.
assign
(
cacheConfig
,
api
.
genCacheConfig
(
...
...
@@ -60,7 +59,7 @@ module.exports = function modifyVueLoader (webpackConfig, compilerOptions, api)
.
use
(
'
cache-loader
'
)
.
tap
(
options
=>
Object
.
assign
(
options
,
api
.
genCacheConfig
(
'
vue-loader/
'
+
process
.
env
.
UNI_PLATFORM
,
partialIdentifier
getPartialIdentifier
()
)))
}
else
{
webpackConfig
.
module
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录