Skip to content

Instantly share code, notes, and snippets.

View TimAstier's full-sized avatar

Timothée Astier TimAstier

View GitHub Profile
@learncodeacademy
learncodeacademy / webpack.config.js
Created January 8, 2016 03:55
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"

Git Cheat Sheet

Commands

Getting Started

git init

or