Converting from SASS to SCSS
This commit is contained in:
@ -12,7 +12,7 @@ module.exports = function (grunt) {
|
|||||||
{
|
{
|
||||||
expand: true,
|
expand: true,
|
||||||
cwd: "assets/styles",
|
cwd: "assets/styles",
|
||||||
src: ["**/*.sass"],
|
src: ["**/*.scss"],
|
||||||
dest: "public/css",
|
dest: "public/css",
|
||||||
ext: ".css",
|
ext: ".css",
|
||||||
},
|
},
|
||||||
@ -37,7 +37,7 @@ module.exports = function (grunt) {
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
css: {
|
css: {
|
||||||
files: ["assets/styles/**/*.sass"],
|
files: ["assets/styles/**/*.scss"],
|
||||||
tasks: ["sass"],
|
tasks: ["sass"],
|
||||||
options: {
|
options: {
|
||||||
atBegin: true,
|
atBegin: true,
|
||||||
|
5
assets/styles/eye.scss
Normal file
5
assets/styles/eye.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
$primary-color: teal;
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #eee;
|
||||||
|
}
|
Reference in New Issue
Block a user