-
-
Notifications
You must be signed in to change notification settings - Fork 629
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
Small fixes to achieve reproducible build #661
Conversation
1 similar comment
Some suggestions Reviewed 3 of 4 files at r1, 1 of 1 files at r2. .gitignore, line 12 at r2 (raw file):
This is due to emacs probably and nothing to do with React on Rails. However, I'm OK with this if you think it's better here rather than your global gitignore. CONTRIBUTING.md, line 89 at r2 (raw file):
Since we're getting typos: CONTRIBUTING.md, line 144 at r2 (raw file):
Why is this needed? CONTRIBUTING.md, line 166 at r2 (raw file):
correct lib/generators/react_on_rails/templates/base/base/client/package.json.tt, line 17 at r2 (raw file):
why is babel removed? We should be locking the version of it. spec/dummy/client/package.json, line 12 at r2 (raw file):
why is babel removed? We should be locking the version of it. Comments from Reviewable |
@squadette Any update? |
Review status: all files reviewed at latest revision, 6 unresolved discussions, some commit checks failed. .gitignore, line 12 at r2 (raw file): Previously, justin808 (Justin Gordon) wrote…
I'll setup my global gitignore, makes sense. CONTRIBUTING.md, line 144 at r2 (raw file): Previously, justin808 (Justin Gordon) wrote…
I don't know. But In the doc it says: Side note: It's critical to use the alias section of the webpack config to avoid a double inclusion error. This has already been done for you in the example and dummy apps, but for reference: But in example and dummy apps it has both react and react-dom, while in .md it only mentions react. I'd also like to understand why exactly we need this special treatment. lib/generators/react_on_rails/templates/base/base/client/package.json.tt, line 17 at r2 (raw file): Previously, justin808 (Justin Gordon) wrote…
https://github.com/babel/babel/blob/master/packages/babel/cli.js Comments from Reviewable |
Please rebase on top of master. I'd like to create a release today. |
Review status: all files reviewed at latest revision, 6 unresolved discussions, some commit checks failed. CONTRIBUTING.md, line 144 at r2 (raw file): Previously, squadette (Alexey Mahotkin) wrote…
Good catch. I wonder if this is still needed. Safer to do this. spec/dummy/client/package.json, line 12 at r2 (raw file): Previously, justin808 (Justin Gordon) wrote…
@squadette Any idea here? Comments from Reviewable |
7d0f9e6
to
83839be
Compare
83839be
to
317dc5d
Compare
Updated as per discussion. Thanks, |
2 similar comments
@@ -14,7 +14,6 @@ | |||
}, | |||
"cacheDirectories": ["node_modules", "client/node_modules"], | |||
"dependencies": { | |||
"babel": "^6.5.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@squadette why is babel removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'babel' is deprecated.
Thanks @squadette |
* Typo in 'npm run dummy:spec' * 'babel' package is deprecated, remove from dependencies * Mention that 'react-dom' also needs to be in webpack.conf; fix typo
…e-redux-div-to-json-script * origin/master: (42 commits) Release 6.5.1 Update CHANGELOG.md Ability to work without sprockets (#671) Change Turbolinks unmount event from before-visit to before-render (#709) Update generator.md Update README.md Update i18n.md Small formatting tweak Release 6.5.0 Updated CHANGELOG.md Update README.md Update README.md Update README.md Fix incorrect "this" references of Node.js SSR Remove reference to heroku-buildpack-multi (#698) Small fixes to achieve reproducible build (#661) Update PROJECTS.md Doc Changes for links on gitbook Update README.md Added property renderedHtml to return gen func ...
hi,
I'm trying to achieve green tests on my machine. So far I'm unsuccessful, but I've found few issues which I'd like to fix in master to help everyone else.
Thank you,
This change is