Skip to content

Commit 1137249

Browse files
author
Eric Swanson
committed
feat: build script
1 parent 5210376 commit 1137249

File tree

4 files changed

+121
-1
lines changed

4 files changed

+121
-1
lines changed

.vscode/tasks.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "build",
9+
"problemMatcher": []
10+
}
11+
]
12+
}

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# My Book Reviews
22

3+
<!--book-reviews:begin-->
34
* [Future Shock](./future-shock/)
45
* [Scaling Leadership: Building Organizational Capability and Capacity to Create Outcomes that Matter Most](./scaling-leadership-building-organizational-capability-and-capacity-to-create-outcomes-that-matter-most/)
5-
* [The 7 Habits of Highly Effective People](./the-7-habits-of-highly-effective-people/)
6+
* [Talk Lean: Shorter Meetings, Quick Results, Better Relations](./talk-lean/)
7+
* [The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change](./the-7-habits-of-highly-effective-people/)
68
* [The Phoenix Project](./the-phoenix-project/)
9+
<!--book-reviews:end-->
710

811
You will find these reviews on [Amazon](https://www.amazon.com/gp/profile/amzn1.account.AGOXFYJH6BOLIZ5AUIQDU3T5G3KA), [goodreads](https://www.goodreads.com/user/show/100965628-eric-swanson), and O'Reilly.

build.js

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
#!/usr/bin/env node
2+
3+
const { execSync, spawnSync } = require('child_process');
4+
const fs = require('fs');
5+
const path = require('path');
6+
7+
const allPaths = fs.readdirSync('./');
8+
9+
const bookReviews = [];
10+
11+
allPaths.forEach((somePath) => {
12+
13+
// console.log('somePath', somePath);
14+
15+
const readmeFilePath = path.join(somePath, './README.adoc');
16+
const indexFilePath = path.join(somePath, './index.html');
17+
18+
if (fs.existsSync(readmeFilePath)) {
19+
20+
const readmeContent = fs.readFileSync(readmeFilePath, { encoding: 'utf8' });
21+
22+
const lines = readmeContent.split('\n');
23+
24+
const title = (lines[0].length > 0 ? lines[0].substr(2) : lines[1].substr(2)).trim();
25+
26+
bookReviews.push({
27+
path: somePath,
28+
title,
29+
});
30+
31+
console.log(title);
32+
console.log('Converting AsciiDoc to HTML...', somePath);
33+
34+
const cmd = 'asciidoctor';
35+
const argv = ['-o', indexFilePath, readmeFilePath];
36+
37+
const formattedCommand = cmd + ' ' + argv.join(' ');
38+
39+
// execSync(formattedCommand, { stdio: 'inherit' });
40+
}
41+
});
42+
43+
const bookReviewMarkdownListLinks = bookReviews
44+
.sort((a, b) => {
45+
return a.title - b.title;
46+
})
47+
.map((bookReview) => {
48+
return `* [${bookReview.title}](./${bookReview.path}/)`;
49+
});
50+
51+
// console.log(bookReviewMarkdownListLinks);
52+
53+
console.log('Generating list of book reviews...');
54+
55+
const readmeFilePath = './README.md';
56+
57+
const readmeContent = fs.readFileSync(readmeFilePath, { encoding: 'utf8' });
58+
59+
const readmeBookReviewsStartTag = '<!--book-reviews:begin-->';
60+
const readmeBookReviewsEndTag = '<!--book-reviews:end-->';
61+
const readmeCurrentBookReviewsStartIx = readmeContent.indexOf(readmeBookReviewsStartTag);
62+
const readmeCurrentBookReviewsEndIx = readmeContent.indexOf(readmeBookReviewsEndTag, readmeCurrentBookReviewsStartIx) + readmeBookReviewsEndTag.length;
63+
64+
const readmeCurrentBookReviews = readmeContent.substr(readmeCurrentBookReviewsStartIx, readmeCurrentBookReviewsEndIx - readmeCurrentBookReviewsStartIx);
65+
66+
// console.log('');
67+
// console.log('Current reviews:');
68+
// console.log(readmeCurrentBookReviews);
69+
70+
const readmeNewBookReviews = `${readmeBookReviewsStartTag}
71+
${bookReviewMarkdownListLinks.join('\n')}
72+
${readmeBookReviewsEndTag}`;
73+
74+
// console.log('');
75+
// console.log('New reviews:');
76+
// console.log(readmeNewBookReviews);
77+
78+
const readmeNewContent = readmeContent.replace(readmeCurrentBookReviews, readmeNewBookReviews);
79+
80+
fs.writeFileSync(readmeFilePath, readmeNewContent, { encoding: 'utf8' });
81+
82+
console.log('Book reviews successfully generated!');

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "book-reviews",
3+
"version": "1.0.0",
4+
"description": "Eric Swanson's Book Reviews",
5+
"author": "Eric Swanson",
6+
"license": "ISC",
7+
"keywords": [
8+
"book-reviews",
9+
"books",
10+
"reviews"
11+
],
12+
"homepage": "https://github.com/ericis/book-reviews#readme",
13+
"bugs": {
14+
"url": "https://github.com/ericis/book-reviews/issues"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/ericis/book-reviews.git"
19+
},
20+
"scripts": {
21+
"build": "node build.js"
22+
}
23+
}

0 commit comments

Comments
 (0)