Chris

Results 9 comments of Chris

for those willing to use `esbuild` + `live-server` I've been copy pasting my setup with live reload along many repos, so I've created a package to share the setup: https://github.com/uralys/reactor

ok I see, here would be the issue to follow then https://github.com/parcel-bundler/parcel-css/issues/6

well, I understand your point, but that would also mean rewriting all what you did here, which is precisely why I use your plugin :)

> v2.4.0 has supported custom `filter` ok, nice; I removed the filter update from this PR, And I'll test it on my side, then close #34 This PR still update...

to handle my `/xxx` urls, I don't use this`spa` option, instead I add https://github.com/bripkens/connect-history-api-fallback middleware ```js const liveServer = require('live-server'); const historyApiFallback = require('connect-history-api-fallback'); const params = { //...my other...

as a workaround, I managed to have my dynamic terminal using `spawn` with `stdio` ```js const {spawn} = require('child_process'); spawn( 'my-command', ['any', 'options'], {stdio: [process.stdin, process.stdout, process.stderr]} ); ```

thanks @Parveshdhull , unfortunately it's not enough: ``` error: package com.reactnativecommunity.blurview does not exist ``` I checked in my `node_modules` and the definition is correct though ``` package com.reactnativecommunity.blurview; ......

Hi @chenop , not working for me ``` error: package com.reactnativecommunity.blurview does not exist import com.reactnativecommunity.blurview.BlurViewPackage; ```