mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-28 12:24:23 +00:00
Change occurences of node-sass to sass into the docs
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
08c1344cc5
commit
9df2017123
@ -114,13 +114,13 @@
|
||||
"icon": "cogs",
|
||||
"path": "/documentation/customize/variables"
|
||||
},
|
||||
"customize-node-sass": {
|
||||
"name": "With node-sass",
|
||||
"subtitle": "Use npm/yarn and node-sass",
|
||||
"customize-sass": {
|
||||
"name": "With sass",
|
||||
"subtitle": "Use npm/yarn and sass",
|
||||
"color": "danger",
|
||||
"icon_brand": "true",
|
||||
"icon": "npm",
|
||||
"path": "/documentation/customize/with-node-sass"
|
||||
"path": "/documentation/customize/with-sass"
|
||||
},
|
||||
"customize-sass-cli": {
|
||||
"name": "With Sass CLI",
|
||||
@ -682,7 +682,7 @@
|
||||
"customize": [
|
||||
"customize-concepts",
|
||||
"customize-variables",
|
||||
"customize-node-sass",
|
||||
"customize-sass",
|
||||
"customize-sass-cli",
|
||||
"customize-webpack"
|
||||
],
|
||||
|
@ -43,7 +43,7 @@ breadcrumb:
|
||||
|
||||
{% include elements/anchor.html name="Strategy" %}
|
||||
|
||||
{% assign node_sass_link = site.data.links.by_id['customize-node-sass'] %}
|
||||
{% assign sass_link = site.data.links.by_id['customize-sass'] %}
|
||||
{% assign sass_cli_link = site.data.links.by_id['customize-sass-cli'] %}
|
||||
{% assign webpack_link = site.data.links.by_id['customize-webpack'] %}
|
||||
|
||||
@ -70,7 +70,7 @@ breadcrumb:
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="{{ site.url }}{{ node_sass_link.path }}">node-sass</a>
|
||||
<a href="{{ site.url }}{{ sass_link.path }}">sass</a>
|
||||
</li>
|
||||
<li>
|
||||
the <a href="{{ site.url }}{{ sass_cli_link.path }}">Sass CLI</a>
|
||||
|
@ -1,17 +1,17 @@
|
||||
---
|
||||
title: With node-sass
|
||||
title: With sass
|
||||
layout: documentation
|
||||
doc-tab: customize
|
||||
doc-subtab: node-sass
|
||||
doc-subtab: sass
|
||||
breadcrumb:
|
||||
- home
|
||||
- documentation
|
||||
- customize
|
||||
- customize-node-sass
|
||||
- customize-sass
|
||||
---
|
||||
|
||||
{% capture dependencies %}
|
||||
npm install node-sass --save-dev
|
||||
npm install sass --save-dev
|
||||
npm install bulma --save-dev
|
||||
{% endcapture %}
|
||||
|
||||
@ -23,7 +23,7 @@ npm install bulma --save-dev
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"bulma": "^0.7.2",
|
||||
"node-sass": "^4.9.2"
|
||||
"sass": "^1.33"
|
||||
}
|
||||
}
|
||||
{% endcapture %}
|
||||
@ -31,7 +31,7 @@ npm install bulma --save-dev
|
||||
{% capture step_2 %}
|
||||
<div class="content">
|
||||
<p>
|
||||
You only need <strong>2 packages</strong> to customize Bulma: <code>node-sass</code> and <code>bulma</code> itself.
|
||||
You only need <strong>2 packages</strong> to customize Bulma: <code>sass</code> and <code>bulma</code> itself.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@ -48,7 +48,7 @@ npm install bulma --save-dev
|
||||
|
||||
{% capture scripts %}
|
||||
"scripts": {
|
||||
"css-build": "node-sass --omit-source-map-url sass/mystyles.scss css/mystyles.css",
|
||||
"css-build": "sass --no-source-map sass/mystyles.scss css/mystyles.css",
|
||||
"css-watch": "npm run css-build -- --watch",
|
||||
"start": "npm run css-watch"
|
||||
}
|
@ -15,7 +15,7 @@ npm install bulma --save-dev
|
||||
npm install css-loader --save-dev
|
||||
npm install extract-text-webpack-plugin@next --save-dev
|
||||
npm install mini-css-extract-plugin --save-dev
|
||||
npm install node-sass --save-dev
|
||||
npm install sass --save-dev
|
||||
npm install sass-loader --save-dev
|
||||
npm install style-loader --save-dev
|
||||
npm install webpack --save-dev
|
||||
@ -32,7 +32,7 @@ npm install webpack-cli --save-dev
|
||||
"bulma": "^0.7.2",
|
||||
"css-loader": "^1.0.0",
|
||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
||||
"node-sass": "^4.9.2",
|
||||
"sass": "^1.33.0",
|
||||
"sass-loader": "^7.0.3",
|
||||
"style-loader": "^0.21.0",
|
||||
"webpack": "^4.16.0",
|
||||
|
Loading…
Reference in New Issue
Block a user