@joystick.js/cli-canary 0.0.0-canary.65 → 0.0.0-canary.67

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.
@@ -92,7 +92,7 @@ const startDatabases = async (options, { resolve, reject }) => {
92
92
  validateDatabasesFromSettings(databases);
93
93
  await startDatabaseProviders(
94
94
  databases,
95
- options?.port,
95
+ options?.port + 10,
96
96
  options?.environment
97
97
  );
98
98
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.65",
3
+ "version": "0.0.0-canary.67",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -4,7 +4,7 @@ import path from "path";
4
4
  const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = {}) => {
5
5
  try {
6
6
  process.loader.text('Starting app...');
7
-
7
+
8
8
  return child_process.fork(
9
9
  path.resolve(".joystick/build/index.server.js"),
10
10
  [],
@@ -12,7 +12,7 @@ const startDatabaseProvider = async (
12
12
  ) => {
13
13
  try {
14
14
  const provider = providerMap[database?.provider];
15
-
15
+
16
16
  if (provider) {
17
17
  process.loader.text(`Starting ${provider?.name}...`);
18
18
 
@@ -114,7 +114,7 @@ const startDatabases = async (options, { resolve, reject }) => {
114
114
  validateDatabasesFromSettings(databases);
115
115
  await startDatabaseProviders(
116
116
  databases,
117
- options?.port,
117
+ options?.port + 10,
118
118
  options?.environment,
119
119
  );
120
120
  }