From 3e0bbb7983fea1aed14cb2d8d1a746954c0743ea Mon Sep 17 00:00:00 2001 From: Peter Savchenko Date: Sun, 11 Feb 2024 20:26:20 +0300 Subject: [PATCH] build ui on ci, fix eslint --- .eslintignore | 1 + package.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..87711a5b --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +/codex-ui diff --git a/package.json b/package.json index 2ddb787c..c98a3cba 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "type": "module", "scripts": { "dev": "vite", - "build": "vue-tsc && vite build", + "build": "yarn build:ui && vue-tsc && vite build", + "build:ui": "yarn workspace codex-ui run build", "preview": "vite preview", "lint": "eslint . --ext .ts,.vue", "lint:fix": "yarn lint --fix",