marceloucker/postcss-prefixer

Package does not run with node v6

Closed this issue · 1 comments

Whereas the node engine version is >=6.0.0 in package.json, the following code is not supported by node v6 :

    rule.selector = Tokenizer.stringify(interateSelectorNodes(
      Tokenizer.parse(selector),
      { prefix, ignore },
    ));

{ prefix, ignore },

Hi @baobaab ,

Object literal shorthand is supported since node v4: https://node.green/#ES2015-syntax-object-literal-extensions-shorthand-properties

Do you have any details on your issue?