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

replace sass.js implementation with support for node-sass #16

Open
airtonix opened this issue Mar 11, 2014 · 0 comments
Open

replace sass.js implementation with support for node-sass #16

airtonix opened this issue Mar 11, 2014 · 0 comments

Comments

@airtonix
Copy link

the support for sass.js doesn't seem to work anymore:

with the following server.coffee:

connect = require 'connect'
compiler = require 'connect-compiler'
# uncomment as required
# sass = require 'node-sass'
# sass = require 'sass.js'

server = connect.createServer(
    connect.logger 'dev'
    connect.favicon()
    compiler
        enabled: ['sass', 'coffee', 'jade']
        src: 'src'
        dest: 'tmp'
        resolve_index: true

    connect.static __dirname + '/src'
    connect.static __dirname + '/tmp'
)
server.listen 8000
  • with sass.js installed:
    • sass not found
  • with node-sass installed:
    • sass not found
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