Skip to content

Instantly share code, notes, and snippets.

View calvimor's full-sized avatar

Carlos Alberto Villamizar Morantes calvimor

View GitHub Profile
@calvimor
calvimor / webpack.config.dev.js
Created January 19, 2017 18:10
Development Webpack config for "Building a JavaScript Development Environment"
import path from 'path';
export default {
debug: true,
devtool: 'inline-source-map',
noInfo: false,
entry: [
path.resolve(__dirname, 'src/index')
],
target: 'web',
@calvimor
calvimor / config-git.md
Last active October 5, 2016 15:15
Configuring git

Configuring Git

Global

git config --global user.name calvimor
git config --global user.email calvimor@gmail.com

git config --global core.editor vim|atom

git config --global core.autocrlf true|false|input