Help us test Webpack support in Ionic 2 App Scripts!

I’m not sure if this really related, but there’s issue with livereload even after 2.0RC1. In my case, the watch is not triggered even after supplying the “-l” option into ionic run. I managed to work around it by forcefully adding the watch task into run:before scripts list in package.json.

"scripts": {

    ....    

    "build:before": "build",
    "run:before": "build",
    "run:before": "watch"       
  },

This works fine while using rollup. But after trying webpack, it failed during build process. It got stuck somewhere after completing the build task, which is expected,i guess.

[12:27:20]  ionic-app-scripts 0.0.37 
[12:27:20]  watch started ... 
[12:27:20]  build dev started ... 
[12:27:20]  clean started ... 
[12:27:20]  clean finished in 5 ms 
[12:27:20]  copy started ... 
[12:27:20]  transpile started ... 
[12:27:20]  lint started ... 
[12:27:23]  lint finished in 3.23 s 
[12:27:24]  transpile finished in 4.55 s 
[12:27:24]  webpack started ... 
[12:27:25]  copy finished in 5.34 s 
[12:27:32]  webpack finished in 7.56 s 
[12:27:32]  sass started ... 
[12:27:33]  sass finished in 1.29 s 
[12:27:33]  build dev finished in 13.41 s

it stops here…