Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
e406957f
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
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看板
提交
e406957f
编写于
5月 29, 2023
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip(uts): compiler
上级
7353412e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
46 addition
and
1 deletion
+46
-1
packages/uni-app-uts/package.json
packages/uni-app-uts/package.json
+1
-0
packages/uni-app-uts/src/plugins/index.ts
packages/uni-app-uts/src/plugins/index.ts
+42
-1
pnpm-lock.yaml
pnpm-lock.yaml
+3
-0
未找到文件。
packages/uni-app-uts/package.json
浏览文件 @
e406957f
...
...
@@ -22,6 +22,7 @@
"@babel/parser"
:
"^7.16.4"
,
"@babel/types"
:
"^7.20.7"
,
"@dcloudio/uni-cli-shared"
:
"3.0.0-alpha-3080220230428002"
,
"@dcloudio/uni-i18n"
:
"3.0.0-alpha-3080220230428002"
,
"@dcloudio/uni-nvue-styler"
:
"3.0.0-alpha-3080220230428002"
,
"@dcloudio/uni-shared"
:
"3.0.0-alpha-3080220230428002"
,
"@rollup/pluginutils"
:
"^4.2.0"
,
...
...
packages/uni-app-uts/src/plugins/index.ts
浏览文件 @
e406957f
import
path
from
'
path
'
import
fs
from
'
fs-extra
'
import
{
UniViteCopyPluginOptions
,
UniVitePlugin
,
emptyDir
,
initI18nOptions
,
normalizeNodeModules
,
normalizePath
,
parseManifestJsonOnce
,
...
...
@@ -10,6 +13,7 @@ import {
resolveUTSCompiler
,
utsPlugins
,
}
from
'
@dcloudio/uni-cli-shared
'
import
{
compileI18nJsonStr
}
from
'
@dcloudio/uni-i18n
'
import
type
{
Plugin
}
from
'
vite
'
import
{
parseImports
,
uvueOutDir
}
from
'
./utils
'
...
...
@@ -41,7 +45,7 @@ const REMOVED_PLUGINS = [
'
vite:reporter
'
,
]
export
function
uniAppUTSPlugin
():
Plugin
{
export
function
uniAppUTSPlugin
():
UniVite
Plugin
{
const
inputDir
=
process
.
env
.
UNI_INPUT_DIR
const
outputDir
=
process
.
env
.
UNI_OUTPUT_DIR
const
mainUTS
=
resolveMainPathOnce
(
inputDir
)
...
...
@@ -58,6 +62,7 @@ export function uniAppUTSPlugin(): Plugin {
return
{
name
:
'
uni:app-uts
'
,
apply
:
'
build
'
,
uni
:
createUniOptions
(),
config
()
{
return
{
base
:
'
/
'
,
// 强制 base
...
...
@@ -173,3 +178,39 @@ export function main(app: IApp) {
}
`
}
function
createUniOptions
():
UniVitePlugin
[
'
uni
'
]
{
return
{
copyOptions
()
{
const
platform
=
process
.
env
.
UNI_PLATFORM
const
inputDir
=
process
.
env
.
UNI_INPUT_DIR
const
outputDir
=
process
.
env
.
UNI_OUTPUT_DIR
const
targets
:
UniViteCopyPluginOptions
[
'
targets
'
]
=
[]
// 自动化测试时,不启用隐私政策
if
(
!
process
.
env
.
UNI_AUTOMATOR_WS_ENDPOINT
)
{
targets
.
push
({
src
:
'
androidPrivacy.json
'
,
dest
:
outputDir
,
transform
(
source
)
{
const
options
=
initI18nOptions
(
platform
,
inputDir
,
false
,
true
)
if
(
!
options
)
{
return
}
return
compileI18nJsonStr
(
source
.
toString
(),
options
)
},
})
const
debugFilename
=
'
__nvue_debug__
'
if
(
fs
.
existsSync
(
path
.
resolve
(
inputDir
,
debugFilename
)))
{
targets
.
push
({
src
:
debugFilename
,
dest
:
outputDir
,
})
}
}
return
{
assets
:
[
'
hybrid/html/**/*
'
,
'
uni_modules/*/hybrid/html/**/*
'
],
targets
,
}
},
}
}
pnpm-lock.yaml
浏览文件 @
e406957f
...
...
@@ -366,6 +366,9 @@ importers:
'
@dcloudio/uni-cli-shared'
:
specifier
:
3.0.0-alpha-3080220230428002
version
:
link:../uni-cli-shared
'
@dcloudio/uni-i18n'
:
specifier
:
3.0.0-alpha-3080220230428002
version
:
link:../uni-i18n
'
@dcloudio/uni-nvue-styler'
:
specifier
:
3.0.0-alpha-3080220230428002
version
:
link:../uni-nvue-styler
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录