Lines Matching refs:unixFilePath
135 let unixFilePath: string = toUnixPath(filePath);
136 unixFilePath = unixFilePath.substring(0, filePath.lastIndexOf('.')); // remove extension
159 const projectFilePath: string = unixFilePath.replace(toUnixPath(pkgPath) + '/', '');
169 let unixFilePath: string = toUnixPath(filePath);
170 unixFilePath = unixFilePath.substring(0, filePath.lastIndexOf('.')); // remove extension
184 const projectFilePath: string = unixFilePath.replace(projectRootPath, '');
197 unixFilePath, constant
224 const { projectFilePath, unixFilePath, packageDir, projectRootPath, moduleRootPath, constant
229 if (unixFilePath.indexOf(tryProjectPkg) !== -1) {
230 …return unixFilePath.replace(tryProjectPkg, `${packageDir}`).replace(new RegExp(packageDir, 'g'), P…
237 if (unixFilePath.indexOf(tryModulePkg) !== -1) {
238 …return unixFilePath.replace(tryModulePkg, `${packageDir}@${moduleName}`).replace(new RegExp(packag…
258 if (unixFilePath.indexOf(tryProjectPkg) !== -1) {
259 …return unixFilePath.replace(tryProjectPkg, `${packageDir}/${ONE}`).replace(new RegExp(packageDir, …
263 if (unixFilePath.indexOf(tryModulePkg) !== -1) {
264 …return unixFilePath.replace(tryModulePkg, `${packageDir}/${ZERO}`).replace(new RegExp(packageDir, …
273 if (unixFilePath.indexOf(moduleRootPath + '/') !== -1) {
274 const relativeModulePath: string = unixFilePath.replace(moduleRootPath + '/', '');