@spark-ui/cli-utils 2.14.0-beta.1 → 2.14.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/cli-utils",
3
- "version": "2.14.0-beta.1",
3
+ "version": "2.14.0-beta.2",
4
4
  "description": "Spark CLI utils",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,6 +25,8 @@ export async function adoption(options) {
25
25
  ),
26
26
  })
27
27
 
28
+ console.log(JSON.stringify(config, null, 2))
29
+
28
30
  let importCount = 0
29
31
  const importResults = {}
30
32
  let importsUsed = {}
@@ -10,8 +10,12 @@ export async function loadConfig(configFileRoute, { logger }) {
10
10
  } else {
11
11
  logger.warn('⚠️ No custom configuration file found')
12
12
  logger.info('ℹ️ Loading default configuration')
13
+
14
+ return {}
13
15
  }
14
16
  } catch (error) {
15
17
  logger.error('💥 Something went wrong loading the custom configuration file')
18
+
19
+ return {}
16
20
  }
17
21
  }