-
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
Update to v1.1.4 #31
Update to v1.1.4 #31
Conversation
frank-west-iii
commented
Apr 23, 2018
- Updates to v1.1.4
- Updates eslint-config-zeal to v1.5.0
- Adds back in publicPath override in webpack dev
* extra watch options regex to react-dev-utils * fix regex * add test * fix eslint error * include react-dev-utils test in CI script * attempt to fix import error * attempt to fix error on CI * Update .eslintrc
* one-line waiting for app start * remove fixed todo
* improve eject message * cross os implementation
* add —use-npm flag to bypass yarn * add e2e test for —use-npm flag
* docs: adding section about debugging tests * docs: removing node-inspector references * docs: replacing terminal command with npm script * Update README.md
Fix another dead link
This fixes the broken link to removed `href-no-hash.md` file, that is no longer available in the [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y) plugin (since [6.0.0](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/a14617528cda23c6c88902ace1d083e4e13ac271/CHANGELOG.md))
the code got updated from `detect()` to `choosePort` while the comment did not.
Replaced `it's` with `its`
The launch configuration code provided is not compatible with VSCode since version 1.19. The proposed documentation change is based on the response by a VSCode team member. References: facebook#3602 (comment) microsoft/vscode#40293 (comment)
* use safer/more aesthetic syntax * fix typo
Replace `provide a lot value` with `provide a lot of value`.
* Fix path regex match bug * Use the escape-string-regexp package to escape regex characters * Remove redundant character escape from path * Add removed escape of backslashes
Update User Guide's README.md to include `json` and `css` files in the command to format the entire project for the first time with prettier, that it's consistent with the `lint-staged` command.
)" This reverts commit bab2c29. I meant to apply it to `next` instead.
Support for .mjs files added in facebook#3239 did not account for npm libraries which ship native mjs files alongside js files. This accounts for this by ensuring .js files resolve before their accompanying .mjs file. Note that this is not an ideal end state since selecting a .mjs over a .js extension should be the result of whether `import` was used instead of `require()` in a node environment with native ESM support (currently via `--experimental-modules`). Instead, this change just *always* selects a .js extension before the .mjs extension if it exists. This unbreaks support for using GraphQL (relay, apollo, etc) within create-react-app projects.
Add troubleshooting for an issue that has to do with either 2FA, or using Windows, or both, when trying to deploy an app via gh-pages
This was accidentally removed in the last merge.
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.
Thanks @frank-west-iii LGTM
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.
A few things to check:
-
Have there been any updates to Cannot import external CSS files after upgrading to react-scripts 1.0.8 facebook/create-react-app#2677 that we need to pull in?
-
Looking at this diff: facebook/create-react-app@v1.1.4...CodingZeal:chores/cra-1.1.4, there seems to be some spurious formatting changes. Do we need to eliminate those to keep clean diffs going forward?
-
A note about requiring
./polyfills
.
Other than these, LGTM!
@@ -296,10 +297,10 @@ module.exports = { | |||
// that fall through the other loaders. | |||
{ | |||
// Exclude `js` files to keep "css" loader working as it injects | |||
// it's runtime that would otherwise processed through "file" loader. | |||
// its runtime that would otherwise processed through "file" loader. |
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.
Wayyyy above here on L98-99, there's a require of ./polyfills
that looks like it's only in our fork. Is this something that we added, or is it something they removed a while back that we missed? If the former, we should add a ZEAL
comment; if the latter, we should probably also remove it.
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.
It's still there, just out of view for the comparison. It's their's
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.
So it is. Should we move ours up to the same place as theirs to avoid this showing as a weird diff?
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.
Actually it is duplicated now that I look closer so I have removed it.
d260c4f
to
8705835
Compare