-
Notifications
You must be signed in to change notification settings - Fork 1
Move browser upgrade page #354
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 browser upgrade page #354
Conversation
facebook v2.1.3
merge upstream master
merging upstream master
…into facebook-master
* Adopt Contributor Covenant * Add link to Contributor Covenant to docs site
- use ESLint cache - remove useless `watch` option in fork-ts-checker
Add blog post that takes a React developer step-by-step through many features of AWS. Blog post is suitable for a beginner to follow and have a production ready workflow.
When adding typescript to an existing Create React App project you have to have tsconfig.json in the project, I believe this change should clarify it for beginners getting stuck on this step. Not sure if providing an example would be too much so I have added a link to the tsconfig.json instead.
Add a link to React Router docs specific to adding routes.
Remove reference to deprecated VSCode debugger plugin. https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome
fix code splitting link
fix broken link progressive web app
docs: Add Link to Adding Routes Docs
update the heroku buildpack link
Add missing instruction if you are adding typescript
VSCode debugger plugin deprecated
- add modernizr - config modernizr - add in tests and initial banner logic
|
@@ -0,0 +1,7 @@ | |||
const header = document.getElementById('outdated-browser'); | |||
const outdatedFeatures = Object.keys(Modernizr).filter(feature => !Modernizr[feature]); | |||
const unsupportedBrowserFlag = getFeatureFlag('frontier_snow_unsupportedBrowser', {appName: process.env.APP_NAME}); |
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.
I don't think this works here
"test/dom/intersection-observer", | ||
"test/es6/promises", | ||
"test/network/fetch", | ||
"test/url/parser" |
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.
Looked at packages/react-scripts/polyfills.js
and usage of these across apps to gather this list.
…de-landing-page-to-react
…er-upgrade-landing-page-to-react
This reverts commit 98d0078.
…ge-to-react' of https://github.com/fs-webdev/create-react-app into rileytb/EOLBFRST-253_wd-move-browser-upgrade-landing-page-to-react
Adding an "upgrade your outdated browser" banner that will display with feature detection.
Associated story EOLBFRST-253
Along with that this PR adds in modernizr (feature checking library). There is now a
pre:build
script which generates themodernizr.js
file based on themodernizr-config.json
file.Modernizr config has in it these options as I saw them giving us coverage for things that we use and keep us from supporting things like IE.