diff --git a/build.sh b/build.sh
index 1f2bad32efcc0c6ee7d126b76938d287615e0fc7..522c0b8d6810d5a92f8a1ad6e9f32818bfc4ca3d 100755
--- a/build.sh
+++ b/build.sh
@@ -39,12 +39,17 @@ function build_wheel() {
   pip check
 }
 
+function npm_install() {
+  npm install
+}
+
 function main() {
   # setup_venv
   pip_compile
   pip_install
   pip_install_via_setup_py
-  #build_wheel
+  build_wheel
+  npm_install
 }
 
 main