BREAKING CHANGE(szci): Rename project from npmci to szci and migrate runtime to Deno; add compiled binaries, installer and wrapper; update imports, env handling and package metadata
This commit is contained in:
16
ts/szci.paths.ts
Normal file
16
ts/szci.paths.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as plugins from './szci.plugins.ts';
|
||||
|
||||
export const cwd = Deno.cwd();
|
||||
|
||||
// package paths
|
||||
export const SzciPackageRoot = plugins.path.join(
|
||||
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
|
||||
'../'
|
||||
);
|
||||
export const SzciPackageConfig = plugins.path.join(SzciPackageRoot, './config.json');
|
||||
|
||||
// project paths
|
||||
export const SzciProjectDir = cwd;
|
||||
export const SzciProjectNogitDir = plugins.path.join(SzciProjectDir, './.nogit');
|
||||
export const SzciTestDir = plugins.path.join(cwd, './test');
|
||||
export const SzciCacheDir = plugins.path.join(cwd, './.npmci_cache');
|
||||
Reference in New Issue
Block a user