We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25203a5 commit 8b69364Copy full SHA for 8b69364
3 files changed
.gitignore
@@ -2,3 +2,5 @@ _site
2
vendor
3
.bundle
4
Gemfile.lock
5
+node_modules
6
+package-lock.json
README.md
@@ -12,3 +12,12 @@ The pages are rendered with Jekyll and kindly hosted by github.
12
```
13
docker run -it -p 4000:4000 -v $(pwd):/site -w /site library/ruby bash -c 'bundle install && bundle exec jekyll serve -H 0.0.0.0'
14
15
+
16
+## Build CSS
17
18
+To build the stylesheets run this:
19
20
+```
21
+npm install
22
+npx less --clean-css="--s1 --advanced" styles/styles.less > styles/styles.min.css
23
package.json
@@ -0,0 +1,6 @@
1
+{
+ "dependencies": {
+ "less": "^4.4.0",
+ "less-plugin-clean-css": "^1.6.0"
+ }
+}
0 commit comments