Skip to content

Commit 510e0f3

Browse files
committed
print telease details
1 parent 1a0443d commit 510e0f3

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
temp/
22
docs/generated/
3-
43
# Logs
54
logs
65
*.log
@@ -131,3 +130,5 @@ dist
131130
.yarn/build-state.yml
132131
.yarn/install-state.gz
133132
.pnp.*
133+
134+
.idea

.idea/public-stats.iml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ function ensureDirectoryExists(dirPath) {
4848
async function updateDocs() {
4949
ensureDirectoryExists('docs/generated');
5050
const releases = await getReleaseDetails();
51+
console.log("Releases Details from GitHub", JSON.stringify(releases, null, 2));
5152
// for debugging uncomment the below lines and comment the github fetch line
5253
// fs.writeFileSync('temp/release.json', JSON.stringify(releases, null, 2)); // only do this once and comment
5354
//const releases = JSON.parse(fs.readFileSync('temp/release.json'));

0 commit comments

Comments
 (0)