Contribution Attempt: yarn bootstrap: sqlite3 issues #5133
Unanswered
swisstackle
asked this question in
Installation
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello guys, I can't wait to help you guys with the development of truffle.
I forked and cloned the repo and then I ran the two commands as mentioned:
npm install yarn -g
and
yarn bootstrap
But I seem to run into and issue with sqlite3 that I've tried to solve in the last couple days.
Here is the command line output that I get from yarn bootstrap:
Things Ive tried were:
Have you guys ever heard of that issue? I seem to be able to install sqlite3 in other repositories
Update: I have made some progress:
Due to the log file, I figured out that the v8.h in node-gyp was missing. I reinstalled node-gyp and that resolved the issue.
The next error that was coming up that the some file in the scripts folder of truffle still had windows white spaces, so I removed them with sed -i 's/\r//g' and that resolved the issue
Then, another issue came up, which I couldnt solve yet:
When yarn tries to build the truffle dashboard package, I am getting the error 'DISABLE_ESLINT_PLUGIN' is not recognized as an internal or external command which is used in the package.json to run react-scripts without eslint.
According to react-scripts, this tag was added with the version 4.0.2, but the package.json in the dashboard package references version 4.0.0 for react-scripts. This is a little bit confusing to me, because how could you guys build the dashboard package with this tag, if you guys use version 4.0.0?
Here is the PR that added the 'DISABLE_ESLINT_PLUGIN' tag to react-scripts: facebook/create-react-app#10170
Beta Was this translation helpful? Give feedback.
All reactions