-
Notifications
You must be signed in to change notification settings - Fork 8
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
Can't use :load-path option #6
Comments
Howdy, I just pushed a new version (0.1.2) that should fix this -- there was an argument missing to the args vector that tells Boot that the CLI option will have an argument. But that release has stopped compiling my example Sass project, so I'm not sure if it is my local setup that's broken, or the code doesn't work with sassc anymore. I'm going to keep working on getting this working again. |
🎉 The |
Hello, I'd like to put my I tried When I move the I use version Would it be the same issue ? Thanks |
The --load-path option is used to tell the sass compiler where the additional .scss can be found (@import). The main.scss must be in the boot source dirs. Try "boot -s src/scss sass" |
Thanks. Works perfectly. @mathias I feel confusing that the |
You're right, we probably don't want to put your |
I just went through this with the https://github.com/mathias/boot-sassc-example/ example project -- the sass source does not need to be in |
I'm trying to use the recently merged (b39d653)
load-path
option like this:It seems this change wasn't pushed to Clojars yet, so I cloned the repo and installed the jar with
boot build-jar
.After that, the new option is shown on
boot sass --help
, but I'm getting anIllegalArgumentException
sayingoption :load-path must be of type str
. The other arguments that accept strings (-o
,-f
,-t
) are working well.Is this really a bug? Any tips?
The text was updated successfully, but these errors were encountered: