Update build to working version on repo (#2825)

This commit is contained in:
Jaco Greeff 2016-10-23 00:28:19 +02:00 committed by GitHub
parent 3637c6ad9a
commit 8cf9934cab
1 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@
extern crate parity_dapps_glue;
fn main() {
parity_dapps_glue::js::build(env!("CARGO_MANIFEST_DIR"), "build");
// FIXME: Currently creates an issue when
// (a) always trying to build &
// (b) trying to install node_modules inside the build directory (no package.json)
// Uncomment the next line when fixed to perfection
// parity_dapps_glue::js::build(env!("CARGO_MANIFEST_DIR"), "build");
parity_dapps_glue::generate();
}