cra-template-typescript
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "cra-template-typescript", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"keywords": [ | ||
@@ -28,3 +28,3 @@ "react", | ||
], | ||
"gitHead": "d7c68420f7ca1c03b50a2c6b9ecd9c7bf94a10f6" | ||
"gitHead": "8b0dd54c7a7488d46a43ff6d1c67a6b41c31feb1" | ||
} |
# https://www.robotstxt.org/robotstxt.html | ||
User-agent: * | ||
Disallow: |
@@ -36,3 +36,3 @@ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). | ||
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. | ||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. | ||
@@ -39,0 +39,0 @@ You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. |
@@ -141,6 +141,10 @@ // This optional code is used to register a service worker. | ||
if ('serviceWorker' in navigator) { | ||
navigator.serviceWorker.ready.then(registration => { | ||
registration.unregister(); | ||
}); | ||
navigator.serviceWorker.ready | ||
.then(registration => { | ||
registration.unregister(); | ||
}) | ||
.catch(error => { | ||
console.error(error.message); | ||
}); | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35974
267