Lines Matching refs:unixFilePath
92 let unixFilePath: string = toUnixPath(filePath);
93 unixFilePath = unixFilePath.substring(0, filePath.lastIndexOf('.')); // remove extension
94 let projectFilePath: string = unixFilePath.replace(toUnixPath(pkgPath), '');
123 let unixFilePath: string = toUnixPath(filePath);
124 unixFilePath = unixFilePath.substring(0, filePath.lastIndexOf('.')); // remove extension
138 const projectFilePath: string = unixFilePath.replace(projectRootPath, '');
151 unixFilePath, constant
178 const { projectFilePath, unixFilePath, packageDir, projectRootPath, moduleRootPath, constant
183 if (unixFilePath.indexOf(tryProjectPkg) !== -1) {
184 …return unixFilePath.replace(tryProjectPkg, `${packageDir}`).replace(new RegExp(packageDir, 'g'), P…
191 if (unixFilePath.indexOf(tryModulePkg) !== -1) {
192 …return unixFilePath.replace(tryModulePkg, `${packageDir}@${moduleName}`).replace(new RegExp(packag…
205 if (unixFilePath.indexOf(tryProjectPkg) !== -1) {
206 …return unixFilePath.replace(tryProjectPkg, `${packageDir}/${ONE}`).replace(new RegExp(packageDir, …
210 if (unixFilePath.indexOf(tryModulePkg) !== -1) {
211 …return unixFilePath.replace(tryModulePkg, `${packageDir}/${ZERO}`).replace(new RegExp(packageDir, …
220 if (unixFilePath.indexOf(moduleRootPath + '/') !== -1) {
221 const relativeModulePath: string = unixFilePath.replace(moduleRootPath + '/', '');