@player-tools/xlr-converters 0.3.0 → 0.3.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +3 -3
- package/src/ts-to-xlr.ts +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -305,7 +305,7 @@ class TsConverter {
|
|
|
305
305
|
}
|
|
306
306
|
if (ts__default["default"].isTypeQueryNode(node)) {
|
|
307
307
|
const effectiveType = this.context.typeChecker.getTypeAtLocation(node);
|
|
308
|
-
const syntheticType = this.context.typeChecker.typeToTypeNode(effectiveType, node,
|
|
308
|
+
const syntheticType = this.context.typeChecker.typeToTypeNode(effectiveType, node, ts__default["default"].NodeBuilderFlags.NoTruncation);
|
|
309
309
|
if (syntheticType) {
|
|
310
310
|
return this.tsNodeToType(syntheticType);
|
|
311
311
|
}
|
package/dist/index.esm.js
CHANGED
|
@@ -297,7 +297,7 @@ class TsConverter {
|
|
|
297
297
|
}
|
|
298
298
|
if (ts.isTypeQueryNode(node)) {
|
|
299
299
|
const effectiveType = this.context.typeChecker.getTypeAtLocation(node);
|
|
300
|
-
const syntheticType = this.context.typeChecker.typeToTypeNode(effectiveType, node,
|
|
300
|
+
const syntheticType = this.context.typeChecker.typeToTypeNode(effectiveType, node, ts.NodeBuilderFlags.NoTruncation);
|
|
301
301
|
if (syntheticType) {
|
|
302
302
|
return this.tsNodeToType(syntheticType);
|
|
303
303
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-tools/xlr-converters",
|
|
3
|
-
"version": "0.3.0",
|
|
3
|
+
"version": "0.3.1-next.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"typescript": "4.8.4"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@player-tools/xlr": "0.3.0",
|
|
13
|
-
"@player-tools/xlr-utils": "0.3.0",
|
|
12
|
+
"@player-tools/xlr": "0.3.1-next.0",
|
|
13
|
+
"@player-tools/xlr-utils": "0.3.1-next.0",
|
|
14
14
|
"@babel/runtime": "7.15.4"
|
|
15
15
|
},
|
|
16
16
|
"main": "dist/index.cjs.js",
|
package/src/ts-to-xlr.ts
CHANGED