@player-tools/cli 0.5.0 → 0.5.1-next.0
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.
|
@@ -41,9 +41,7 @@ class XLRCompile extends base_command_1.BaseCommand {
|
|
|
41
41
|
console.log("");
|
|
42
42
|
console.log(chalk_1.default.red(`${log_symbols_1.default.error} Error compiling XLRs: ${e.message}`));
|
|
43
43
|
console.log(chalk_1.default.red(`${e.stack}`));
|
|
44
|
-
|
|
45
|
-
exitCode: 1,
|
|
46
|
-
};
|
|
44
|
+
this.exit(1);
|
|
47
45
|
}
|
|
48
46
|
return { exitCode: 0 };
|
|
49
47
|
}
|
|
@@ -50,7 +50,7 @@ class XLRConvert extends base_command_1.BaseCommand {
|
|
|
50
50
|
catch (e) {
|
|
51
51
|
console.log("");
|
|
52
52
|
console.log(chalk_1.default.red(`${log_symbols_1.default.error} Error exporting XLRs: ${e.message}`));
|
|
53
|
-
|
|
53
|
+
this.exit(1);
|
|
54
54
|
}
|
|
55
55
|
return { exitCode: 0 };
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-tools/cli",
|
|
3
|
-
"version": "0.5.0",
|
|
3
|
+
"version": "0.5.1-next.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -21,15 +21,19 @@
|
|
|
21
21
|
"@oclif/plugin-plugins"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@player-tools/dsl": "0.5.0",
|
|
25
|
-
"@player-tools/json-language-service": "0.5.0",
|
|
26
|
-
"@player-tools/xlr": "0.5.0",
|
|
27
|
-
"@player-tools/xlr-converters": "0.5.0",
|
|
28
|
-
"@player-tools/xlr-sdk": "0.5.0",
|
|
29
|
-
"@player-tools/xlr-utils": "0.5.0",
|
|
24
|
+
"@player-tools/dsl": "0.5.1-next.0",
|
|
25
|
+
"@player-tools/json-language-service": "0.5.1-next.0",
|
|
26
|
+
"@player-tools/xlr": "0.5.1-next.0",
|
|
27
|
+
"@player-tools/xlr-converters": "0.5.1-next.0",
|
|
28
|
+
"@player-tools/xlr-sdk": "0.5.1-next.0",
|
|
29
|
+
"@player-tools/xlr-utils": "0.5.1-next.0",
|
|
30
30
|
"react": "^18.2.0",
|
|
31
31
|
"tapable-ts": "^0.2.4",
|
|
32
32
|
"@babel/register": "^7.23.3",
|
|
33
|
+
"@babel/preset-env": "^7.23.3",
|
|
34
|
+
"@babel/preset-react": "^7.23.3",
|
|
35
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
36
|
+
"@babel/plugin-transform-react-jsx-source": "^7.23.3",
|
|
33
37
|
"@oclif/core": "1.9.0",
|
|
34
38
|
"@oclif/plugin-legacy": "^1.2.7",
|
|
35
39
|
"chalk": "^4.0.1",
|
|
@@ -50,8 +54,5 @@
|
|
|
50
54
|
"tslib": "^2.6.2"
|
|
51
55
|
},
|
|
52
56
|
"sideEffects": false,
|
|
53
|
-
"exports": {
|
|
54
|
-
"./package.json": "./package.json"
|
|
55
|
-
},
|
|
56
57
|
"peerDependencies": {}
|
|
57
58
|
}
|