Merge pull request #21 from ethereum/patch/use-es6-shim

Include es6-shim in the build process
pull/1/head
chriseth 9 years ago
commit d9cafbab5d
  1. 1
      package.json
  2. 1
      src/index.js

@ -7,6 +7,7 @@
"build": "mkdir -p build; browserify src/index.js -o build/app.js"
},
"devDependencies": {
"es6-shim": "^0.35.1",
"ethereumjs-block": "^1.2.2",
"ethereumjs-vm": "^1.3.0",
"merkle-patricia-tree": "^2.1.2",

@ -1,3 +1,4 @@
require('es6-shim');
var app = require("./app.js");
var $ = require("jquery");

Loading…
Cancel
Save