mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
22 lines
515 B
JavaScript
22 lines
515 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const fsp = require('fs').promises;
|
|
|
|
const localNpmBinPath = path.join(__dirname, '../../node_modules/npm/bin/npm-cli.js');
|
|
|
|
module.exports = fsp
|
|
.stat(localNpmBinPath)
|
|
.then(
|
|
(stats) => stats.isFile(),
|
|
(error) => {
|
|
if (error.code === 'ENOENT') return null;
|
|
throw error;
|
|
}
|
|
)
|
|
.then((isNpmInstalledLocaly) => {
|
|
return isNpmInstalledLocaly
|
|
? { command: 'node', args: [localNpmBinPath] }
|
|
: { command: 'npm', args: [] };
|
|
});
|