Open
Description
The following works just fine:
node-sass scss/index.scss > static/css/index.css
node-sass scss/article.scss > static/css/article.css
node-sass scss/archive.scss > static/css/archive.css
node-sass scss/tags.scss > static/css/tags.css
Using wellington
wt watch -p scss -b static/css \
index.scss \
article.scss \
archive.scss \
tags.scss \
I get
invalid file found: tags.scss
invalid file found: index.scss
invalid file found: article.scss
invalid file found: archive.scss
File watcher started use `ctrl+d` to exit
2018-06-12 17:26 wt[82411] (FSEvents.framework) FSEventStreamCreate: _FSEventStreamCreate: ERROR: could not allocate 0 bytes for array of path strings
2018-06-12 17:26 wt[82411] (FSEvents.framework) FSEventStreamScheduleWithRunLoop(): failed assertion 'streamRef != NULL'
2018-06-12 17:26 wt[82411] (FSEvents.framework) FSEventStreamStart(): failed assertion 'streamRef != NULL'
Turns out it needs to be:
wt watch -p scss -b static/css \
scss/index.scss \
scss/article.scss \
scss/archive.scss \
scss/tags.scss \
which is not exactly clear from the docs.
And the error message is also misleading.
I am using
$ wt -v
libsass: 3.3.6
Wellington: 1.0.4
Metadata
Metadata
Assignees
Labels
No labels