mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const os = require('os');
|
|
|
|
// get .serverless home path
|
|
function getServerlessDir() {
|
|
return path.join(os.homedir(), '.serverless');
|
|
}
|
|
|
|
module.exports = getServerlessDir;
|