Use local sass instead of mysterious global CLI

http-comm
cpsdqs 7 years ago committed by Ondřej Hruška
parent 0f9809c290
commit f85bcb3ef6
  1. 1370
      html_orig/package-lock.json
  2. 6
      html_orig/package.json
  3. 2
      html_orig/packcss.sh

File diff suppressed because it is too large Load Diff

@ -4,9 +4,11 @@
"description": "ESPTerm HTML",
"license": "UNLICENSED",
"devDependencies": {
"babel-minify": "^0.2.0"
"babel-minify": "^0.2.0",
"node-sass": "^4.5.3"
},
"scripts": {
"minify": "babel-minify $@"
"minify": "babel-minify $@",
"sass": "node-sass $@"
}
}

@ -2,4 +2,4 @@
echo "Building css..."
sass --style compressed sass/app.scss css/app.css
npm run sass -- --output-style compressed sass/app.scss > css/app.css

Loading…
Cancel
Save