@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 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.3";
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",
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/core": "0.2.0-alpha.3",
37
- "@openfairygui/functions": "0.2.0-alpha.3"
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.3"
40
+ "@openfairygui/backend": "0.2.0-alpha.5"
41
41
  },
42
42
  "optionalDependencies": {
43
43
  "sharp": ">=0.33.0"
package/src/cli.ts CHANGED
@@ -63,7 +63,7 @@ function readPackageVersion(): string {
63
63
  } catch {
64
64
  // Keep the CLI usable when executed from a bundled artifact missing package.json.
65
65
  }
66
- return '0.2.0-alpha.3';
66
+ return '0.2.0-alpha.5';
67
67
  }
68
68
 
69
69
  const PACKAGE_VERSION = readPackageVersion();