playcademy 0.16.16 → 0.16.17
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.js +1 -1
- package/dist/index.js +7 -3
- package/dist/utils.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1673,7 +1673,11 @@ function logAndExit(error, options = {}) {
|
|
|
1673
1673
|
logger.error(fullMessage);
|
|
1674
1674
|
if (process.env.DEBUG && error instanceof ApiError2 && error.details) {
|
|
1675
1675
|
process.stderr.write("\n");
|
|
1676
|
-
|
|
1676
|
+
const json = JSON.stringify(error.details, null, 2);
|
|
1677
|
+
for (const line of json.split("\n")) {
|
|
1678
|
+
process.stderr.write(` ${line}
|
|
1679
|
+
`);
|
|
1680
|
+
}
|
|
1677
1681
|
}
|
|
1678
1682
|
process.stderr.write("\n");
|
|
1679
1683
|
process.exit(code);
|
|
@@ -4298,7 +4302,7 @@ import { join as join13 } from "path";
|
|
|
4298
4302
|
// package.json with { type: 'json' }
|
|
4299
4303
|
var package_default2 = {
|
|
4300
4304
|
name: "playcademy",
|
|
4301
|
-
version: "0.16.
|
|
4305
|
+
version: "0.16.16",
|
|
4302
4306
|
type: "module",
|
|
4303
4307
|
exports: {
|
|
4304
4308
|
".": {
|
|
@@ -11570,7 +11574,7 @@ var getStatusCommand = new Command13("status").description("Check your developer
|
|
|
11570
11574
|
});
|
|
11571
11575
|
|
|
11572
11576
|
// package.json
|
|
11573
|
-
var version2 = "0.16.
|
|
11577
|
+
var version2 = "0.16.16";
|
|
11574
11578
|
|
|
11575
11579
|
// src/commands/dev/server.ts
|
|
11576
11580
|
function setupCleanupHandlers(workspace, getServer) {
|
package/dist/utils.js
CHANGED
package/dist/version.js
CHANGED