Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
const fetch = require('isomorphic-unfetch') | |
const withSass = require('@zeit/next-sass') | |
module.exports = withSass({ | |
webpack: (config) => { | |
config.node = { fs: 'empty' } | |
return config | |
}, | |
exportPathMap: async (defaultPathMap) => { | |
const [postList, projectList, pageList] = await Promise.all([ |
Slack colors to mimic Seti UI/Syntax Atom theme | |
#0E1112,#1E2326,#50B4DD,#FFFFFF,#151718,#FFFFFF,#9ECC4E,#CF3D41 |
/* | |
* Steps | |
* 1. Rename your gulpfile.js to gulpfile.babel.js | |
* 2. Add babel to your package.json (npm install -D babel) | |
* 3. Start writing ES6 in your gulpfile! | |
*/ | |
import gulp from 'gulp'; // ES6 imports! | |
import sass from 'gulp-sass'; | |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
cd ~/Sites | |
#----- | |
# Go get my boilerplate from Github | |
#----- | |
git clone https://github.com/stephensauceda/html-base.git {query} | |
cd {query} | |
#----- | |
# Get HTML5 Boilerplate .htaccess file |