mirror of
https://github.com/strapi/strapi.git
synced 2025-08-19 06:08:50 +00:00
10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
/* eslint-disable */
|
|
var shell = require('shelljs');
|
|
shell.exec('npm -v', {silent: true}, function (code, stdout, stderr) {
|
|
if (code) throw stderr;
|
|
if (parseFloat(stdout) < 3) {
|
|
throw new Error('[ERROR: Strapi plugin] You need npm version @>=3');
|
|
process.exit(1);
|
|
}
|
|
});
|