Skip to content

Commit a6d7680

Browse files
Merge pull request salsify#2 from jasonmit/add-postprocess-plugin-set
Partially fixing persistence, highlighting what else needs to be done before completion
2 parents b3053bb + 2bbb901 commit a6d7680

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/postcss-persistent-filter.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ function PostCSS(inputNode, options) {
77
this._options = options || {};
88

99
Filter.call(this, inputNode, {
10-
annotation: this._options.annotation,
11-
persist: this._options.hasOwnProperty('persist') ? this._options.persist : true
10+
annotation: this._options.annotation
1211
});
1312

1413
if (!Array.isArray(this._options.plugins)) {
@@ -21,7 +20,7 @@ function PostCSS(inputNode, options) {
2120
PostCSS.prototype = Object.create(Filter.prototype);
2221
PostCSS.prototype.constructor = PostCSS;
2322
PostCSS.prototype.extensions = ['css']
24-
PostCSS.prototype.targetExtension = 'css'
23+
PostCSS.prototype.targetExtension = 'css';
2524

2625
PostCSS.prototype.processString = function processString(content, relativeFile) {
2726
return this._processor.process(content, {

0 commit comments

Comments
 (0)