cleanstyles
Advanced tools
Comparing version 2.0.2 to 2.0.3
{ | ||
"name": "cleanstyles", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "project to detect unused stylesheet in react-native codebase", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -81,9 +81,13 @@ #!/usr/bin/env node | ||
console.log(path, "path-path", process.cwd()); | ||
console.log(process.cwd() + "/" + path); | ||
console.log(chalk.white.bgGreen.bold(`Your Starting Path is:${path}`)); | ||
console.log( | ||
chalk.white.bgGreen.bold( | ||
`Your Starting Path is:${process.cwd() + "/" + path}` | ||
) | ||
); | ||
findUnusedStyles(path); | ||
findUnusedStyles(process.cwd() + "/" + path); | ||
}; | ||
init(); |
5977
171