This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
// Gulp Plugins | |
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
livereload = require('gulp-livereload'), | |
autoprefixer = require('gulp-autoprefixer'); | |
// Gulp Config | |
var input = 'scss/**/*.scss', | |
output = 'css', | |
sassConfig = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Using Ubuntu | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo npm cache clean -f | |
sudo npm install -g n | |
sudo n stable |
NewerOlder