Open apetresc opened 5 years ago
I feel equal measures of gratitude and guilt for seeing someone else put part of their lives into a chore that I have put off myself. Thanks! I'd be happy to jump in and provide assistance if you'd be willing to give me permission to contribute to your branch while it's in PR status.
Docker: I've wanted to containerize the Mongo dependency, especially, for a while. This will be a big benefit for anyone else who wants to work on this locally. If you get a moment, or when it gets to that point, could you add instructions for running the Docker project?
The SCSS error: looks like Sass no longer tolerates a variable being declared in the middle of a nested properties block. The variable can just be moved one line above to fix the new error:
.form-control {
background: {
color: $flat-green-sea;
}
$width: 3px;
border: {
color: $flat-green-sea;
radius: 0;
// (...and so on)
My pleasure š You should already have commit access to this branch specifically - let me know if it's not working for some reason and I can just make you a contributor on my entire fork.
The README updates are fantastic; thank you!
I tried pushing to your branch and got an error--I think you have to manually allow me to make contributions, as described here. That's only if you'd like me to help you this way--if you'd rather collaborate by just having me make suggestions here, that's fine, too.
Yup, I had that checked since the beginning, that's why I thought it would work:
No big deal though, just added you as a collaborator on my fork so you can push to any branch including this one :)
I'm attempting to build a development version of GoKibitz and finding that it's incompatible in a few ways with NodeJS 10.16.0 LTS. This PR attempts to make the smallest number of changes needed to allow GoKibitz to run cleanly with a modern Node toolchain.
This PR is not ready for merging, I'm just opening now to hopefully get some help overcoming a few hurdles.
memwatch-next
andheapdump
dependencies memwatch-next is no longer supported and doesn't work under Node 10.16.0 (see this issue). Luckily it's not actually used for anything except a commented-out block of code. So removing the dependency doesn't break anything at all.node-sass<=4.9
as can be seen here.[x] Fix broken SCSS After getting a successful build,
gulp default
fails with:The relevant section is:
which looks like perfectly valid SCSS to me so I have no idea what's going on here. This is where I'm currently stuck.
utf-8-validate
module dependency At the moment, anynpm build
will contain a failure of the form:Luckily this is an optional dependency so the build continues, but I'd still like to get to the bottom of it. It happens on both my local macOS and inside the Docker container so it's likely not something wrong with my build environment but rather another deprecation/incompatibility with Node 10.16.0.
README
about the correct format for.amazon-ses.js
, or provide a way to mock/ignore them. At the moment,user.js
fails to run without it.I expect more problems to pop up after I get past the error above, but hopefully it can all be worked through š