dazscript-framework 0.1.13 → 0.1.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dazscript-framework",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"author": "Freddy Diaz",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"description": "",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"babel-plugin-transform-typescript-metadata": "^0.3.2",
|
|
54
54
|
"commander": "^11.1.0",
|
|
55
55
|
"cross-env": "^7.0.3",
|
|
56
|
-
"dazscript-types": "
|
|
56
|
+
"dazscript-types": "^0.2.0",
|
|
57
57
|
"glob": "^7.2.0",
|
|
58
58
|
"ts-file-parser": "^0.0.21",
|
|
59
59
|
"ts-loader": "^9.5.0",
|
|
@@ -15,7 +15,7 @@ export const setPath = (property: DzProperty, path: string) => {
|
|
|
15
15
|
* @returns The internal name of property (or its alias target), or “Unknown”.
|
|
16
16
|
*/
|
|
17
17
|
export const getName = (property: DzProperty): string => {
|
|
18
|
-
return sceneHelper.getInternalName(property)
|
|
18
|
+
return sceneHelper.getInternalName(property).valueOf()
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/**
|
package/tsconfig.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"baseUrl": "./" /* Specify the base directory to resolve non-relative module names. */,
|
|
33
33
|
"paths": {
|
|
34
34
|
"shared/*": ["src/shared/*"],
|
|
35
|
-
"@dst/*": ["node_modules/dazscript-types/*"],
|
|
35
|
+
"@dst/*": ["node_modules/dazscript-types/src/types/*"],
|
|
36
36
|
"@dsf/*": ["src/*"]
|
|
37
37
|
},
|
|
38
38
|
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
113
113
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
114
114
|
},
|
|
115
|
-
"include": ["node_modules/dazscript-types/**/*", "src/**/*"]
|
|
115
|
+
"include": ["node_modules/dazscript-types/src/types/**/*", "src/**/*"]
|
|
116
116
|
}
|