This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
privacytools.io/bin/get-html-ls.js
2019-08-03 19:21:17 -07:00

13 lines
264 B
JavaScript

const glob = require('glob');
const pattern = '**/*.html';
const options = {
'ignore': [
'_site/**/*.html',
'node_modules/**/*.html'
]
};
glob(pattern, options, (error, files) => {
if (error) throw error;
process.stdout.write(files.join('\n') + '\n');
});