2021-01-04 17:58:58 +00:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
2020-09-04 18:02:20 +00:00
|
|
|
const gulp = require('gulp');
|
|
|
|
const concat = require('gulp-concat');
|
|
|
|
const terser = require('gulp-terser');
|
|
|
|
const ejs = require('gulp-ejs');
|
|
|
|
const rename = require('gulp-rename');
|
|
|
|
const htmlmin = require('gulp-htmlmin');
|
|
|
|
const del = require('del');
|
|
|
|
const s3Upload = require('gulp-s3-upload');
|
2022-12-07 16:53:18 +00:00
|
|
|
const webpack = require('webpack-stream');
|
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
const path = require('path');
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
const clean = () => del(['./dist**']);
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
// get cloudfront
|
|
|
|
const AWS = require('aws-sdk');
|
|
|
|
|
|
|
|
AWS.config.update({ region: 'us-east-1' });
|
|
|
|
const cloudfront = new AWS.CloudFront({ apiVersion: '2020-01-01' });
|
|
|
|
|
|
|
|
const jsSourcesData = [
|
2020-09-08 15:05:46 +00:00
|
|
|
'server/scripts/data/travelcities.js',
|
|
|
|
'server/scripts/data/regionalcities.js',
|
|
|
|
'server/scripts/data/stations.js',
|
2020-09-17 19:37:54 +00:00
|
|
|
'server/scripts/data/states.js',
|
2020-09-08 15:05:46 +00:00
|
|
|
];
|
2022-12-07 16:53:18 +00:00
|
|
|
|
|
|
|
const webpackOptions = {
|
|
|
|
mode: 'production',
|
|
|
|
// mode: 'development',
|
|
|
|
// devtool: 'source-map',
|
|
|
|
output: {
|
|
|
|
filename: 'ws.min.js',
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
roots: [path.resolve(__dirname, './')],
|
|
|
|
},
|
|
|
|
optimization: {
|
|
|
|
minimize: true,
|
|
|
|
minimizer: [
|
|
|
|
new TerserPlugin({
|
|
|
|
extractComments: false,
|
|
|
|
terserOptions: {
|
|
|
|
// sourceMap: true,
|
|
|
|
format: {
|
|
|
|
comments: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
gulp.task('compress_js_data', () => gulp.src(jsSourcesData)
|
|
|
|
.pipe(concat('data.min.js'))
|
|
|
|
.pipe(terser())
|
|
|
|
.pipe(gulp.dest('./dist/resources')));
|
2020-09-08 15:05:46 +00:00
|
|
|
|
2022-12-07 16:53:18 +00:00
|
|
|
const jsVendorSources = [
|
2020-09-25 02:29:03 +00:00
|
|
|
'server/scripts/vendor/auto/jquery.js',
|
2020-09-17 19:37:54 +00:00
|
|
|
'server/scripts/vendor/jquery.autocomplete.min.js',
|
2020-09-25 02:29:03 +00:00
|
|
|
'server/scripts/vendor/auto/nosleep.js',
|
2020-10-16 20:52:56 +00:00
|
|
|
'server/scripts/vendor/auto/swiped-events.js',
|
2020-09-25 02:29:03 +00:00
|
|
|
'server/scripts/vendor/auto/suncalc.js',
|
2020-09-04 18:02:20 +00:00
|
|
|
];
|
2022-12-07 16:53:18 +00:00
|
|
|
|
|
|
|
gulp.task('compress_js_vendor', () => gulp.src(jsVendorSources)
|
|
|
|
.pipe(concat('vendor.min.js'))
|
2021-01-04 17:58:58 +00:00
|
|
|
.pipe(terser())
|
|
|
|
.pipe(gulp.dest('./dist/resources')));
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2022-12-07 16:53:18 +00:00
|
|
|
const mjsSources = [
|
|
|
|
'server/scripts/modules/currentweatherscroll.mjs',
|
|
|
|
'server/scripts/modules/currentweather.mjs',
|
|
|
|
'server/scripts/modules/almanac.mjs',
|
|
|
|
'server/scripts/modules/icons.mjs',
|
|
|
|
'server/scripts/modules/extendedforecast.mjs',
|
|
|
|
'server/scripts/modules/hourly.mjs',
|
|
|
|
'server/scripts/modules/latestobservations.mjs',
|
|
|
|
'server/scripts/modules/localforecast.mjs',
|
|
|
|
'server/scripts/modules/radar.mjs',
|
|
|
|
'server/scripts/modules/regionalforecast.mjs',
|
|
|
|
'server/scripts/modules/travelforecast.mjs',
|
|
|
|
'server/scripts/modules/progress.mjs',
|
|
|
|
'server/scripts/index.mjs',
|
|
|
|
];
|
|
|
|
|
|
|
|
gulp.task('build_js', () => gulp.src(mjsSources)
|
|
|
|
.pipe(webpack(webpackOptions))
|
|
|
|
.pipe(gulp.dest('dist/resources')));
|
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
const cssSources = [
|
2022-11-22 03:54:42 +00:00
|
|
|
'server/styles/main.css',
|
2020-09-08 15:05:46 +00:00
|
|
|
];
|
2022-11-22 03:54:42 +00:00
|
|
|
gulp.task('copy_css', () => gulp.src(cssSources)
|
2021-01-04 17:58:58 +00:00
|
|
|
.pipe(concat('ws.min.css'))
|
|
|
|
.pipe(gulp.dest('./dist/resources')));
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
const htmlSources = [
|
2020-09-04 18:02:20 +00:00
|
|
|
'views/*.ejs',
|
|
|
|
];
|
2021-01-04 17:58:58 +00:00
|
|
|
gulp.task('compress_html', () => {
|
2021-09-29 20:34:24 +00:00
|
|
|
// eslint-disable-next-line global-require
|
|
|
|
const { version } = require('../package.json');
|
2021-01-04 17:58:58 +00:00
|
|
|
return gulp.src(htmlSources)
|
2020-09-04 18:02:20 +00:00
|
|
|
.pipe(ejs({
|
|
|
|
production: version,
|
2020-09-08 19:39:17 +00:00
|
|
|
version,
|
2020-09-04 18:02:20 +00:00
|
|
|
}))
|
2021-01-04 17:58:58 +00:00
|
|
|
.pipe(rename({ extname: '.html' }))
|
|
|
|
.pipe(htmlmin({ collapseWhitespace: true }))
|
|
|
|
.pipe(gulp.dest('./dist'));
|
|
|
|
});
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
const otherFiles = [
|
2020-09-04 18:02:20 +00:00
|
|
|
'server/robots.txt',
|
|
|
|
'server/manifest.json',
|
|
|
|
];
|
2021-01-04 17:58:58 +00:00
|
|
|
gulp.task('copy_other_files', () => gulp.src(otherFiles, { base: 'server/' })
|
|
|
|
.pipe(gulp.dest('./dist')));
|
2020-09-04 18:02:20 +00:00
|
|
|
|
|
|
|
const s3 = s3Upload({
|
|
|
|
useIAM: true,
|
2021-01-04 17:58:58 +00:00
|
|
|
}, {
|
2020-09-04 18:02:20 +00:00
|
|
|
region: 'us-east-1',
|
|
|
|
});
|
2021-01-04 17:58:58 +00:00
|
|
|
const uploadSources = [
|
2020-09-04 18:02:20 +00:00
|
|
|
'dist/**',
|
2022-12-07 16:53:18 +00:00
|
|
|
'!dist/**/*.map',
|
2020-09-04 18:02:20 +00:00
|
|
|
];
|
2021-01-04 17:58:58 +00:00
|
|
|
gulp.task('upload', () => gulp.src(uploadSources, { base: './dist' })
|
|
|
|
.pipe(s3({
|
|
|
|
Bucket: 'weatherstar',
|
|
|
|
StorageClass: 'STANDARD',
|
|
|
|
maps: {
|
|
|
|
CacheControl: (keyname) => {
|
|
|
|
if (keyname.indexOf('index.html') > -1) return 'max-age=300'; // 10 minutes
|
|
|
|
return 'max-age=2592000'; // 1 month
|
2020-09-04 18:02:20 +00:00
|
|
|
},
|
2021-01-04 17:58:58 +00:00
|
|
|
},
|
|
|
|
})));
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2021-01-04 17:58:58 +00:00
|
|
|
gulp.task('invalidate', async () => cloudfront.createInvalidation({
|
|
|
|
DistributionId: 'E9171A4KV8KCW',
|
|
|
|
InvalidationBatch: {
|
|
|
|
CallerReference: (new Date()).toLocaleString(),
|
|
|
|
Paths: {
|
|
|
|
Quantity: 1,
|
|
|
|
Items: ['/*'],
|
2020-09-04 18:02:20 +00:00
|
|
|
},
|
2021-01-04 17:58:58 +00:00
|
|
|
},
|
|
|
|
}).promise());
|
2020-09-04 18:02:20 +00:00
|
|
|
|
2022-12-07 17:04:29 +00:00
|
|
|
module.exports = gulp.series(clean, gulp.parallel('build_js', 'compress_js_data', 'compress_js_vendor', 'copy_css', 'compress_html', 'copy_other_files'), 'upload', 'invalidate');
|