@joystick.js/cli-canary 0.0.0-canary.69 → 0.0.0-canary.70
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.
|
@@ -197,6 +197,7 @@ const buildFiles = async (options, { resolve, reject }) => {
|
|
|
197
197
|
return { success: true };
|
|
198
198
|
}).catch((exception) => {
|
|
199
199
|
const file = handleParseFilePathFromException(exception);
|
|
200
|
+
console.log(file, exception);
|
|
200
201
|
const snippet = handleBuildException(exception, file);
|
|
201
202
|
return {
|
|
202
203
|
success: false,
|
package/package.json
CHANGED
|
@@ -225,6 +225,7 @@ const buildFiles = async (options, { resolve, reject }) => {
|
|
|
225
225
|
return { success: true };
|
|
226
226
|
}).catch((exception) => {
|
|
227
227
|
const file = handleParseFilePathFromException(exception);
|
|
228
|
+
console.log(file, exception);
|
|
228
229
|
const snippet = handleBuildException(exception, file);
|
|
229
230
|
|
|
230
231
|
return {
|