Skip to content

Commit

Permalink
Merge pull request #968 from onflow/brian-doyle/bump-node-jq
Browse files Browse the repository at this point in the history
Bump node-jq to current and tweak script to work on M2 macs
  • Loading branch information
nialexsan authored Oct 24, 2024
2 parents d8bfade + 1ffeb5c commit 4280387
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 614 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "7.32.2",
"node-jq": "2.3.5",
"node-jq": "6.0.1",
"remark-cli": "^12.0.0",
"remark-validate-links": "^12.1.1",
"typescript": "*"
Expand All @@ -86,4 +86,4 @@
"engines": {
"node": ">=16.14"
}
}
}
6 changes: 5 additions & 1 deletion scripts/import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ copyRepoFilesToDest() {
}

renameEcosystemOverview() {
sed -i'' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
else
sed -i'' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
fi
}

cloneDocReposToDest
Expand Down
Loading

0 comments on commit 4280387

Please sign in to comment.