[kbn-plugin-generator] gitignore app.css if scss used (#25609)

When generating a plugin with the plugin generator and scss is in use, we should add the generated `app.css` file to the .gitignore file.
This commit is contained in:
Spencer 2018-11-13 13:01:32 -08:00 committed by GitHub
parent cd5f31bfec
commit 583e5ae228
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,6 @@
npm-debug.log*
node_modules
/build/
<%_ if (generateScss) { -%>
/public/app.css
<%_ } -%>