(baseFilename)
| 64 | * Get various possible .{baseFilename}rc file paths |
| 65 | */ |
| 66 | const getRcLocalPath = (baseFilename) => |
| 67 | path.join(process.cwd(), getRcFileName(baseFilename)) |
| 68 | const getRcDefaultPath = (baseFilename = 'serverless') => |
| 69 | path.join(os.homedir(), getRcFileName(baseFilename)) |
| 70 | const getRcDefaultConfigPath = (baseFilename) => |
no test coverage detected