Solant

Results 11 comments of Solant

Hi I did something similar to RN stylesheets here: https://github.com/Solant/nodegui-stylesheet You can create a main stylesheet with all reused utility classes However, there are some differences between regular CSS, RN...

> What does `*` mean in the paths? I just replaced the actual paths in the project

Probably there is something with joining paths from here: https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/src/analyzer.js#L50 I can create small demo project for this issue, if you want

@th0r: https://github.com/Solant/bundle-analyzer-paths `npm run analyze:fine` is intended behavior `npm run analyze:error` shows described error

A possible workaround to make it work, in case you have an output directory named `dist`: ```javascript webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json dist/ ```

Sure, just like in any other nodejs or webpack app

you should run 2 npm scripts at the same time: `npm run start` starts actual qode instance, while `npm run dev` starts webpack bundle for your js code so you...

oh, I see now `memoryjs` has some native code that is prebuilt for specific nodejs version some additional steps may be required in this case, https://docs.nodegui.org/docs/guides/using-native-node-modules or you can try...

`scoped` attribute for `` tag doesn't use css modules. You should use `module` attribute for `` tag to use css modules ( https://vue-loader.vuejs.org/guide/css-modules.html )

Looks like node-usb uses native bindings, and nodegui requires additional setup for native packages: https://docs.nodegui.org/docs/guides/using-native-node-modules