From 361f57424cfdc444d81be58d3d3f346f8b87cba4 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 7 Mar 2026 18:54:30 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Update=20npm=20stack=20fo?= =?UTF-8?q?r=20bootstrap=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 10 +++++++++- bin/.utils.js | 2 +- package.json | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index de385f1..91454e0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,14 @@ "tree.indentGuidesStroke": "#3d92ec", "activityBar.background": "#213309", "titleBar.activeBackground": "#2E470C", - "titleBar.activeForeground": "#F6FCEE" + "titleBar.activeForeground": "#F6FCEE", + "titleBar.inactiveBackground": "#213209", + "titleBar.inactiveForeground": "#F7FCEF", + "statusBar.background": "#213209", + "statusBar.foreground": "#F7FCEF", + "statusBar.debuggingBackground": "#213209", + "statusBar.debuggingForeground": "#F7FCEF", + "statusBar.noFolderBackground": "#213209", + "statusBar.noFolderForeground": "#F7FCEF" } } diff --git a/bin/.utils.js b/bin/.utils.js index 9f3b807..a695795 100644 --- a/bin/.utils.js +++ b/bin/.utils.js @@ -16,7 +16,7 @@ const cwd = path.resolve(".."); module.exports.tailwindToCSS = debounce(() => { try { require("child_process").execSync( - `npx @tailwindcss/cli -i styles/theme.css -o static/dist/theme.css`, + `./node_modules/.bin/tailwindcss -i styles/theme.css -o static/dist/theme.css`, { stdio: "inherit" } ); } catch (error) { diff --git a/package.json b/package.json index 6f4fad8..b9c1bfb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "start": "npm run watch", "watch": "node bin/.watch.js", - "build": "npx @tailwindcss/cli -i ./styles/theme.css -o ./static/dist/theme.css --optimize" + "build": "@tailwindcss/cli -i ./styles/theme.css -o ./static/dist/theme.css --optimize" }, "repository": { "type": "git",