0.0.6 • Published 6 years ago
brainwave v0.0.6
brainwave
Walk the files and control the ones with frontmatter in them
Let's say you have a bunch of files with frontmatter in them. Like MDX or similar.
Let's say you have fields in that frontmatter that you wanna be able to query against, or manipulate, but you don't wanna do it by hand.
Use brainwave!
Installation
yarn global add brainwaveDisclaimer
brainwave is a powerful tool which can change tons of files in your codebase. Using brainwave in a folder without version control is likely a mistake. Protect yourself. Remember to use the --dryRun flag to see what would have run instead. Use brainwave at your own risk. Please log any issues on Github.
Usage
cd your-projectbrainwave --init- generate a basicbrainwave.config.jsfile- Open
brainwave.config.jsin your favorite editor and make changes relative to your codebase:
module.exports = {
// telepathy specifies function predicates to run against the codebase
telepathy: {
// this will print out all files which have a "review" key in their frontmatter
review: z => z && z.review
},
// control specifies both predicates and mutations, each a function
control: {
edited: [
// *REMEMBER* to use --dryRun and it will instead tell you what _would_ be modified
// this runs always!
() => true,
// it will add / update dateEdited field in the mdx files
x => (
x && x.stats && x.stats.ctime
? { dateEdited: new Date(x.stats.ctime) }
: {}
)
]
}
}- Once you've made changes, run
brainwave --telepathyto see only telepathy calls. - Run
brainwave --dryRunto see what your changes incontrolwill do. - If you're happy with the changes you're about to make (and you're using version control like a sane person), try running
brainwavewith no--dryRunflag, and it will update all.mdxand.mdfile in the local folder, excludingnode_modules.
Built by