--- /dev/null
+<!doctype html>
+<html class="no-js" lang="">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <title></title>
+ <meta name="description" content="">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <!--[if lt IE 8]>
+ <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
+ <![endif]-->
+ <!-- Add your site or application content here -->
+ <p>Hello world! This is HTML5 Boilerplate.</p>
+ <script src="dist/app.js"></script>
+ </body>
+</html>
--- /dev/null
+{
+ "name": "example",
+ "version": "0.0.0",
+ "private": true,
+ "scripts": {
+ "webpack": "./node_modules/.bin/webpack",
+ "run": "node dist/app.js"
+ },
+ "license": "MIT",
+ "devDependencies": {
+ "purs-loader": "0.0.2",
+ "webpack": "^1.4.15"
+ }
+}
--- /dev/null
+var path = require('path');
+
+module.exports = {
+ entry: './src/entry',
+ output: {
+ path: path.join(__dirname, 'dist'),
+ filename: 'app.js'
+ },
+ resolve: {
+ modulesDirectories: [
+ 'node_modules',
+ 'web_modules',
+ 'output'
+ ]
+ }
+};