add webpack.config

This commit is contained in:
Shin'ya Ueoka 2017-08-11 23:15:47 +09:00
parent fe8cfcbe47
commit fe4b1bf362
4 changed files with 54 additions and 0 deletions

3
src/index.js Normal file
View file

@ -0,0 +1,3 @@
import * as Module from './module';
Module.initialize()

18
src/module.js Normal file
View file

@ -0,0 +1,18 @@
const initialize = (url) => {
let p = document.createElement("p");
p.textContent = "Hello Vim Vixen";
p.style.position = 'fixed';
p.style.right = '0';
p.style.bottom = '0';
p.style.padding = '0rem .5rem';
p.style.margin = '0';
p.style.backgroundColor = 'lightgray';
p.style.border = 'gray';
p.style.boxShadow = '0 0 2px gray inset';
p.style.borderRadius = '3px';
p.style.fontFamily = 'monospace';
document.body.append(p)
}
export { initialize };