mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
15 lines
444 B
JavaScript
15 lines
444 B
JavaScript
|
|
import path from 'canonical-path';
|
||
|
|
|
||
|
|
export const RUNFILES_ROOT = path.resolve(process.env.RUNFILES, 'angular');
|
||
|
|
|
||
|
|
export function getExamplesBasePath(root) {
|
||
|
|
return path.join(root, 'aio', 'content', 'examples');
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getSharedPath(root) {
|
||
|
|
return path.join(root, 'aio', 'tools', 'examples', 'shared');
|
||
|
|
}
|
||
|
|
|
||
|
|
export const EXAMPLE_CONFIG_FILENAME = 'example-config.json';
|
||
|
|
export const STACKBLITZ_CONFIG_FILENAME = 'stackblitz.json';
|