@editframe/assets 0.14.0-beta.3 → 0.15.0-beta.3
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/tasks/cacheImage.js
CHANGED
|
@@ -13,7 +13,7 @@ const cacheImage = async (cacheRoot, absolutePath) => {
|
|
|
13
13
|
return await cacheImageTask(cacheRoot, absolutePath);
|
|
14
14
|
} catch (error) {
|
|
15
15
|
console.error(error);
|
|
16
|
-
console.trace("Error
|
|
16
|
+
console.trace("Error caching image", error);
|
|
17
17
|
throw error;
|
|
18
18
|
}
|
|
19
19
|
};
|
|
@@ -61,7 +61,7 @@ const generateTrack = async (cacheRoot, absolutePath, url) => {
|
|
|
61
61
|
return await generateTrackTask(cacheRoot, absolutePath, Number(trackId));
|
|
62
62
|
} catch (error) {
|
|
63
63
|
console.error(error);
|
|
64
|
-
console.trace("Error generating track
|
|
64
|
+
console.trace("Error generating track", error);
|
|
65
65
|
throw error;
|
|
66
66
|
}
|
|
67
67
|
};
|
package/package.json
CHANGED
package/src/tasks/cacheImage.ts
CHANGED
|
@@ -16,7 +16,7 @@ export const cacheImage = async (cacheRoot: string, absolutePath: string) => {
|
|
|
16
16
|
return await cacheImageTask(cacheRoot, absolutePath);
|
|
17
17
|
} catch (error) {
|
|
18
18
|
console.error(error);
|
|
19
|
-
console.trace("Error
|
|
19
|
+
console.trace("Error caching image", error);
|
|
20
20
|
throw error;
|
|
21
21
|
}
|
|
22
22
|
};
|
|
@@ -82,7 +82,7 @@ export const generateTrack = async (
|
|
|
82
82
|
return await generateTrackTask(cacheRoot, absolutePath, Number(trackId));
|
|
83
83
|
} catch (error) {
|
|
84
84
|
console.error(error);
|
|
85
|
-
console.trace("Error generating track
|
|
85
|
+
console.trace("Error generating track", error);
|
|
86
86
|
throw error;
|
|
87
87
|
}
|
|
88
88
|
};
|