mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 15:51:31 +00:00
32 lines
1.4 KiB
JavaScript
Executable File
32 lines
1.4 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/* eslint-disable consistent-return, no-console */
|
|
const fs = require('fs');
|
|
|
|
function escapeRegExp(text) {
|
|
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
|
|
}
|
|
|
|
const filePath = `${process.cwd()}/README.md`;
|
|
const findPattern = escapeRegExp("[//]: # 'AUTO INSERT HEADER PREPUBLISH'");
|
|
const text = `
|
|
> Part of [Open Web Components](https://github.com/open-wc/open-wc/): guides, tools and libraries for modern web development and web components
|
|
|
|
[](https://circleci.com/gh/open-wc/open-wc)
|
|
[](https://www.browserstack.com/automate/public-build/M2UrSFVRang2OWNuZXlWSlhVc3FUVlJtTDkxMnp6eGFDb2pNakl4bGxnbz0tLUE5RjhCU0NUT1ZWa0NuQ3MySFFWWnc9PQ==--86f7fac07cdbd01dd2b26ae84dc6c8ca49e45b50)
|
|
[](https://renovatebot.com/)
|
|
`.trim();
|
|
|
|
fs.readFile(filePath, 'utf8', (readError, data) => {
|
|
if (readError) {
|
|
return console.log(readError);
|
|
}
|
|
|
|
const result = data.replace(new RegExp(findPattern), text);
|
|
fs.writeFile(filePath, result, 'utf8', writeError => {
|
|
if (writeError) {
|
|
return console.log(writeError);
|
|
}
|
|
});
|
|
});
|