@openfairygui/cli 0.2.0-alpha.2 → 0.2.0-alpha.3

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
@@ -24536,7 +24536,7 @@ function readPackageVersion() {
24536
24536
  const pkg = require("../package.json");
24537
24537
  if (typeof pkg.version === "string" && pkg.version.length > 0) return pkg.version;
24538
24538
  } catch {}
24539
- return "0.2.0-alpha.2";
24539
+ return "0.2.0-alpha.3";
24540
24540
  }
24541
24541
  const PACKAGE_VERSION = readPackageVersion();
24542
24542
  /** 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.2",
3
+ "version": "0.2.0-alpha.3",
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.2",
37
- "@openfairygui/functions": "0.2.0-alpha.2"
36
+ "@openfairygui/core": "0.2.0-alpha.3",
37
+ "@openfairygui/functions": "0.2.0-alpha.3"
38
38
  },
39
39
  "dependencies": {
40
- "@openfairygui/backend": "0.2.0-alpha.2"
40
+ "@openfairygui/backend": "0.2.0-alpha.3"
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.2';
66
+ return '0.2.0-alpha.3';
67
67
  }
68
68
 
69
69
  const PACKAGE_VERSION = readPackageVersion();