element-plus/build/get-deps.ts

13 lines
237 B
TypeScript

/* eslint-disable */
/**
*
* @param {PathLike} path path to dependencies
* @returns {Array<string>}
*/
export default path => {
const pkgJson = require(path)
const { dependencies } = pkgJson
return Object.keys(dependencies)
}