Idan Cohen

Results 25 comments of Idan Cohen

Excellent Solutions!! @CLEMARCx [solution](https://github.com/akserg/ng2-dnd/issues/67#issuecomment-326541270) is great, just don't forget to add `this.cd.markForCheck();` where needed (as explained [here](https://blog.thoughtram.io/angular/2016/02/22/angular-2-change-detection-explained.html)) @AnthonySaldana solution works great as well and much more targeted. Notice though that...

Excellent fixes here #67

OK, my original approach proved wrong. the `statusChanges` observable is misbehaving and can't be trusted: When status is pending, no further events are emitted until another validation is triggered, not...

Great project!!! I've solved this issue outside nx by building the library INTO the functions folder. Not sure this strategy would work in this case. I see you're copying the...

i traced the issue to [this line](https://github.com/FountainJS/generator-fountain-gulp/blob/master/generators/app/templates/gulpfile.js#L44) changing from this - `gulp.watch(conf.path.tmp('index.html'), reloadBrowserSync);` to this - `gulp.watch(conf.path.src('app/**/*.html'), reloadBrowserSync);` solves the issue, but since it's a whole conditional segment I feel...

Breakthrough! I found out the if i change the export part of the component from this ```templateUrl: 'full/path/to/component.html``` to this ```template: require('./component.html')``` Then Browsersync listens to changes. Any idea why?

found a little hack that does the job thanks to @GuyPie - ```js loader: 'ngtemplate-loader?relativeTo=[path][name].[ext]&prefix=[1]&prefixRegExp=\\/foo\\/(.*)\\.template\\.jade' ```

I dug a little deeper and came across this seed project - [webpack library starter](https://github.com/krasimir/webpack-library-starter); This led me to create a new webpack config file which i've named webpack-library.conf, and...

@orzarchi great tip, i had to do one change to make it work - in webpack-dist.conf.js the line goes ```js new ExtractTextPlugin('index-[contenthash].css'), ``` but for this to work in webpack.conf.js...

it almost worked :-) Instead of , chrome inspector now only shows styles.css, without any reference to the origin file. Did i miss something?