@playcademy/sandbox 0.1.4 → 0.1.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.js CHANGED
@@ -83909,7 +83909,7 @@ var logger = (fn = console.log) => {
83909
83909
  // package.json
83910
83910
  var package_default = {
83911
83911
  name: "@playcademy/sandbox",
83912
- version: "0.1.3",
83912
+ version: "0.1.4",
83913
83913
  description: "Local development server for Playcademy game development",
83914
83914
  type: "module",
83915
83915
  exports: {
@@ -129575,14 +129575,11 @@ function cleanupServerInfo(type, projectRoot, pid) {
129575
129575
 
129576
129576
  // src/cli.ts
129577
129577
  var program2 = new Command;
129578
- program2.name("playcademy-sandbox").description("Local development server for Playcademy game development").version("0.1.0").option("-p, --port <number>", "Port to run the server on", "4321").option("-v, --verbose", "Enable verbose logging", false).option("--project-name <name>", "Name of the current project").option("--project-slug <slug>", "Slug of the current project").option("--realtime", "Enable the realtime server", false).option("--realtime-port <number>", "Port for the realtime server (defaults to main port + 1)").option("--no-seed", "Do not seed the database with demo data").option("--timeback-local", "Use local TimeBack instance").option("--timeback-oneroster-url <url>", "TimeBack OneRoster API URL").option("--timeback-caliper-url <url>", "TimeBack Caliper API URL").option("--timeback-course-id <id>", "TimeBack course ID for seeding").option("--timeback-student-id <id>", "TimeBack student ID for demo user").action(async (options) => {
129578
+ program2.name("playcademy-sandbox").description("Local development server for Playcademy game development").version(version3).option("-p, --port <number>", "Port to run the server on", "4321").option("-v, --verbose", "Enable verbose logging", false).option("--project-name <name>", "Name of the current project").option("--project-slug <slug>", "Slug of the current project").option("--realtime", "Enable the realtime server", false).option("--realtime-port <number>", "Port for the realtime server (defaults to main port + 1)").option("--no-seed", "Do not seed the database with demo data").option("--timeback-local", "Use local TimeBack instance").option("--timeback-oneroster-url <url>", "TimeBack OneRoster API URL").option("--timeback-caliper-url <url>", "TimeBack Caliper API URL").option("--timeback-course-id <id>", "TimeBack course ID for seeding").option("--timeback-student-id <id>", "TimeBack student ID for demo user").action(async (options) => {
129579
129579
  try {
129580
129580
  const requestedPort = parseInt(options.port);
129581
- console.log(`[sandbox-cli] Requested port: ${requestedPort}`);
129582
129581
  const availablePort = await findAvailablePort(requestedPort);
129583
- console.log(`[sandbox-cli] Found available port: ${availablePort}`);
129584
129582
  const realtimePort = options.realtimePort ? parseInt(options.realtimePort) : availablePort + 1;
129585
- console.log(`[sandbox-cli] Using ports - main: ${availablePort}, realtime: ${realtimePort}`);
129586
129583
  const project = options.projectName && options.projectSlug ? {
129587
129584
  slug: options.projectSlug,
129588
129585
  displayName: options.projectName,
package/dist/server.js CHANGED
@@ -81999,7 +81999,7 @@ var logger = (fn = console.log) => {
81999
81999
  // package.json
82000
82000
  var package_default = {
82001
82001
  name: "@playcademy/sandbox",
82002
- version: "0.1.3",
82002
+ version: "0.1.4",
82003
82003
  description: "Local development server for Playcademy game development",
82004
82004
  type: "module",
82005
82005
  exports: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playcademy/sandbox",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Local development server for Playcademy game development",
5
5
  "type": "module",
6
6
  "exports": {