From 65ac071b7e9d9d02b0995d5c2b34adf7bf082e7e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 18 Sep 2016 13:54:07 +0300 Subject: [PATCH] package.json: Remove cleancss It has problems parsing the output from node-sass when I add the font-awesome SASS to my imports. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index f1876f2..7aef91f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "url": "https://github.com/alanorth/hugo-theme-bootstrap4.git" }, "scripts": { - "build:css": "node-sass --output-style compressed source/scss/style.scss | cleancss > static/css/style.css", + "build:css": "node-sass --output-style compressed source/scss/style.scss static/css/style.css", "build:fonts": "cp node_modules/font-awesome/fonts/* static/fonts", "build": "npm run build:css && npm run build:fonts" }, @@ -16,7 +16,6 @@ "license": "GPL-3.0", "devDependencies": { "bootstrap": "4.0.0-alpha.4", - "clean-css": "3.4.19", "font-awesome": "4.6.3", "node-sass": "3.10.0" }