We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I understand the docs correctly, CSS preprocessors are optional and should be false by default1.
$ preact create --less Pre-install LESS support [boolean] [default: false] --sass Pre-install SASS/SCSS support [boolean] [default: false]
But a clean install adds bunch of LESS files.
~/dev » preact --version preact-cli 1.1.0 ~/dev » preact create test-pwa && cd test-pwa ✔ Done! dev/test-pwa » tree ./src |____src | |____routes | | |____home | | | |____index.js | | | |____style.less | | |____profile | | | |____index.js | | | |____style.less | |____style | | |____helpers.less | | |____index.less
Are the docs incorrect, or am I mistaken?
The text was updated successfully, but these errors were encountered:
Found that #3 also notes that LESS shouldn't be default.
Sorry, something went wrong.
Ah, and #32 (comment) notes that
the --less / --sass flags actually don't affect the app generated by create at all right now
--less
--sass
create
as of 2 weeks ago. That answers my question for the time being. Closing.
No branches or pull requests
If I understand the docs correctly, CSS preprocessors are optional and should be false by default1.
But a clean install adds bunch of LESS files.
Are the docs incorrect, or am I mistaken?
The text was updated successfully, but these errors were encountered: