View gist:341c8bd062edf2b0a9db1d7b63d5ff1a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDHEJNwDzI+eX3rtVfBic1nij6AgQmaEGpvTYh38/gWlzfgVJxUGRFI89iJ9POF1bDYVdJGYYMqFP4woXTsBs3g= mac-QRQYWJ121C:5C7F0A79-D376-415C-B74C-36C375DAA72B:oalikhanov |
View eslint-plugin-react-hooks+4.6.0.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js b/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
index 441442f..a536c7a 100644 | |
--- a/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
+++ b/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js | |
@@ -735,7 +735,29 @@ var ExhaustiveDeps = { | |
}, | |
enableDangerousAutofixThisMayCauseInfiniteLoops: { | |
type: 'boolean' | |
- } | |
+ }, |
View TransitionAnimator.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class TransitionAnimator { | |
let groupName = "transition.group" | |
weak var layer: CALayer? | |
init(_ view: UIView) { | |
self.layer = view.layer | |
} | |
private var group: CAAnimationGroup? { | |
return layer?.animation(forKey: groupName) as? CAAnimationGroup |