Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doesn't default when no options are passed #3

Closed
kylemac opened this issue Oct 6, 2016 · 0 comments
Closed

doesn't default when no options are passed #3

kylemac opened this issue Oct 6, 2016 · 0 comments

Comments

@kylemac
Copy link
Contributor

kylemac commented Oct 6, 2016

when you don't pass any options to main function, it doesn't create the options object and then you get Cannot read property 'parser' of undefined

// require statements...

const f = path.join(__dirname, 'file.css')
postcss(cssStandards())
  .process(fs.readFileSync(f, 'utf8'))
  .then((res) => {
    console.log('here')
    console.log(res.content)
  })
  .catch((err) => {
    console.log(err)
  })

error:
let parser = options.parser || sugarss
TypeError: Cannot read property 'parser' of undefined

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant