Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
Thanks to /u/zpoo32 for reporting several issues in this list!
{ | |
"name": "project-name", | |
"description": "Template for static sites", | |
"version": "1.0.0", | |
"homepage": "http://www.project-name.com", | |
"author": { | |
"name": "Adam Reis", | |
"url": "http://adam.reis.nz" | |
}, | |
"license": "UNLICENSED", |
var path = require('path'), | |
webpack = require("webpack"), | |
libPath = path.join(__dirname, 'lib'), | |
wwwPath = path.join(__dirname, 'www'), | |
pkg = require('./package.json'), | |
HtmlWebpackPlugin = require('html-webpack-plugin'), | |
ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
var bundleCss = ("production" === process.env.NODE_ENV) ? "bundle-[hash:6].css" : "bundle.css"; | |
var pluginsWebpack = [ |