Skip to content

Commit cb1621b

Browse files
committed
CSSP => Gonzales
1 parent 7134b74 commit cb1621b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/csscomb.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var cssp = require('cssp');
1+
var gonzales = require('gonzales');
22
var minimatch = require('minimatch');
33
var vow = require('vow');
44
var vfs = require('vow-fs');
@@ -85,12 +85,12 @@ Comb.prototype = {
8585
processString: function(text, filename) {
8686
var tree;
8787
try {
88-
tree = cssp.parse(text);
88+
tree = gonzales.srcToCSSP(text);
8989
} catch (e) {
9090
throw new Error('Parsing error at ' + filename + ': ' + e.message);
9191
}
9292
tree = this.processTree(tree);
93-
return cssp.translate(tree);
93+
return gonzales.csspToSrc(tree);
9494
},
9595

9696
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"commander": "1.1.1",
25-
"cssp": "1.0.6",
25+
"gonzales": "1.0.6",
2626
"minimatch": "0.2.12",
2727
"vow": "0.3.7",
2828
"vow-fs": "0.1.13"

0 commit comments

Comments
 (0)