This file contains hidden or 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/react-native-codegen/android/build.gradle b/node_modules/react-native-codegen/android/build.gradle | |
new file mode 100644 | |
index 0000000..4152a5e | |
--- /dev/null | |
+++ b/node_modules/react-native-codegen/android/build.gradle | |
@@ -0,0 +1,25 @@ | |
+/* | |
+ * Copyright (c) Facebook, Inc. and its affiliates. | |
+ * | |
+ * This source code is licensed under the MIT license found in the |
This file contains hidden or 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
/** | |
* Original Author: @leko https://github.com/leko | |
*/ | |
const _ = require("lodash"); | |
const toSlug = (repo) => repo.nameWithOwner; | |
const obj = { | |
/** | |
* github の graphql api の結果を入れる。 |
This file contains hidden or 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
❯ ./scripts/test-manual-e2e.sh | |
Preparing version 1000.0.0 | |
> Task :ReactAndroid:androidJavadoc | |
/Users/jessekatsumata/.ghq/github.com/Naturalclar/react-native/ReactAndroid/src/main/java/com/fac | |
ebook/yoga/YogaNode.java:10: error: cannot find symbol | |
import javax.annotation.Nullable; | |
^ | |
symbol: class Nullable | |
location: package javax.annotation |
This file contains hidden or 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
// for Non-React Projects | |
module.exports = { | |
extends: ["airbnb-base", "plugin:prettier/recommended"] | |
}; | |
// for React Projects | |
module.exports = { | |
extends: ["airbnb", "plugin:prettier/recommended"] | |
}; |
This file contains hidden or 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
const blacklist = require('metro-config/src/defaults/blacklist') |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
This file contains hidden or 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
"editor.formatOnSave": true |
This file contains hidden or 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
class App extends Component { | |
constructor() { | |
super(); | |
this.state = { count: 0 }; | |
} | |
setCount(val) { |
This file contains hidden or 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
/* How to access the PC from a struct ucontext */ | |
#if defined(__arm__) || defined(__arm64__) | |
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__pc | |
#else | |
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__rip | |
#endif |
NewerOlder