Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JustCarmen committed Oct 6, 2018
1 parent 5f5fd43 commit 53d7406
Show file tree
Hide file tree
Showing 3 changed files with 2,423 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Gruntfile.js
@@ -1,5 +1,7 @@
module.exports = function(grunt) {

const sass = require('node-sass');

// load all grunt tasks with this command. No need to set grunt.loadNpmTasks(...) for each task separately;
require('load-grunt-tasks')(grunt);

Expand Down Expand Up @@ -43,6 +45,7 @@ module.exports = function(grunt) {
sass: {
dev: {
options: {
implementation: sass,
outputStyle: 'expanded',
sourceMap: true

Expand All @@ -59,6 +62,7 @@ module.exports = function(grunt) {
postcss: {
default: {
options: {
implementation: sass,
map: true,
processors: [
require('autoprefixer')({
Expand All @@ -70,6 +74,7 @@ module.exports = function(grunt) {
},
dist: {
options: {
implementation: sass,
map: true,
processors: [
require('cssnano')() // add minified css
Expand Down

0 comments on commit 53d7406

Please sign in to comment.