Skip to content

Commit

Permalink
Merge pull request #86 from loringdodge/update-csscomb
Browse files Browse the repository at this point in the history
Upgrade to CSScomb 4.2.0
  • Loading branch information
loringdodge authored Oct 6, 2017
2 parents bc9aef9 + 0ceb8d0 commit d5f491b
Show file tree
Hide file tree
Showing 2,420 changed files with 83,571 additions and 44,274 deletions.
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

0 comments on commit d5f491b

Please sign in to comment.