and then installing with yarn, the build/main.css file is excluded from the install. (This isn't an issue when installing with npm, but technically yarn is behaving to the spec and not npm). The solution is to add a "files" attribute to the package.json of this package.
If you use yarn to install this package from github by adding like so:
and then installing with yarn, the
build/main.css
file is excluded from the install. (This isn't an issue when installing with npm, but technically yarn is behaving to the spec and not npm). The solution is to add a"files"
attribute to thepackage.json
of this package.