(options)
| 438 | * @returns Path to the .{basePath} file in the current working directory |
| 439 | */ |
| 440 | const getDotServerlessLocalPath = (options) => { |
| 441 | const servicePath = options?.servicePath || process.cwd() |
| 442 | const basePath = `.${options?.basePath || 'serverless'}` |
| 443 | return path.join(servicePath, basePath) |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Get .{basePath} file path in the user's home directory. This can be used |
no outgoing calls
no test coverage detected
searching dependent graphs…