bump worker ver
ci / build (push) Failing after 3s Details

This commit is contained in:
CJ_Clippy 2024-07-18 10:21:59 -08:00
parent 27c903755e
commit b54d6eea9a
3 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ export function rgbToHex(r: number, g: number, b: number): string {
} }
export async function getStoryboard(imageFileOrUrl: string): Promise<string> { export async function getStoryboard(imageFileOrUrl: string): Promise<string> {
let base = path.basename(imageFileOrUrl); let { name } = path.parse(imageFileOrUrl);
let outputImagePath = getTmpFile(base); let outputImagePath = getTmpFile(`${name}.png`);
let options = { let options = {
input: imageFileOrUrl, input: imageFileOrUrl,
output: outputImagePath, output: outputImagePath,

View File

@ -1,7 +1,7 @@
{ {
"name": "@futureporn/temporal-worker", "name": "@futureporn/temporal-worker",
"type": "module", "type": "module",
"version": "0.0.0", "version": "1.0.0",
"private": true, "private": true,
"files": [ "files": [
"dist" "dist"