aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js185
1 files changed, 124 insertions, 61 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 28909e27..270e2a71 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -29,18 +29,12 @@ const sourcemaps = require('gulp-sourcemaps');
const uglify = require('gulp-uglify-es').default;
const commonjs = require('rollup-plugin-commonjs');
const resolve = require('rollup-plugin-node-resolve');
+const FastlyPurge = require('fastly-purge');
+const through = require('through2');
const bundles = require('./bundles.json');
const pkg = require('./package.json');
-// Get AWS config
-let aws = {};
-try {
- aws = require('./aws.json'); //eslint-disable-line
-} catch (e) {
- // Do nothing
-}
-
const minSuffix = '.min';
// Paths
@@ -95,16 +89,18 @@ const browsers = ['> 1%'];
// Babel config
const babelrc = {
- presets: [[
- 'env',
- {
- targets: {
- browsers,
+ presets: [
+ [
+ 'env',
+ {
+ targets: {
+ browsers,
+ },
+ useBuiltIns: true,
+ modules: false,
},
- useBuiltIns: true,
- modules: false,
- },
- ]],
+ ],
+ ],
plugins: ['external-helpers'],
babelrc: false,
exclude: 'node_modules/**',
@@ -112,10 +108,9 @@ const babelrc = {
// Clean out /dist
gulp.task('clean', () => {
- const dirs = [
- paths.plyr.output,
- paths.demo.output,
- ].map(dir => path.join(dir, '**/*'));
+ const dirs = [paths.plyr.output, paths.demo.output].map(dir =>
+ path.join(dir, '**/*'),
+ );
// Don't delete the mp4
dirs.push(`!${path.join(paths.plyr.output, '**/*.mp4')}`);
@@ -187,9 +182,11 @@ const build = {
.src(paths[bundle].src.sprite)
.pipe(
svgmin({
- plugins: [{
- removeDesc: true,
- }],
+ plugins: [
+ {
+ removeDesc: true,
+ },
+ ],
}),
)
.pipe(svgstore())
@@ -238,9 +235,21 @@ gulp.task('default', () => {
// Publish a version to CDN and demo
// --------------------------------------------
-// If aws is setup
-if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
+// Get deployment config
+let credentials = {};
+try {
+ credentials = require('./credentials.json'); //eslint-disable-line
+} catch (e) {
+ // Do nothing
+}
+
+// If deployment is setup
+if (
+ Object.keys(credentials).includes('aws') &&
+ Object.keys(credentials).includes('fastly')
+) {
const { version } = pkg;
+ const { aws, fastly } = credentials;
// Get branch info
const branch = {
@@ -248,10 +257,6 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
master: 'master',
develop: 'develop',
};
- const allowed = [
- branch.master,
- branch.develop,
- ];
const maxAge = 31536000; // 1 year
const options = {
@@ -264,7 +269,8 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
demo: {
uploadPath: branch.current === branch.develop ? 'beta/' : null,
headers: {
- 'Cache-Control': 'no-cache, no-store, must-revalidate, max-age=0',
+ 'Cache-Control':
+ 'no-cache, no-store, must-revalidate, max-age=0',
Vary: 'Accept-Encoding',
},
},
@@ -273,27 +279,51 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
headers: {
// http://stackoverflow.com/questions/2272835/amazon-s3-object-redirect
'x-amz-website-redirect-location': `/${ver}/${filename}`,
- 'Cache-Control': 'no-cache, no-store, must-revalidate, max-age=0',
+ 'Cache-Control':
+ 'no-cache, no-store, must-revalidate, max-age=0',
},
};
},
};
- const regex = '(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*).(?:0|[1-9][0-9]*)(?:-[\\da-z\\-]+(?:.[\\da-z\\-]+)*)?(?:\\+[\\da-z\\-]+(?:.[\\da-z\\-]+)*)?';
+ const regex =
+ '(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*).(?:0|[1-9][0-9]*)(?:-[\\da-z\\-]+(?:.[\\da-z\\-]+)*)?(?:\\+[\\da-z\\-]+(?:.[\\da-z\\-]+)*)?';
const semver = new RegExp(`v${regex}`, 'gi');
const localPath = new RegExp('(../)?dist', 'gi');
const versionPath = `https://${aws.cdn.domain}/${version}`;
const cdnpath = new RegExp(`${aws.cdn.domain}/${regex}/`, 'gi');
+ const renameFile = rename(p => {
+ p.basename = p.basename.replace(minSuffix, ''); // eslint-disable-line
+ p.dirname = p.dirname.replace('.', version); // eslint-disable-line
+ });
+
+ // Check we're on the correct branch to deploy
+ const canDeploy = () => {
+ const allowed = [branch.master, branch.develop];
+
+ if (!allowed.includes(branch.current)) {
+ console.error(
+ `Must be on ${allowed.join(', ')} to publish! (current: ${
+ branch.current
+ })`,
+ );
+
+ return false;
+ }
+
+ return true;
+ };
+
gulp.task('version', () => {
+ if (!canDeploy()) {
+ return null;
+ }
+
console.log(`Updating versions to '${version}'...`);
// Replace versioned URLs in source
- const files = [
- 'plyr.js',
- 'plyr.polyfilled.js',
- 'defaults.js',
- ];
+ const files = ['plyr.js', 'plyr.polyfilled.js', 'defaults.js'];
return gulp
.src(files.map(file => path.join(root, `src/js/${file}`)))
@@ -304,8 +334,7 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
// Publish version to CDN bucket
gulp.task('cdn', () => {
- if (!allowed.includes(branch.current)) {
- console.error(`Must be on ${allowed.join(', ')} to publish! (current: ${branch.current})`);
+ if (!canDeploy()) {
return null;
}
@@ -315,14 +344,15 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
return (
gulp
.src(paths.upload)
+ .pipe(renameFile)
+ // Remove min suffix from source map URL
.pipe(
- rename(p => {
- p.basename = p.basename.replace(minSuffix, ''); // eslint-disable-line
- p.dirname = p.dirname.replace('.', version); // eslint-disable-line
- }),
+ replace(
+ /sourceMappingURL=([\w-?.]+)/,
+ (match, p1) =>
+ `sourceMappingURL=${p1.replace(minSuffix, '')}`,
+ ),
)
- // Remove min suffix from source map URL
- .pipe(replace(/sourceMappingURL=([\w-?.]+)/, (match, p1) => `sourceMappingURL=${p1.replace(minSuffix, '')}`))
.pipe(
size({
showFiles: true,
@@ -334,10 +364,36 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
);
});
+ // Purge the fastly cache incase any 403/404 are cached
+ gulp.task('purge', () => {
+ const list = [];
+
+ return gulp.src(paths.upload).pipe(
+ through.obj((file, enc, cb) => {
+ const filename = file.path.split('/').pop();
+ list.push(`${versionPath}/${filename}`);
+ cb(null);
+ }),
+ ).on('end', () => {
+ const purge = new FastlyPurge(fastly.token);
+
+ list.forEach(url => {
+ console.log(`Purging ${url}...`);
+
+ purge.url(url, (error, result) => {
+ if (error) {
+ console.log(error);
+ } else if (result) {
+ console.log(result);
+ }
+ });
+ });
+ });
+ });
+
// Publish to demo bucket
gulp.task('demo', () => {
- if (!allowed.includes(branch.current)) {
- console.error(`Must be on ${allowed.join(', ')} to publish! (current: ${branch.current})`);
+ if (!canDeploy()) {
return null;
}
@@ -399,22 +455,29 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
}));
}); */
- // Open the demo site to check it's sweet
- gulp.task('open', () => {
- console.log(`Opening ${aws.demo.domain}...`);
-
- // A file must be specified or gulp will skip the task
- // Doesn't matter which file since we set the URL above
- // Weird, I know...
- return gulp.src([`${paths.demo.root}index.html`]).pipe(
- open('', {
- url: `http://${aws.demo.domain}`,
+ // Open the demo site to check it's ok
+ gulp.task('open', callback => {
+ gulp.src(__filename).pipe(
+ open({
+ uri: `https://${aws.demo.domain}`,
}),
);
+
+ callback();
});
// Do everything
- gulp.task('publish', callback => {
- run('version', tasks.clean, tasks.js, tasks.sass, tasks.sprite, 'cdn', 'demo', callback);
- });
+ gulp.task('deploy', () =>
+ run(
+ 'version',
+ tasks.clean,
+ tasks.js,
+ tasks.sass,
+ tasks.sprite,
+ 'cdn',
+ 'purge',
+ 'demo',
+ 'open',
+ ),
+ );
}