mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 05:29:17 +00:00

* feat: implement pixel dance animation component, page and command * feat: make entire dance page draggable * feat: add dance transition for ui-iframe extension loading
14 lines
530 B
TypeScript
14 lines
530 B
TypeScript
import path from "path"
|
|
import { fileURLToPath } from "url"
|
|
|
|
const filepath = fileURLToPath(import.meta.url)
|
|
export const REPO_ROOT = path.dirname(path.dirname(path.dirname(path.dirname(filepath))))
|
|
export const PACKAGES_PATHS = {
|
|
DESKTOP: path.join(REPO_ROOT, "apps/desktop"),
|
|
CI: path.join(REPO_ROOT, "packages/ci"),
|
|
API: path.join(REPO_ROOT, "packages/api"),
|
|
SCHEMA: path.join(REPO_ROOT, "packages/schema"),
|
|
EXTENSIONS: path.join(REPO_ROOT, "packages/extensions"),
|
|
TEMPLATES: path.join(REPO_ROOT, "packages/templates")
|
|
}
|