cheshire137 / gh-notifications-snoozer

Lists and filters and snoozing pull requests, oh my! This is an app for managing your notifications on GitHub by way of filtering issues and pull requests that are of interest to you.
MIT License
15 stars 10 forks source link

Trying it out #89

Closed zeke closed 8 years ago

zeke commented 8 years ago

:wave:

I saw the awesome new screenshot on the readme, and wanted to give this thing another go. It looks like the styles are not working though:

screen shot 2016-09-30 at 10 13 19 am

I tried running npm run style && npm start, but it didn't seem to have an effect. Am I doing it wrong?

cheshire137 commented 8 years ago

npm run style just runs the linter to ensure a consistent code style. Doing npm install and npm start should be sufficient for running the app. The electron-prebuilt-compile package should be compiling the LESS into CSS on the fly. 😕

If you comment out mainWindow.webContents.openDevTools() in src/main.js and run the app, do you see any errors in the console?

zeke commented 8 years ago

No errors, neither in the browser window nor the main process.

screen shot 2016-10-01 at 9 27 45 pm
cheshire137 commented 8 years ago

Any thoughts on this one @probablycorey?

cheshire137 commented 8 years ago

If you change something in App.less and reload the app (have the developer tools open and focused, hit Cmd-R), do you get styles?

probablycorey commented 8 years ago

I always resort to rm -rf node_modules && npm install for problems like this.

zeke commented 8 years ago

rm -rf node_modules && npm install good call! 🎉

screen shot 2016-10-03 at 4 04 33 pm