-
Notifications
You must be signed in to change notification settings - Fork 258
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
Move devDependencies that required to compile the app to dependencies #2611
Comments
devDependencies are installed just like dependencies when cloning the full application. This has not been a problem for anyone else building the application. |
devDependencies are installed only if node running in development mode, when it's run in production mode either by |
Ok understood. @thehobbit85 can you task this to someone |
More such devDeps to move to deps are: Details below: Line 228 in 9b23455
Otherwise error like:
Lines 201 to 203 in 9b23455
Move this lines of "edge-plugin-bity" "edge-plugin-simplex" "edge-plugin-wyre" Otherwise errors like:
Line 232 in 9b23455
Otherwise error like:
Line 199 in 9b23455
Otherwise error like:
|
Dependencies required to compile the app have been moved from devDependencies to dependencies to resolve issue #2611.
If you want reproducible builds, try using the command |
Ensure all dependencies used to compile the android & ios version are in dependencies, and compilation work when
NODE_ENV="production"
environment variable is used.as currently the steps in compiling android app fails when node production mode is used:
command:
yarn postinstall
cause
patch-package
is in devDependencies instead of dependenciesedge-react-gui/package.json
Line 223 in 9d93d01
Command:
yarn prepare
edge-react-gui/package.json
Line 226 in 9d93d01
cause
rollup
is in devDependencies instead of dependenciesThe text was updated successfully, but these errors were encountered: