зеркало из https://github.com/microsoft/ts-gyb.git
fix: remove annoying logs (#120)
This commit is contained in:
Родитель
6cd972e484
Коммит
b39559a7d2
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "ts-gyb",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ts-gyb",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"chalk": "^4.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ts-gyb",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "Generate Native API based on TS interface",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -245,5 +245,13 @@ function recursiveVisitMembersType(
|
|||
return;
|
||||
}
|
||||
|
||||
console.log(`Unhandled value type ${JSON.stringify(valueType)}`);
|
||||
if (valueType.kind === ValueTypeKind.basicType) {
|
||||
// string, boolean, etc.
|
||||
return;
|
||||
}
|
||||
if (valueType.kind === ValueTypeKind.predefinedType) {
|
||||
// CodeGen_Int, etc.
|
||||
return;
|
||||
}
|
||||
throw Error(`Unhandled value type ${JSON.stringify(valueType)}`);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче