From b958176e9547267c763ee2216d2553a601732458 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Thu, 16 Nov 2023 17:58:39 +0500 Subject: [PATCH] internal css compilation --- .gitignore | 4 +++- package.json | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a4ad421..36475c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /dist/ /target/ -/style/output.css \ No newline at end of file +/style/output.css +node_modules +pnpm-lock.yaml \ No newline at end of file diff --git a/package.json b/package.json index ac6bf12..e9f35be 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,13 @@ "description": "Rewritten version of website", "scripts": { "dev": "pnpm run css --watch && trunk serve", - "css": "pnpx tailwindcss -i ./style/input.css -o ./style/output.css", + "css": "tailwindcss -i ./style/input.css -o ./style/output.css", "rnstl": "./vercel/install.sh", "build": "pnpm run css && ./vercel/build.sh" }, "author": "Sokhibjon Orzikulov ", - "license": "CC0-1.0" + "license": "CC0-1.0", + "devDependencies": { + "tailwindcss": "^3.3.5" + } }