2024-10-26 14:14:41 +02:00
|
|
|
import * as plugins from './plugins.js';
|
2021-12-18 01:41:50 +01:00
|
|
|
|
2022-04-14 10:38:14 +02:00
|
|
|
export const packageDir = plugins.path.join(
|
|
|
|
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
|
2024-10-26 14:14:41 +02:00
|
|
|
'../',
|
2022-04-14 10:38:14 +02:00
|
|
|
);
|
2021-12-18 01:41:50 +01:00
|
|
|
export const nogitDir = plugins.path.join(packageDir, './.nogit');
|
|
|
|
|
2022-07-30 15:49:46 +02:00
|
|
|
export const cwd = process.cwd();
|
|
|
|
|
|
|
|
export const bucketsDir = plugins.path.join(cwd, '.nogit/bucketsDir');
|