Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
9 changes: 6 additions & 3 deletions csscomb.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process.stdin.on('end', function () {
var Comb = require('./node_modules/csscomb/lib/csscomb'),
comb = new Comb(),
syntax = process.argv[2],
config, combed;
config, promise;

try {
config = JSON.parse(process.argv[3]);
Expand All @@ -25,7 +25,10 @@ process.stdin.on('end', function () {
config ||
Comb.getConfig('csscomb');

combed = comb.configure(config).processString(str, {syntax: syntax});
process.stdout.write(combed);
promise = comb.configure(config).processString(str, {syntax: syntax});

promise.then(function(string) {
process.stdout.write(string);
})
});

Binary file added node_modules/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion node_modules/.bin/csscomb

This file was deleted.

2 changes: 2 additions & 0 deletions node_modules/.bin/csscomb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

77 changes: 0 additions & 77 deletions node_modules/csscomb/.jscs.json

This file was deleted.

35 changes: 0 additions & 35 deletions node_modules/csscomb/.jshint-groups.js

This file was deleted.

8 changes: 0 additions & 8 deletions node_modules/csscomb/.npmignore

This file was deleted.

9 changes: 0 additions & 9 deletions node_modules/csscomb/.travis.yml

This file was deleted.

86 changes: 85 additions & 1 deletion node_modules/csscomb/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 0 additions & 65 deletions node_modules/csscomb/CONTRIBUTE.md

This file was deleted.

7 changes: 5 additions & 2 deletions node_modules/csscomb/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 48 additions & 3 deletions node_modules/csscomb/config/csscomb.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading