Tung Vu

Results 12 comments of Tung Vu

Thanks for your report. I think it seems trivial at first, however, the root problem is more hideous. there are a lot of differences between styling react-dom and react-native. By...

micro-dev CLI expect a file instead (it will attempt to resolve index.js file if you give a folder, the same way `require` resolves paths). To watch a specific folder, you...

I think the help text is almost correct. the `[path]` is always watched. in your situation, `[path]` === `api/index.js`. I think the missing piece in the help is that it...

the point of building APIs is to encapsulate your data and logic, isn't it? If so, then all the logic how an interaction from UI should just go with one...

I would keep using @tvkhoa's package instead (more monthly downloads and more GitHub stars)

I have the same issue with `export * from 'some modules'`. This is the following code that I use: ``` export * from './icon-menu/icon-menu'; export * from './menu-item/menu-item'; ``` and...

Just a gentle reminder that this PR being merged and released is so valuable for a lot of people. Thank you.

almost a year and no solution?

One possible cause is that you got some error in you `ready` listener, which will throw an uncaught exception. The solution for that should be a `try catch` or `process.nextTick`...