adds julia set example (#419)

* adds julia set example

* fixes indentation in *.js files

* fixes *.js formatting

* fixes a typo in function arguments signature
This commit is contained in:
Marcin Baraniecki
2018-07-08 17:57:19 +02:00
committed by Alex Crichton
parent b66095bcff
commit a5b8c45d28
15 changed files with 1079 additions and 0 deletions

View File

@ -0,0 +1,13 @@
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development',
devServer: {
open: true
}
};