serverless/lib/utils/getServerlessDir.js
2017-05-24 00:20:40 -07:00

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;