This repository was archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgulpfile.js
55 lines (50 loc) · 2.15 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const exec = require('child_process').exec;
const fs = require('fs');
const gulp = require('gulp');
const s3 = require('gulp-s3-upload')({ useIAM: false }, { maxRetries: 5 });
const cloudfront = require('gulp-cloudfront-invalidate');
const log = require('fancy-log');
if (process.env.DEPLOY_ENV && !process.env.AWS_ACCESS_KEY_ID) require('dotenv').config({ path: `.env.${process.env.DEPLOY_ENV}` });
else require('dotenv').config();
const s3FilesChanged = [];
gulp.task('aws-s3-upload', () => {
if (!process.env.DEPLOY_ENV) throw new Error('Missing DEPLOY_ENV in env variables');
if (!process.env.AWS_ACCESS_KEY_ID || !process.env.AWS_SECRET_ACCESS_KEY) throw new Error('Missing AWS auth credentials in env variables');
if (!process.env.AWS_DEPLOY_S3_BUCKET) throw new Error('No S3 bucket specified in env variable');
log(`Uploading to S3 bucket ${process.env.AWS_DEPLOY_S3_BUCKET}...`);
return gulp.src('./build-' + process.env.DEPLOY_ENV + '/**', '!**/.DS_Store').pipe(
s3(
{
Bucket: process.env.AWS_DEPLOY_S3_BUCKET,
ACL: 'public-read',
onChange: file => s3FilesChanged.push(`/${file}`)
},
{
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY
}
)
);
});
gulp.task('aws-cloudfront-invalidate', cb => {
if (!process.env.AWS_ACCESS_KEY_ID || !process.env.AWS_SECRET_ACCESS_KEY) throw new Error('Missing AWS auth credentials in env variables');
if (!process.env.AWS_DEPLOY_CLOUDFRONT_DISTRIBUTION_ID) throw new Error('No CloudFront distribution id specified in env variable');
if (s3FilesChanged.length === 0) {
log('Skipping CloudFront invalidation because no files have changed.');
return cb();
}
log('Invalidating CloudFront cache for: ' + s3FilesChanged.join(', '));
return gulp.src('*').pipe(
cloudfront({
distribution: process.env.AWS_DEPLOY_CLOUDFRONT_DISTRIBUTION_ID,
paths: s3FilesChanged,
wait: false,
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY
})
);
});
gulp.task(
'deploy-aws',
gulp.series('aws-s3-upload', 'aws-cloudfront-invalidate')
);