From bf88beabdfbc677058d3263ff6e1a21e9fd03fda Mon Sep 17 00:00:00 2001 From: Sean Chalmers <42610534+AQUASINE@users.noreply.github.com> Date: Mon, 15 Apr 2024 23:37:35 -0400 Subject: [PATCH 1/6] chore: allow js --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 6d0f5ee..1411b90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,8 @@ "esModuleInterop": true, "lib": ["ESNext", "DOM"], "skipLibCheck": true, - "noEmit": true + "noEmit": true, + "allowJs": true, }, "include": ["src"], "references": [ From 2046491d6302eb17f609162da7fd208bc3e6948f Mon Sep 17 00:00:00 2001 From: Sean Chalmers <42610534+AQUASINE@users.noreply.github.com> Date: Mon, 15 Apr 2024 23:54:07 -0400 Subject: [PATCH 2/6] feat: tuning card, separate rules --- src/App.vue | 41 ++------------- src/AppTopbar.vue | 68 +++++++++++++++++++++++++ src/CenterPanel.vue | 54 ++++++++++---------- src/RegexColorInput.vue | 45 ----------------- src/RuleTile.vue | 108 +--------------------------------------- src/TuningCard.vue | 47 +++++++++++++++++ src/rules.js | 106 +++++++++++++++++++++++++++++++++++++++ 7 files changed, 253 insertions(+), 216 deletions(-) create mode 100644 src/AppTopbar.vue delete mode 100644 src/RegexColorInput.vue create mode 100644 src/TuningCard.vue create mode 100644 src/rules.js diff --git a/src/App.vue b/src/App.vue index e9a79e2..0f4fe4b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,21 +1,6 @@