Skip to content

Instantly share code, notes, and snippets.

View fabiodamasceno's full-sized avatar
🏠
Working from home

Fábio Damasceno fabiodamasceno

🏠
Working from home
View GitHub Profile
// lib/math.js
export function sum(x, y) {
return x + y;
}
// app.js
import * as math from "lib/math";
console.log("2π = " + math.sum(math.pi, math.pi));
@fabiodamasceno
fabiodamasceno / gulpfile.config.js
Last active March 29, 2017 07:00
Browserify Gulpfile
'use strict';
var config = {
sass : {
errLogToConsole: true,
outputStyle: 'compressed'
},
bower: './bower_components',
source: {
main: '.src/',
html:{