Skip to content

Commit

Permalink
fix: revert lastCommitAt change, update BabylonJS URL
Browse files Browse the repository at this point in the history
  • Loading branch information
giautm committed Sep 16, 2022
1 parent 10a0dd5 commit 03752b2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 12 additions & 0 deletions debug-github-repos.json
Expand Up @@ -47,5 +47,17 @@
"ios": true,
"android": true,
"template": true
},
{
"githubUrl": "https://github.com/BabylonJS/BabylonReactNative/tree/master/Modules/@babylonjs/react-native",
"npmPkg": "@babylonjs/react-native",
"examples": [
"https://github.com/BabylonJS/BabylonReactNative/tree/master/Apps",
"https://github.com/BabylonJS/BabylonReactNativeSample",
"https://github.com/runtothedoor/rotating-cube-demo-babylon-rxn"
],
"ios": true,
"android": true,
"windows": true
}
]
3 changes: 1 addition & 2 deletions react-native-libraries.json
Expand Up @@ -8644,8 +8644,7 @@
"expo": true
},
{
"githubUrl": "https://github.com/BabylonJS/BabylonReactNative/tree/master/Modules/%40babylonjs/react-native",
"npmPkg": "@babylonjs/react-native",
"githubUrl": "https://github.com/BabylonJS/BabylonReactNative/tree/master/Modules/@babylonjs/react-native",
"examples": [
"https://github.com/BabylonJS/BabylonReactNative/tree/master/Apps",
"https://github.com/BabylonJS/BabylonReactNativeSample",
Expand Down
3 changes: 1 addition & 2 deletions scripts/fetch-github-data.js
Expand Up @@ -280,8 +280,7 @@ const createRepoDataWithResponse = (json, monorepo) => {
: undefined;
}

const { nodes } = json.defaultBranchRef.target.history;
const lastCommitAt = Array.isArray(nodes) && nodes.length > 0 ? nodes[0].committedDate : null;
const lastCommitAt = json.defaultBranchRef.target.history.nodes[0].committedDate;

return {
urls: {
Expand Down

0 comments on commit 03752b2

Please sign in to comment.