mirror of
https://github.com/xodio/xod.git
synced 2026-03-18 22:56:51 +01:00
17 lines
571 B
JavaScript
17 lines
571 B
JavaScript
import path from 'path';
|
|
|
|
export const resolveBundledWorkspacePath = () =>
|
|
path.resolve(__dirname, '..', 'bundle', 'workspace');
|
|
|
|
export const resolveBundledTabtestWorkspacePath = () =>
|
|
path.resolve(__dirname, '..', 'bundle', 'tabtest-workspace');
|
|
|
|
export const resolveBundledTabtestSrcPath = () =>
|
|
path.resolve(__dirname, '..', 'bundle', 'tabtest-cpp');
|
|
|
|
export const resolveBundledCatch2Path = () =>
|
|
path.resolve(__dirname, '..', 'bundle', 'catch2');
|
|
|
|
export const resolveBundledCatch2UtilsPath = () =>
|
|
path.resolve(__dirname, '..', 'bundle', 'catch2utils');
|