-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issues in master #30
Comments
Line 6 in 8b7d5a2
asynchronous code is an advantage for node ,, try to avoid make restrictions on the asynchronous code unless it was necessary you can use some thing like that fs.readFile(path.join(__dirname, '/build.sql'), (err, sql) => {
connect.query(sql, (err, res) => {
if (err) {
console.log(err);
} else {
console.log(res);
}
});
}); |
Line 9 in 8b7d5a2
try to take actions instead of console.log(); |
here is the issues with the code inside the master:
|
mhmdshorafa
changed the title
unused module and developer dependencies inside dependencies
issues in master
Jan 16, 2018
ismail2009
added a commit
that referenced
this issue
Jan 16, 2018
ismail2009
added a commit
that referenced
this issue
Jan 16, 2018
ismail2009
added a commit
that referenced
this issue
Jan 16, 2018
@mhmdshorafa it's done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MixTeenApp/package.json
Line 26 in 8b7d5a2
your package.json file contains unused dependencies and some of it should be in developer dependencies
The text was updated successfully, but these errors were encountered: