We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32385f6 commit c648528Copy full SHA for c648528
lambdas/static-asset-uploader/index.js
@@ -265,6 +265,8 @@ class State {
265
klaw('./build')
266
.on('data', (data) => {
267
if (data.stats.isDirectory()) return
268
+ // skip config - we generate that later
269
+ if (!/build\/config\.js$/.test(data.path)) return
270
if (this.event.RequestType === 'Create') {
271
// always write everything on Creates
272
console.log('pushing b/c Create', data.path)
0 commit comments