Lines Matching refs:sourceDir
93 async function copyAssets(sourceDir, targetDir) { argument
96 for (const entry of await readdir(sourceDir, { withFileTypes: true })) {
97 const sourcePath = path.join(sourceDir, entry.name);
117 async function copyFonts(sourceDir, files) { argument
121 await copyFileEnsuringDir(path.join(sourceDir, file), path.join(fontDir, file));
130 const sourceDir = path.join(nodeModulesDir, packageName);
134 const sourcePath = path.join(sourceDir, file);
187 const sourceDir = path.join(nodeModulesDir, packageName);
196 const cssSource = path.join(sourceDir, 'dist', 'assets', 'css', 'bpmn-js-bpmnlint.css');
217 const sourceDir = path.join(nodeModulesDir, pkg.name);
218 const sourceAssetsDir = path.join(sourceDir, pkg.assetsDir);
219 const sourceFontsDir = path.join(sourceDir, pkg.fontsDir);