Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
cba37d2e
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看板
提交
cba37d2e
编写于
3月 15, 2023
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip(uts): compiler
上级
6bc41845
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
17 addition
and
12 deletion
+17
-12
packages/uni-mp-lark/dist/uni.compiler.js
packages/uni-mp-lark/dist/uni.compiler.js
+2
-1
packages/uni-mp-toutiao/dist/uni.compiler.js
packages/uni-mp-toutiao/dist/uni.compiler.js
+1
-3
packages/uni-uts-v1/__tests__/code.spec.ts
packages/uni-uts-v1/__tests__/code.spec.ts
+3
-0
packages/uni-uts-v1/src/code.ts
packages/uni-uts-v1/src/code.ts
+10
-8
packages/uni-uts-v1/src/index.ts
packages/uni-uts-v1/src/index.ts
+1
-0
未找到文件。
packages/uni-mp-lark/dist/uni.compiler.js
浏览文件 @
cba37d2e
...
...
@@ -62,6 +62,7 @@ function transformSwiper(node) {
}
}
const
customElements
=
[
'
aweme-data
'
];
const
projectConfigFilename
=
'
project.config.json
'
;
const
nodeTransforms
=
[
uniCliShared
.
transformRef
,
...
...
@@ -119,7 +120,7 @@ const options = {
config
:
[
'
project.tt.json
'
],
source
,
},
template
:
Object
.
assign
(
Object
.
assign
({},
miniProgram
),
{
filter
:
{
template
:
Object
.
assign
(
Object
.
assign
({},
miniProgram
),
{
customElements
,
filter
:
{
extname
:
'
.sjs
'
,
lang
:
'
sjs
'
,
generate
(
filter
,
filename
)
{
...
...
packages/uni-mp-toutiao/dist/uni.compiler.js
浏览文件 @
cba37d2e
...
...
@@ -62,9 +62,7 @@ function transformSwiper(node) {
}
}
const
customElements
=
[
'
aweme-data
'
];
const
customElements
=
[
'
aweme-data
'
];
const
projectConfigFilename
=
'
project.config.json
'
;
const
nodeTransforms
=
[
uniCliShared
.
transformRef
,
...
...
packages/uni-uts-v1/__tests__/code.spec.ts
浏览文件 @
cba37d2e
...
...
@@ -2,6 +2,7 @@ import { resolve } from 'path'
import
{
FORMATS
,
genProxyCode
}
from
'
../src/code
'
import
{
ERR_MSG_PLACEHOLDER
}
from
'
../src/utils
'
const
inputDir
=
resolve
(
__dirname
,
'
examples/uts
'
)
const
pluginDir
=
resolve
(
__dirname
,
'
examples/uts/utssdk/test-uts
'
)
describe
(
'
code
'
,
()
=>
{
...
...
@@ -17,6 +18,7 @@ describe('code', () => {
namespace
:
'
uts.sdk.testUTS
'
,
extname
:
'
.uts
'
,
androidComponents
:
{
TestUTS
:
''
},
inputDir
,
})
).
replace
(
ERR_MSG_PLACEHOLDER
,
''
)
).
toMatchSnapshot
()
...
...
@@ -33,6 +35,7 @@ describe('code', () => {
format
:
FORMATS
.
CJS
,
pluginRelativeDir
:
'
utssdk/test-uts
'
,
androidComponents
:
{
TestUTS
:
''
},
inputDir
,
})
).
replace
(
ERR_MSG_PLACEHOLDER
,
''
)
).
toMatchSnapshot
()
...
...
packages/uni-uts-v1/src/code.ts
浏览文件 @
cba37d2e
...
...
@@ -51,6 +51,7 @@ interface GenProxyCodeOptions {
androidComponents
?:
Record
<
string
,
string
>
iosComponents
?:
Record
<
string
,
string
>
format
?:
FORMATS
inputDir
?:
string
pluginRelativeDir
?:
string
moduleName
?:
string
moduleType
?:
string
...
...
@@ -63,11 +64,10 @@ export async function genProxyCode(
options
:
GenProxyCodeOptions
)
{
const
{
name
,
is_uni_modules
,
format
,
moduleName
,
moduleType
}
=
options
options
.
inputDir
=
options
.
inputDir
||
process
.
env
.
UNI_INPUT_DIR
if
(
!
options
.
meta
)
{
options
.
meta
=
{
exports
:
{},
types
:
{}
}
}
options
.
types
=
await
parseInterfaceTypes
(
module
,
options
)
options
.
meta
!
.
types
=
parseMetaTypes
(
options
.
types
)
return
`
...
...
@@ -294,11 +294,11 @@ async function parseInterfaceTypes(
let
ast
:
Module
|
null
=
null
try
{
ast
=
await
parse
(
fs
.
readFileSync
(
interfaceFilename
,
'
utf8
'
),
{
filename
:
relative
(
interfaceFilename
,
process
.
env
.
UNI_INPUT_DIR
),
filename
:
relative
(
interfaceFilename
,
options
.
inputDir
!
),
noColor
:
!
isColorSupported
(),
})
}
catch
(
e
)
{
console
.
error
(
parseUTSSyntaxError
(
e
,
process
.
env
.
UNI_INPUT_DIR
))
console
.
error
(
parseUTSSyntaxError
(
e
,
options
.
inputDir
!
))
}
const
classTypes
:
string
[]
=
[]
const
fnTypes
:
Record
<
string
,
Param
[]
>
=
{}
...
...
@@ -455,7 +455,8 @@ async function parseFile(
fs
.
readFileSync
(
filename
,
'
utf8
'
),
options
.
namespace
,
options
.
types
!
,
filename
filename
,
options
.
inputDir
!
)
}
return
[]
...
...
@@ -465,14 +466,15 @@ async function parseCode(
code
:
string
,
namespace
:
string
,
types
:
Types
,
filename
:
string
filename
:
string
,
inputDir
:
string
):
Promise
<
ProxyDecl
[]
>
{
// 懒加载 uts 编译器
// eslint-disable-next-line no-restricted-globals
const
{
parse
}
=
require
(
'
@dcloudio/uts
'
)
try
{
const
ast
=
await
parse
(
code
,
{
filename
:
relative
(
filename
,
process
.
env
.
UNI_INPUT_DIR
),
filename
:
relative
(
filename
,
inputDir
),
noColor
:
!
isColorSupported
(),
})
return
parseAst
(
...
...
@@ -481,7 +483,7 @@ async function parseCode(
types
)
}
catch
(
e
:
any
)
{
console
.
error
(
parseUTSSyntaxError
(
e
,
process
.
env
.
UNI_INPUT_DIR
))
console
.
error
(
parseUTSSyntaxError
(
e
,
inputDir
))
}
return
[]
}
...
...
packages/uni-uts-v1/src/index.ts
浏览文件 @
cba37d2e
...
...
@@ -140,6 +140,7 @@ export async function compile(
require
(
join
(
pluginDir
,
'
package.json
'
)).
displayName
||
pkg
.
id
,
moduleType
:
process
.
env
.
UNI_UTS_MODULE_TYPE
||
''
,
meta
,
inputDir
,
},
pkg
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录