mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-14 20:49:48 +00:00

* Init new and improved in repo documentation for open source and github {COMMIT-SYNC:dca335ff397c3e9c1283d845cef56fdb42f7853b} * [META-13251] Initial implementation for button to integrate with wintermute {COMMIT-SYNC:491b2bf5bc91137a2919370e81936033be15b13a} * Quickfix for UMP Datasets not showing the correct owner link {COMMIT-SYNC:26eb64cca78f96ed383994b7e67dd4fc8a99d985} * Updates history of datahub documentation {COMMIT-SYNC:306b2c72f3a81e699c8b414a8aaf4dcbfdf1ed31} Co-authored-by: Ignacio Bona <ibonapiedrabuena@linkedin.com>
30 lines
916 B
Markdown
30 lines
916 B
Markdown
Debugging Guide for Various Errors When Trying to Run Ember Serve
|
|
======================================================================
|
|
|
|
## Node Sass Error
|
|
|
|
Sample Error:
|
|
|
|
```
|
|
Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 13.x
|
|
|
|
Found bindings for the following environments:
|
|
- OS X 64-bit with Unsupported runtime (83)
|
|
- OS X 64-bit with Unsupported runtime (88)
|
|
|
|
This usually happens because your environment has changed since running `npm install`.
|
|
Run `npm rebuild node-sass` to download the binding for your current environment.
|
|
```
|
|
|
|
Problem:
|
|
Your version of node currently being used is not supported by node-sass. For more information on
|
|
node-sass support, check out this link: https://www.npmjs.com/package/node-sass
|
|
|
|
Solution:
|
|
Change your version of node to the correct corresponding version, and then from `datahub-web/`
|
|
run the command
|
|
|
|
```
|
|
npm rebuild
|
|
```
|