File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.0.4 - 2014-01-16
4+ - Fixed relative path to config (#164 )
5+
36## 2.0.3 - 2014-01-16
47- Documentation moved to ` doc ` directory
58- Fixed incorrect left indent (#153 )
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ function getConfigPath(configPath) {
5757 return getConfigPath ( configPath ) ;
5858}
5959
60- var configPath = program . config || getConfigPath ( ) ;
60+ var configPath = program . config && path . resolve ( process . cwd ( ) , program . config ) || getConfigPath ( ) ;
6161var comb = new Comb ( ) ;
6262
6363if ( program . detect ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " csscomb" ,
33 "description" : " CSS coding style formatter" ,
4- "version" : " 2.0.3 " ,
4+ "version" : " 2.0.4 " ,
55 "homepage" : " http://csscomb.com/" ,
66 "author" : " Mikhail Troshev <mishanga@yandex-team.ru>" ,
77 "repository" : " https://github.com/csscomb/csscomb.js" ,
You can’t perform that action at this time.
0 commit comments