Skip to content

Commit 9698b96

Browse files
committed
Remove node-sass
1 parent 6f5edd3 commit 9698b96

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

docs/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source 'https://rubygems.org'
2-
gem "bulma-clean-theme", '0.11.2'
2+
gem "bulma-clean-theme", '0.12'
33
gem 'github-pages', group: :jekyll_plugins

docs/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ GEM
99
zeitwerk (~> 2.2, >= 2.2.2)
1010
addressable (2.8.0)
1111
public_suffix (>= 2.0.2, < 5.0)
12-
bulma-clean-theme (0.11.2)
12+
bulma-clean-theme (0.12)
1313
jekyll (~> 3.9)
1414
jekyll-feed (~> 0.15)
1515
jekyll-paginate (~> 1.1)
16-
jekyll-seo-tag (~> 2.6)
16+
jekyll-seo-tag (~> 2.7)
1717
jekyll-sitemap (~> 1.4)
1818
kramdown-parser-gfm (~> 1.1)
1919
coffee-script (2.4.1)
@@ -280,7 +280,7 @@ PLATFORMS
280280
ruby
281281

282282
DEPENDENCIES
283-
bulma-clean-theme (= 0.11.2)
283+
bulma-clean-theme (= 0.12)
284284
github-pages
285285

286286
BUNDLED WITH

docs/_data/menu.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
- label: Docs
22
items:
3+
- name: Installation
4+
link: '/#installation'
35
- name: How To Use
46
link: '/#how-to-use'
57
- name: Alignment

docs/index.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
hero_height: is-medium
77
---
88

9-
<div class="columns is-multiline">
9+
<div class="columns is-multiline" markdown="0">
1010
<div class="column is-12 has-text-right">
1111
<a href="https://github.com/chrisrhymes/bulma-block-list/stargazers">
1212
<img src="https://img.shields.io/github/stars/chrisrhymes/bulma-block-list?style=social" alt="GitHub Stars" />
@@ -16,10 +16,18 @@
1616
</a>
1717
<img alt="npm" src="https://img.shields.io/npm/dw/bulma-block-list">
1818
</div>
19+
<div class="column is-12">
20+
<div class="content">
21+
<h2 id="installation">Installation</h2>
22+
<ul>
23+
<li><code>npm i -S bulma-block-list</code></li>
24+
<li><code>@import "node_modules/bulma-block-list/src/block-list";</code> after importing Bulma.</li>
25+
</ul>
26+
</div>
27+
</div>
1928
<div class="column is-12">
2029
<div class="content">
2130
<h2 id="how-to-use">How to use</h2>
22-
<p>View the <a href="https://github.com/chrisrhymes/bulma-block-list">Bulma Block List repo on GitHub</a> and follow the instructions.</p>
2331
<p>Create a ul and give it the class 'block-list' then use the modifyers to style as needed. Only some of the colours are displayed below but the scss loops through the entire Bulma $colors map.</p>
2432
</div>
2533
<div class="highlight highlight-text-html-basic">

package.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
"url": "https://github.com/chrisrhymes/bulma-block-list/issues"
88
},
99
"main": "src/block-list.scss",
10-
"scripts": {
11-
"css-build": "node-sass --omit-source-map-url src/demo.scss docs/demo.css",
12-
"css-watch": "npm run css-build -- --watch",
13-
"start": "npm run css-watch"
14-
},
10+
"scripts": {},
1511
"keywords": [
1612
"Bulma",
1713
"List",
@@ -22,8 +18,5 @@
2218
"license": "MIT",
2319
"dependencies": {
2420
"bulma": "^0.9.3"
25-
},
26-
"devDependencies": {
27-
"node-sass": "^4.14.1"
2821
}
2922
}

0 commit comments

Comments
 (0)