1. 11 Mar, 2015 7 commits
    • 3.0.0-preview · 4921ee77
      Adeel authored
    • Package: Bumps nan version. · 02d9cf96
      Adeel authored
    • Test: Add tests for extensions. · b2d46cdf
      PR URL: #743.
      Adeel authored
    • Build: Uses modules version instead of v8. · 62dc218e
      * Pointed out by @saper via #694.
      
      PR URL: #743.
      Adeel authored
    • Build: Centralises binary naming conventions. · 2220ba96
      * Delivers binary name, paths and download URL
        from lib/extensions.js.
      
      * Allows user to set binary name as environment
        variable with `SASS_BINARY_NAME`.
        * Note: this will supersede default name.
      * Allows user to set binary name as in package
        file `"nodeSassConfig": { "binary-name": "" }`.
        * Note: this will supersede default name and
          `SASS_BINARY_NAME` environment variable.
      * Allows user to set binary name as parameter to
        invoke any node-sass script with
        `--binary-name` flag.
        * Note: this will supersede default name, name
          defined in package `nodeSassConfig` as well
          as the `SASS_BINARY_NAME` environment
          variable.
      
      * This binary name will be used to construct the:
        * Binary path.
        * Binary download URL.
        * Upload URL.
      
      * Allows user to set binary path as environment
        variable with `SASS_BINARY_PATH`.
        * Note: this will supersede default path.
      * Allows user to set binary name as in package
        file `"nodeSassConfig": { "binary-path": "" }`.
        * Note: this will supersede default path and
          `SASS_BINARY_PATH` environment variable.
      * Allows user to set binary path as parameter to
        invoke any node-sass script with
        `--binary-path` flag.
        * Note: this will supersede default path, path
          as well as the `SASS_BINARY_PATH` environment
          variable.
      
      * This binary path will be used when:
        * Requiring node-sass package.
        * Downloading binary.
        * Uploading binary.
      
      * Wraps all extensions in `process.sass`
        namespace.
      
      Issue URL: #712.
      PR URL: #743.
      Adeel authored
  2. 07 Mar, 2015 1 commit
  3. 03 Mar, 2015 1 commit
  4. 02 Mar, 2015 4 commits
  5. 01 Mar, 2015 6 commits
  6. 28 Feb, 2015 13 commits
  7. 27 Feb, 2015 2 commits
  8. 25 Feb, 2015 2 commits
  9. 24 Feb, 2015 3 commits
    • Standardizes Readme to Spaces · a84fcea4
      While updating the readme, there was inconsistency between tabs and spaces
      this makes it all-spaces, which is in alignment with the JS standards for
      the project. (Plus, mixing the two is some horrible form of evil)
      Jakob Heuser authored
    • Adding a backwards compatible node-style callback · 69a45603
      This is node-style callbacks for #676. This allows us to release
      the new callback style without introducing backwards incompatible
      changes (or making changes to the binary from 2.0.1). If a node style
      callback is provided, it will be used. For now, this stacks with
      the original `options.success` and `options.error`, although it can
      be trivially changed to an xor.
      
      To highlight the new interface, a separate `describe` was added to the
      tests which identifies the `{options}, cb` interface and tests it
      independently.
      Jakob Heuser authored
    • Merge pull request #701 from am11/master · 43dbafb8
      CLI: Retires stdout option
      Adeel Mujahid authored
  10. 23 Feb, 2015 1 commit
    • CLI: Retires stdout option. · 433e939d
      When no destination or output folder is provided,
      it will print the output to stdout.
      
      If the source-map option was set, it will print
      it as well.
      
      Issue URL: #669.
      PR URL: #701.
      Adeel authored