Max Malm

Results 72 comments of Max Malm

What about using the `main` field in package.json?

I did this in my backpack.config.js: ```js module.exports = { webpack: (config) => { // eslint-disable-next-line no-param-reassign config.entry.main = [ './src/server/index.js', ]; return config; }, }; ```

@yoyo837 You use this for frontend too?

> adding dev api reqs, solved the issue; How do I get these? Edit: Here - https://developer.spotify.com/dashboard/applications

Hey, sorry for not replying. What happens if you run that code with this rule? http://eslint.org/docs/rules/no-use-before-define

@aarongreenwald Ah yes, thank you for explaining, you are correct

Wouldn't it be better to have them as `peerDependency` to let the user handle their own versions?

@billziss-gh hey, thanks for making this app. I have a problem kind of related to this ticket, the escape key doesn't work at all for me even though I have...

Is this happening?

FWIW I'm using this under `scripts.postinstall` ``` js // Remove babel dependencies from horizon to make React Native happy const fs = require('fs'); const filename = 'node_modules/@horizon/client/package.json'; const fileContent =...