Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-09-23 11:13:24 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-10-29 16:34:41 +0300
commitc31aef49d91e1eabea99ec24c6002a138420aaa9 (patch)
tree1c3400e5b4cd70ca9123c0faaaa4ae3c7a70df2d /.github
parent94d7f6e5a9b12596de3f1729cb9aa004377342f3 (diff)
Switch to dart-sass
node-sass is now deprecated
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node-sass.yml (renamed from .github/workflows/dart-sass.yml)8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/dart-sass.yml b/.github/workflows/node-sass.yml
index 8482a152ef..1496fafaed 100644
--- a/.github/workflows/dart-sass.yml
+++ b/.github/workflows/node-sass.yml
@@ -1,4 +1,4 @@
-name: CSS (Dart Sass)
+name: CSS (node-sass)
on: [push, pull_request]
env:
CI: true
@@ -17,8 +17,8 @@ jobs:
with:
node-version: "${{ env.NODE }}"
- - name: Build CSS with Dart Sass
+ - name: Build CSS with node-sass
run: |
- npx --package sass@latest sass --version
- npx --package sass@latest sass --style expanded --source-map --embed-sources --no-error-css scss/:dist-sass/css/
+ npx --package node-sass@latest node-sass --version
+ npx --package node-sass@latest node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/ -o dist-sass/css/
ls -Al dist-sass/css