-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathbuild.js
38 lines (31 loc) · 1.06 KB
/
build.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
var path = require('path');
var fs = require('fs-extra');
var pug = require('pug');
var buildUtils = require('../examples/build-utils');
// generate the tutorials
fs.ensureDirSync('dist/tutorials');
var tutorials = buildUtils.getList('tutorials', 'tutorial', 'dist');
tutorials.forEach(function (json) {
var fn = pug.compileFile(path.relative('.', path.resolve(json.dir, 'index.pug')), {pretty: true});
fs.writeFileSync(path.resolve(json.output, 'index.html'), fn(json));
});
// copy common files
fs.copySync('tutorials/common', 'dist/tutorials/common');
// create the main tutorial page
var data = {
hideNavbar: false,
tutorialCss: ['main.css'],
tutorialJs: ['main.js'],
tutorials: tutorials,
bundle: './bundle.js',
about: {hidden: true},
title: 'GeoJS'
};
// copy assets for the main page
fs.copySync('tutorials/main.js', 'dist/tutorials/main.js');
fs.copySync('tutorials/main.css', 'dist/tutorials/main.css');
var fn = pug.compileFile('./tutorials/index.pug', {pretty: true});
fs.writeFileSync(
path.resolve('dist', 'tutorials', 'index.html'),
fn(data)
);