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 :
No. But for perspective, an 8 line skip_files is hardly bloated, at least from what I've seen people do.
Today I tried the solution given by @Alex Kubity and didn't work. I had the error
So I changed the regex to
To skip all files except
dist
folder andpackage*.json
.