move core app to .vercel/output/..., adapt only some paths

This commit is contained in:
martin-mfg
2025-06-23 15:55:46 +02:00
parent fc9d9272c4
commit 31ca8a317a
86 changed files with 47 additions and 48 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import fs from "fs";
import { themes } from "../themes/index.js";
import { themes } from "../.vercel/output/functions/api.func/core-app/themes/index.js";
const TARGET_FILE = "./themes/README.md";
const REPO_CARD_LINKS_FLAG = "<!-- REPO_CARD_LINKS -->";
+2 -2
View File
@@ -12,8 +12,8 @@ import Hjson from "hjson";
import snakeCase from "lodash.snakecase";
import parse from "parse-diff";
import { inspect } from "util";
import { isValidHexColor, isValidGradient } from "../src/common/utils.js";
import { themes } from "../themes/index.js";
import { isValidHexColor, isValidGradient } from "../.vercel/output/functions/api.func/core-app/src/common/utils.js";
import { themes } from "../.vercel/output/functions/api.func/core-app/themes/index.js";
import { getGithubToken, getRepoInfo } from "./helpers.js";
const COMMENTER = "github-actions[bot]";