@openfairygui/cli 0.2.0-alpha.3 → 0.2.0-alpha.5
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/cli.mjs +8 -1
- package/package.json +4 -4
- package/src/cli.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -2776,6 +2776,7 @@ var GObject = class extends ExtensibleProperty {
|
|
|
2776
2776
|
sourceHeight: 0,
|
|
2777
2777
|
initWidth: 0,
|
|
2778
2778
|
initHeight: 0,
|
|
2779
|
+
customData: "",
|
|
2779
2780
|
relations: [],
|
|
2780
2781
|
gears: new RefList()
|
|
2781
2782
|
});
|
|
@@ -2816,6 +2817,12 @@ var GObject = class extends ExtensibleProperty {
|
|
|
2816
2817
|
setInitHeight(v) {
|
|
2817
2818
|
return this.setObjectProp("initHeight", v);
|
|
2818
2819
|
}
|
|
2820
|
+
getCustomData() {
|
|
2821
|
+
return this.getObjectProp("customData");
|
|
2822
|
+
}
|
|
2823
|
+
setCustomData(v) {
|
|
2824
|
+
return this.setObjectProp("customData", v);
|
|
2825
|
+
}
|
|
2819
2826
|
/****** Relations ******/
|
|
2820
2827
|
getRelations() {
|
|
2821
2828
|
return this.getObjectProp("relations");
|
|
@@ -24536,7 +24543,7 @@ function readPackageVersion() {
|
|
|
24536
24543
|
const pkg = require("../package.json");
|
|
24537
24544
|
if (typeof pkg.version === "string" && pkg.version.length > 0) return pkg.version;
|
|
24538
24545
|
} catch {}
|
|
24539
|
-
return "0.2.0-alpha.
|
|
24546
|
+
return "0.2.0-alpha.5";
|
|
24540
24547
|
}
|
|
24541
24548
|
const PACKAGE_VERSION = readPackageVersion();
|
|
24542
24549
|
/** Resolve input to a .fairy file path. Accepts a directory or a .fairy file. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfairygui/cli",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.5",
|
|
4
4
|
"description": "FairyGUI Headless Authoring SDK — command-line interface.",
|
|
5
5
|
"author": "OpenFairyGUI Contributors",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"restore"
|
|
34
34
|
],
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@openfairygui/
|
|
37
|
-
"@openfairygui/
|
|
36
|
+
"@openfairygui/functions": "0.2.0-alpha.5",
|
|
37
|
+
"@openfairygui/core": "0.2.0-alpha.5"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@openfairygui/backend": "0.2.0-alpha.
|
|
40
|
+
"@openfairygui/backend": "0.2.0-alpha.5"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
43
|
"sharp": ">=0.33.0"
|
package/src/cli.ts
CHANGED