playcademy 0.15.0 → 0.15.2
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 +12 -5
- package/dist/index.js +16 -12
- package/dist/utils.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -2317,16 +2317,23 @@ function displaySuccessMessage(context2) {
|
|
|
2317
2317
|
const stepNum = nextSteps.length + 1;
|
|
2318
2318
|
nextSteps.push(`${stepNum}. Customize API routes: <${context2.apiDirectory}>`);
|
|
2319
2319
|
}
|
|
2320
|
-
if (context2.timebackConfig) {
|
|
2321
|
-
const stepNum = nextSteps.length + 1;
|
|
2322
|
-
nextSteps.push(`${stepNum}. Set up TimeBack: \`playcademy timeback setup\``);
|
|
2323
|
-
}
|
|
2324
2320
|
const deployStep = nextSteps.length + 1;
|
|
2325
2321
|
nextSteps.push(`${deployStep}. Deploy: \`playcademy deploy\``);
|
|
2326
2322
|
nextSteps.push("");
|
|
2327
2323
|
nextSteps.push(`Learn more: <<${DOCS_URL}>>`);
|
|
2328
2324
|
logger.admonition("tip", "Next Steps", nextSteps);
|
|
2329
2325
|
logger.newLine();
|
|
2326
|
+
if (context2.timebackConfig) {
|
|
2327
|
+
logger.admonition("note", "TimeBack Integration", [
|
|
2328
|
+
"Your config file is configured for TimeBack integration",
|
|
2329
|
+
"",
|
|
2330
|
+
" \u2192 Run `playcademy timeback setup` to create resources",
|
|
2331
|
+
" \u2192 Then verify with `playcademy timeback verify`",
|
|
2332
|
+
"",
|
|
2333
|
+
"Learn more: <<https://docs.playcademy.net/timeback>>"
|
|
2334
|
+
]);
|
|
2335
|
+
logger.newLine();
|
|
2336
|
+
}
|
|
2330
2337
|
}
|
|
2331
2338
|
|
|
2332
2339
|
// src/lib/init/engine/fetch.ts
|
|
@@ -2958,7 +2965,7 @@ import { join as join13 } from "path";
|
|
|
2958
2965
|
// package.json with { type: 'json' }
|
|
2959
2966
|
var package_default2 = {
|
|
2960
2967
|
name: "playcademy",
|
|
2961
|
-
version: "0.
|
|
2968
|
+
version: "0.15.1",
|
|
2962
2969
|
type: "module",
|
|
2963
2970
|
exports: {
|
|
2964
2971
|
".": {
|
package/dist/index.js
CHANGED
|
@@ -3960,7 +3960,7 @@ import { join as join12 } from "path";
|
|
|
3960
3960
|
// package.json with { type: 'json' }
|
|
3961
3961
|
var package_default2 = {
|
|
3962
3962
|
name: "playcademy",
|
|
3963
|
-
version: "0.
|
|
3963
|
+
version: "0.15.1",
|
|
3964
3964
|
type: "module",
|
|
3965
3965
|
exports: {
|
|
3966
3966
|
".": {
|
|
@@ -4455,9 +4455,8 @@ function displayConfigSuccess(timebackConfig) {
|
|
|
4455
4455
|
if (timebackConfig) {
|
|
4456
4456
|
logger.admonition("note", "TimeBack Integration", [
|
|
4457
4457
|
"Your config file is configured for TimeBack integration",
|
|
4458
|
-
"Before deploying, you must set up the TimeBack resources:",
|
|
4459
4458
|
"",
|
|
4460
|
-
" \u2192 Run `playcademy timeback setup`",
|
|
4459
|
+
" \u2192 Run `playcademy timeback setup` to create resources",
|
|
4461
4460
|
" \u2192 Then verify with `playcademy timeback verify`",
|
|
4462
4461
|
"",
|
|
4463
4462
|
"Learn more: <<https://docs.playcademy.net/timeback>>"
|
|
@@ -4494,16 +4493,23 @@ function displaySuccessMessage(context2) {
|
|
|
4494
4493
|
const stepNum = nextSteps.length + 1;
|
|
4495
4494
|
nextSteps.push(`${stepNum}. Customize API routes: <${context2.apiDirectory}>`);
|
|
4496
4495
|
}
|
|
4497
|
-
if (context2.timebackConfig) {
|
|
4498
|
-
const stepNum = nextSteps.length + 1;
|
|
4499
|
-
nextSteps.push(`${stepNum}. Set up TimeBack: \`playcademy timeback setup\``);
|
|
4500
|
-
}
|
|
4501
4496
|
const deployStep = nextSteps.length + 1;
|
|
4502
4497
|
nextSteps.push(`${deployStep}. Deploy: \`playcademy deploy\``);
|
|
4503
4498
|
nextSteps.push("");
|
|
4504
4499
|
nextSteps.push(`Learn more: <<${DOCS_URL}>>`);
|
|
4505
4500
|
logger.admonition("tip", "Next Steps", nextSteps);
|
|
4506
4501
|
logger.newLine();
|
|
4502
|
+
if (context2.timebackConfig) {
|
|
4503
|
+
logger.admonition("note", "TimeBack Integration", [
|
|
4504
|
+
"Your config file is configured for TimeBack integration",
|
|
4505
|
+
"",
|
|
4506
|
+
" \u2192 Run `playcademy timeback setup` to create resources",
|
|
4507
|
+
" \u2192 Then verify with `playcademy timeback verify`",
|
|
4508
|
+
"",
|
|
4509
|
+
"Learn more: <<https://docs.playcademy.net/timeback>>"
|
|
4510
|
+
]);
|
|
4511
|
+
logger.newLine();
|
|
4512
|
+
}
|
|
4507
4513
|
}
|
|
4508
4514
|
|
|
4509
4515
|
// src/lib/init/kv.ts
|
|
@@ -10603,7 +10609,7 @@ var getStatusCommand = new Command13("status").description("Check your developer
|
|
|
10603
10609
|
});
|
|
10604
10610
|
|
|
10605
10611
|
// package.json
|
|
10606
|
-
var version2 = "0.
|
|
10612
|
+
var version2 = "0.15.1";
|
|
10607
10613
|
|
|
10608
10614
|
// src/commands/dev/server.ts
|
|
10609
10615
|
function setupCleanupHandlers(workspace, getServer) {
|
|
@@ -13986,8 +13992,7 @@ var initCommand2 = new Command33("init").description("Add TimeBack integration t
|
|
|
13986
13992
|
logger.success("TimeBack integration added!");
|
|
13987
13993
|
logger.newLine();
|
|
13988
13994
|
logger.admonition("tip", "Next Steps", [
|
|
13989
|
-
"
|
|
13990
|
-
"2. Deploy your project: `playcademy deploy`",
|
|
13995
|
+
"Set up TimeBack resources: `playcademy timeback setup`",
|
|
13991
13996
|
"",
|
|
13992
13997
|
"Learn more: <<https://docs.playcademy.net/timeback>>"
|
|
13993
13998
|
]);
|
|
@@ -14072,8 +14077,7 @@ var setupCommand = new Command34("setup").description("Set up TimeBack integrati
|
|
|
14072
14077
|
logger.newLine();
|
|
14073
14078
|
}
|
|
14074
14079
|
logger.admonition("tip", "Next Steps", [
|
|
14075
|
-
"
|
|
14076
|
-
"2. Deploy your project with `playcademy deploy`",
|
|
14080
|
+
"Run `playcademy timeback verify` to verify the setup",
|
|
14077
14081
|
"",
|
|
14078
14082
|
"Learn more: <<https://docs.playcademy.net/timeback>>"
|
|
14079
14083
|
]);
|
package/dist/utils.js
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "playcademy",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@inquirer/prompts": "^7.8.6",
|
|
53
|
-
"@playcademy/sdk": "0.2.
|
|
53
|
+
"@playcademy/sdk": "0.2.5",
|
|
54
54
|
"chokidar": "^4.0.3",
|
|
55
55
|
"colorette": "^2.0.20",
|
|
56
56
|
"commander": "^14.0.1",
|