mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
const path = require('path');
|
|
const os = require('os');
|
|
|
|
// get .serverless home path
|
|
function getServerlessDir() {
|
|
return path.join(os.homedir(), '.serverless');
|
|
}
|
|
|
|
module.exports = getServerlessDir;
|