UNPKG
cli-learning-in-nodejs
Version:
latest (1.0.1)
1.0.1
1.0.0
github.com/MCgabi/cli-learning
MCgabi/cli-learning
cli-learning-in-nodejs
/
src
/
shell.js
7 lines
(6 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
shell =
require
(
"shelljs"
);
const
chalk =
require
(
"chalk"
);
module
.
exports
=
(
data
) =>
{ shell.
mkdir
(data.
PROJECTNAME
);
console
.
log
(chalk.
green
(
"Your project folder is set already!"
)); };