1. 19 Apr, 2016 5 commits
  2. 31 Mar, 2016 2 commits
  3. 26 Mar, 2016 4 commits
    • Merge pull request #1430 from xzyfer/feat/process-sass-deprecation-warning · 7c247165
      Ouptut a deprecation warning to stdout when using process.sass
      Michael Mifsud authored
    • Ouptut a deprecation warning to stdout when using process.sass · adb6166b
      This is an undocumented internal API that will be removed. Access
      `process.sass` will produce the following warning.
      
      >Deprecation warning: `process.sass` is an undocumented internal
      that will be removed in future versions of Node Sass.
      xzyfer authored
    • Merge pull request #1428 from xzyfer/feat/better-binary-error-messages · d76923b4
      Better error messages for missing binaries
      Michael Mifsud authored
    • Better error messages for missing binaries · cf87e0bc
      This is another iteration on improving the infamous
      >The `libsass` binding was not found
      
      Messages will now provide more useful information which will
      - give users a chance to resolve the problem themselves
      - give us more debug information from the error message alone
      
      Error messages produce now will look like:
      
      >Node Sass does not yet support your current environment: OS X 64-bit with Node.js 4.x
      >For more information on which environments are supported please see:
      >http://....
      
      >Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 4.x
      >Found bindings for the following environments:
      >  - OS X 64-bit with io.js 3.x
      >  - OS X 64-bit with Node.js 5.x
      >This usually happens because your environment has changed since running `npm install`.
      >Run `npm rebuild node-sass` to build the binding for your current environment.
      
      >Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 4.x
      >This usually happens because your environment has changed since running `npm install`.
      >Run `npm rebuild node-sass` to build the binding for your current environment.
      xzyfer authored
  4. 25 Mar, 2016 3 commits
  5. 23 Mar, 2016 11 commits
  6. 19 Mar, 2016 4 commits
  7. 16 Mar, 2016 2 commits
  8. 18 Feb, 2016 2 commits
  9. 17 Feb, 2016 1 commit
  10. 15 Feb, 2016 2 commits
  11. 04 Feb, 2016 1 commit
  12. 03 Feb, 2016 1 commit
  13. 02 Feb, 2016 2 commits
    • Add bugs url to package.json · 8d6b9196
      Maintainers get a lot of emails about errors from users whom we inevitably have to direct to the issue tracker.
      
      I suspect this is because, when an error happens, users are encouraged to run either `npm bugs` or `npm owner ls`.
      
      `npm bugs` would fail without a bugs url, so they'll move onto `npm owner ls` and subsequently email us.
      
      By adding the `bugs` url to the package.json, _hopefully_ this will mitigate some of the emails the maintainers receive.
      Keith Cirkel authored