1. 27 Mar, 2015 4 commits
  2. 25 Mar, 2015 2 commits
  3. 24 Mar, 2015 6 commits
  4. 23 Mar, 2015 4 commits
  5. 21 Mar, 2015 1 commit
  6. 18 Mar, 2015 5 commits
  7. 17 Mar, 2015 2 commits
    • Build with the unbundled libsass · fb3eb14f
      Use environment variables to control
      how libsass is linked:
      
      LIBSASS_EXT variable empty or unset
      
      Build a bundled libsass source
      (from src/libsass).
      This is the default.
      
      LIBSASS_EXT=auto
      
      libsass is located using pkg-config
      and linked dynamically
      
      LIBSASS_EXT=yes
      LIBSASS_CFLAGS=    compiler flags
      LIBSASS_LDFLAGS=   linker flags
      LIBSASS_LIBRARY=   library to link
      
      Link libsass manually, by adding
      compiler and linker flags.
      
      For example this way libsass can
      be linked in statically (on Unix):
      
      LIBSASS_EXT=yes
      LIBSASS_CFLAGS=-I/usr/local/include
      LIBSASS_LIBRARY=/usr/local/lib/libsass.a
      
      When using LIBSASS_EXT there is no need
      to checkout the libsass source into src/libsass submodule
      and the library from the package management
      system can be used.
      
      PR: #139
      PR: #389
      PR: #744
      Marcin Cieslak authored
    • Code: Parses arguments manually. · a3b826d3
      Issue URL: #769.
      PR URL: #770.
      Adeel authored
  8. 16 Mar, 2015 1 commit
  9. 14 Mar, 2015 4 commits
  10. 13 Mar, 2015 1 commit
  11. 12 Mar, 2015 2 commits
  12. 11 Mar, 2015 8 commits
    • 3.0.0-pre · 6aeee058
      Adeel authored
    • Merge pull request #749 from am11/master · 997b0b69
      Install: Fixes download bug 🐛
      Adeel Mujahid authored
    • Install: Fixes download bug. · 7ceddc17
      Adeel authored
    • 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