-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-tasks.js
194 lines (168 loc) · 6.55 KB
/
run-tasks.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/**
* React Static Boilerplate
* https://github.com/kriasoft/react-static-boilerplate
*
* Copyright © 2015-present Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
/* eslint-disable no-console, global-require */
const fs = require('fs');
const del = require('del');
const ejs = require('ejs');
const webpack = require('webpack');
const https = require('https');
const carnival = process.env.CARNIVAL? process.env.CARNIVAL + '_' : 'example';
const config = require(`./${carnival}.config.json`);
const darkSky = config['dark-sky'];
let webpackConfig;
const tasks = new Map(); // The collection of automation tasks ('clean', 'build', 'publish', etc.)
function run(task) {
const start = new Date();
console.log(`Starting '${task}'...`);
return Promise.resolve().then(() => tasks.get(task)()).then(() => {
console.log(`Finished '${task}' after ${new Date().getTime() - start.getTime()}ms`);
}, err => console.error(err.stack));
}
//
// Clean up the output directory
// -----------------------------------------------------------------------------
tasks.set('clean', () => del(['public/dist/*', '!public/dist/.git'], { dot: true }));
//
// Copy ./index.html into the /public folder
// -----------------------------------------------------------------------------
tasks.set('html', () => {
const assets = JSON.parse(fs.readFileSync('./public/dist/assets.json', 'utf8'));
const template = fs.readFileSync('./public/index.ejs', 'utf8');
const render = ejs.compile(template, { filename: './public/index.ejs' });
const output = render({ debug: webpackConfig.debug, bundle: assets.main.js, config });
fs.writeFileSync('./public/index.html', output, 'utf8');
});
//
// Generate sitemap.xml
// -----------------------------------------------------------------------------
tasks.set('sitemap', () => {
const urls = require('./routes.json')
.filter(x => !x.path.includes(':'))
.map(x => ({ loc: x.path }));
const template = fs.readFileSync('./public/sitemap.ejs', 'utf8');
const render = ejs.compile(template, { filename: './public/sitemap.ejs' });
const output = render({ config, urls });
fs.writeFileSync('public/sitemap.xml', output, 'utf8');
});
//
// Bundle JavaScript, CSS and image files with Webpack
// -----------------------------------------------------------------------------
tasks.set('bundle', () => {
return new Promise((resolve, reject) => {
webpack(webpackConfig).run((err, stats) => {
if (err) {
reject(err);
} else {
console.log(stats.toString(webpackConfig.stats));
resolve();
}
});
});
});
//
// Build website into a distributable format
// -----------------------------------------------------------------------------
tasks.set('build', () => {
// global.DEBUG = process.argv.includes('--debug') || false;
return Promise.resolve()
.then(() => run('clean'))
.then(() => run('bundle'))
.then(() => run('html'))
.then(() => run('sitemap'));
});
//
// Build and publish the website
// -----------------------------------------------------------------------------
tasks.set('publish', () => {
const firebase = require('firebase-tools');
return run('build')
.then(() => firebase.login({ nonInteractive: false }))
.then(() => firebase.deploy({
project: config.project,
cwd: __dirname,
}))
.then(() => { setTimeout(() => process.exit()); });
});
tasks.set('publish-post-tag', () => {
const firebase = require('firebase-tools');
return firebase.login({ nonInteractive: false })
.then(() => firebase.deploy({
project: config.project,
cwd: __dirname,
}))
.then(() => { setTimeout(() => process.exit()); });
});
//
// Build website and launch it in a browser for testing (default)
// -----------------------------------------------------------------------------
tasks.set('start', () => {
let count = 0;
// global.HMR = !process.argv.includes('--no-hmr'); // Hot Module Replacement (HMR)
return run('clean').then(() => new Promise(resolve => {
const bs = require('browser-sync').create();
const compiler = webpack(webpackConfig);
// Node.js middleware that compiles application in watch mode with HMR support
// http://webpack.github.io/docs/webpack-dev-middleware.html
const webpackDevMiddleware = require('webpack-dev-middleware')(compiler, {
publicPath: webpackConfig.output.publicPath,
stats: webpackConfig.stats,
});
compiler.plugin('done', stats => {
// Generate index.html page
const bundle = stats.compilation.chunks.find(x => x.name === 'main').files[0];
const template = fs.readFileSync('./public/index.ejs', 'utf8');
const render = ejs.compile(template, { filename: './public/index.ejs' });
const output = render({ debug: true, bundle: `/dist/${bundle}`, config });
fs.writeFileSync('./public/index.html', output, 'utf8');
// Launch Browsersync after the initial bundling is complete
// For more information visit https://browsersync.io/docs/options
if (++count === 1) {
bs.init({
port: process.env.PORT || 3000,
ui: { port: Number(process.env.PORT || 3000) + 1 },
server: {
baseDir: 'public',
middleware: [
webpackDevMiddleware,
require('http-proxy-middleware')('/api/weather', {
target: `https://api.darksky.net`,
logLevel: 'debug',
agent : https.globalAgent,
headers: {
host: 'api.darksky.net'
},
pathRewrite: {'^/api/weather' : `/forecast/${darkSky}`}
}),
require('webpack-hot-middleware')(compiler),
require('connect-history-api-fallback')(),
],
},
}, resolve);
}
});
}));
});
/**
* Execute the specified task or default one. E.g.: node run build
*
* @param {any} taskName Name of the task to run
* @param {any} options.NO_HMR Turn of Hot Module Replacement
* @param {any} options.DEBUG Development build
*/
function runScript(taskName, options = {}) {
let settings = {};
global.HMR = settings.HMR = !options.NO_HMR;
global.DEBUG = settings.DEBUG = !!options.DEBUG;
global.webpackVerbose = settings.webpackVerbose = !!options.webpackVerbose;
global.darkSky = settings.darkSky = darkSky;
webpackConfig = require('./webpack.config')(settings);
return run(/^\w/.test(taskName || '') ? taskName : 'start' /* default */);
}
module.exports = runScript;