Comparing version 0.0.1 to 0.0.2
@@ -7,3 +7,3 @@ const chalk = require('chalk'); | ||
const removeDirectory = (filepath) => { | ||
console.log(`Deleting: ${filepath}`); | ||
console.log(chalk.yellow(`Deleting: ${filepath}`)); | ||
del.sync(filepath); | ||
@@ -14,4 +14,4 @@ console.log(chalk.green(`Deleted: ${filepath}`)); | ||
const executeCommand = (command) => { | ||
console.log(`Executing: ${command}`); | ||
execSync(command); | ||
console.log(chalk.yellow(`Executing: ${command}`)); | ||
execSync(command, { stdio: [ 0, 1, 2 ] }); | ||
console.log(chalk.green(`Executed: ${command}`)); | ||
@@ -18,0 +18,0 @@ }; |
{ | ||
"name": "fuck-npm", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Removes `node_modules` & runs `npm install`", | ||
@@ -5,0 +5,0 @@ "author": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3252