I currently have the following skip_files
in my app.yaml:
skip_files:
- ^\..*
- ^.*\.(json|yaml)$
- ^Gruntfile\.js$
- ^bower_components
- ^node_modules
- ^src
- ^tests
- ^tmp
This is pretty bloated. Actually I just want to add everything to the skip_files
except for everything in the dist
folder.
Is this possible?
This is working for me :
skip_files:
- (?!^dist)
No. But for perspective, an 8 line skip_files is hardly bloated, at least from what I've seen people do.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With