Files
tools-web/scripts/preinstall.js
T
2023-11-28 16:40:53 +08:00

7 lines
215 B
JavaScript

if (!/pnpm/.test(process.env.npm_execpath || '')) {
console.warn(
`\u001b[33mThis repository must using pnpm as the package manager ` +
` for scripts to work properly.\u001b[39m\n`,
)
process.exit(1)
}