make fs ops depend on __enhancerElectronApi for relative paths

(update bundled index.cjs)
This commit is contained in:
dragonwocky 2021-12-13 13:34:39 +11:00
parent 2428a42103
commit 2775fab5d4
2 changed files with 14 additions and 14 deletions

View File

@ -13,6 +13,13 @@
import * as fs from '../env/fs.mjs';
/**
* get an absolute path to files within notion
* @param {string} path - relative to the root notion/resources/app/ e.g. renderer/search.js
* @runtime electron
*/
export const notionPath = fs.notionPath;
/**
* transform a path relative to the enhancer root directory into an absolute path
* @type {function}
@ -46,10 +53,3 @@ export const getText = fs.getText;
* @returns {boolean} whether or not the file exists
*/
export const isFile = fs.isFile;
/**
* get an absolute path to files within notion
* @param {string} path - relative to the root notion/resources/app/ e.g. renderer/search.js
* @runtime electron
*/
export const notionPath = fs.notionPath;

File diff suppressed because one or more lines are too long