From 8cf9934cab6f0dbd422484053a010308f904b7a2 Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Sun, 23 Oct 2016 00:28:19 +0200 Subject: [PATCH] Update build to working version on repo (#2825) --- js/build.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/build.rs b/js/build.rs index 82bf1ac93..0048b7d5a 100644 --- a/js/build.rs +++ b/js/build.rs @@ -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(); }