2025-07-18 10:43:39 +00:00
|
|
|
import * as plugins from './bunq.plugins.js';
|
2025-07-18 11:33:13 +00:00
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { dirname } from 'path';
|
|
|
|
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
|
|
const __dirname = dirname(__filename);
|
2019-10-02 23:34:05 +02:00
|
|
|
|
|
|
|
export const packageDir = plugins.path.join(__dirname, '../');
|
|
|
|
export const nogitDir = plugins.path.join(packageDir, './.nogit/');
|
|
|
|
|
2019-10-03 14:04:15 +02:00
|
|
|
export const bunqJsonProductionFile = plugins.path.join(nogitDir, 'bunqproduction.json');
|
2020-06-20 01:47:53 +00:00
|
|
|
export const bunqJsonSandboxFile = plugins.path.join(nogitDir, 'bunqsandbox.json');
|