@openfairygui/cli 0.2.0-alpha.4 → 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 +1 -1
- package/package.json +4 -4
- package/src/cli.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -24543,7 +24543,7 @@ function readPackageVersion() {
|
|
|
24543
24543
|
const pkg = require("../package.json");
|
|
24544
24544
|
if (typeof pkg.version === "string" && pkg.version.length > 0) return pkg.version;
|
|
24545
24545
|
} catch {}
|
|
24546
|
-
return "0.2.0-alpha.
|
|
24546
|
+
return "0.2.0-alpha.5";
|
|
24547
24547
|
}
|
|
24548
24548
|
const PACKAGE_VERSION = readPackageVersion();
|
|
24549
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