1
0
mirror of https://github.com/tycrek/degoogle.git synced 2025-08-13 10:23:57 +02:00

_build.js minor improvements, also writes to README.md now

This commit is contained in:
tycrek
2020-05-23 18:33:07 -06:00
parent eedf96a3d7
commit 144567d036

View File

@@ -19,13 +19,13 @@ const BUILD_SECTION = {
desktopApps: () => generateCategorySection('Desktop apps', readYaml()['desktop applications']), desktopApps: () => generateCategorySection('Desktop apps', readYaml()['desktop applications']),
mobileApps: () => generateCategorySection('Mobile apps', readYaml()['desktop applications']), mobileApps: () => generateCategorySection('Mobile apps', readYaml()['desktop applications']),
hardware: () => generateCategorySection('Hardware', readYaml()['hardware']), hardware: () => generateCategorySection('Hardware', readYaml()['hardware']),
useful: () => {}, // TODO: Make these do stuff useful: () => '# Useful links, tools, and advice',
resources: () => {}, resources: () => readFile('md/_resources.md'),
books: () => {}, books: () => readFile('md/_books.md'),
blogs: () => {}, blogs: () => readFile('md/_blogs.md'),
news: () => {}, news: () => readFile('md/_news.md'),
lighterSide: () => {}, lighterSide: () => readFile('md/_lighterSide.md'),
closingRemarks: () => {} closingRemarks: () => readFile('md/_closingRemarks.md')
} }
/** /**
@@ -55,9 +55,9 @@ function __main__() {
dgSectionData.push(BUILD_SECTION.closingRemarks()); dgSectionData.push(BUILD_SECTION.closingRemarks());
// Write to the README file // Write to the README file
fs.writeFileSync(path.join(__dirname, 'README-test.md'), dgSectionData.join(os.EOL + os.EOL)); fs.writeFileSync(path.join(__dirname, 'README.md'), dgSectionData.join(os.EOL + os.EOL));
console.log(os.EOL + 'Done!') console.log('Done!')
} }
/** /**
@@ -120,6 +120,4 @@ function generateServiceSection(data) {
return serviceSection; return serviceSection;
} }
false __main__();
? console.log(YAML.parse(fs.readFileSync(path.join(__dirname, 'degoogle.yml')).toString())['web based products'].search_images)
: __main__();