mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
23 lines
581 B
JavaScript
23 lines
581 B
JavaScript
/**
|
|
* notion-enhancer
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import fsp from 'fs/promises';
|
|
|
|
export default async function (filepath) {
|
|
// so that e.g. tabs access and modify the template
|
|
const contents = await fsp.readFile(filepath, 'utf8');
|
|
await fsp.writeFile(
|
|
filepath,
|
|
contents.replace(
|
|
/electron_1\.Menu\.setApplicationMenu\(menu\);/g,
|
|
'electron_1.Menu.setApplicationMenu(menu); return template;'
|
|
)
|
|
);
|
|
return true;
|
|
}
|