I've got a file called "quasar.styl":
@import './quasar.variables'
@import '~quasar-styl'
When it gets processed by webpack, using styl-loader, I get this error:
failed to locate @import file ~quasar-styl.styl
I have this feeling there's something about stylus I don't understand. Where would it be looking for the file "~quasar-style"?
This file comes from a working boilerplate quasar app, and there isn't a file called quasar-style
anywhere in the app directories, especially not is node_modules, which is where I gather the tilde tells it to look.
Any ideas?
UPDATE: I uploaded the quasar boilerplate project here: https://repl.it/@jmbldwn/Quasar-Boilerplate-2
It's not runnable on repl.it because it needs the quasar-cli, but you can see all of the files generated by it there.
stylus-loader
. Can we have a look at that boilerplate? – Collotype